diff --git a/.github/workflows/mrc-usage-report-scheduler.yml b/.github/workflows/mrc-usage-report-scheduler.yml new file mode 100644 index 000000000..684c761e1 --- /dev/null +++ b/.github/workflows/mrc-usage-report-scheduler.yml @@ -0,0 +1,44 @@ +# .github/workflows/mrc-usage-report-scheduler.yml +# +# Architectural Decision: Why Two Workflows? +# +# This setup uses two separate GitHub Actions workflows: +# 1. Scheduler Workflow (this file): +# - Runs on a schedule (`cron`) from the default branch (e.g., `main`). +# - GitHub requires scheduled workflows to be on the default branch to run reliably. +# - Its only job is to trigger the worker workflow. +# +# 2. Worker Workflow (`mrc-usage-report-worker.yml`): +# - Contains the actual logic for generating the MRC usage report. +# - It is triggered by this scheduler to run on a specific feature branch (`feature/mrc-usage-report-data`). +# - This allows development and testing of the reporting logic on a feature branch +# without merging it into the default branch, ensuring the production code remains stable. +# +# This separation ensures that we can have a reliable, scheduled trigger while still +# having the flexibility to develop the report generation logic in an isolated branch. + +name: MRC Usage Report - Scheduler + +on: + schedule: + # Runs daily at 8 AM EST (12 PM UTC) + - cron: "0 12 * * *" + workflow_dispatch: # Allows manual triggering from the Actions tab + +jobs: + trigger_worker_workflow: + runs-on: ubuntu-latest + steps: + - name: Checkout feature branch to ensure we have the latest code + uses: actions/checkout@v4 + with: + ref: "feature/mrc-usage-report-data" + + - name: Trigger the worker workflow + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WORKER_WORKFLOW: "mrc-usage-report-worker.yml" + FEATURE_BRANCH: "feature/mrc-usage-report-data" + run: | + echo "Triggering workflow ${{ env.WORKER_WORKFLOW }} on branch ${{ env.FEATURE_BRANCH }}" + gh workflow run ${{ env.WORKER_WORKFLOW }} --ref ${{ env.FEATURE_BRANCH }} diff --git a/.github/workflows/mrc-usage-report-worker.yml b/.github/workflows/mrc-usage-report-worker.yml new file mode 100644 index 000000000..2cfff359d --- /dev/null +++ b/.github/workflows/mrc-usage-report-worker.yml @@ -0,0 +1,162 @@ +name: MRC Usage Report Generation + +on: + workflow_dispatch: + +jobs: + generate-and-publish-report: + runs-on: ubuntu-latest + permissions: + contents: write # For checking out repositories + pages: write # For publishing to GitHub Pages + id-token: write # For OIDC authentication with GitHub Pages + + steps: + - name: Checkout maas-react-components (current repo) + uses: actions/checkout@v4 + with: + ref: feature/mrc-usage-report-data + path: maas-react-components-repo + + - name: Clean up old report data and files + run: | + rm -rf maas-react-components-repo/mrc-usage-report-data + rm -f maas-react-components-repo/tools/mrc-usage-report/reports/mrc-usage-report-all.json + rm -f maas-react-components-repo/tools/mrc-usage-report/reports/mrc-usage-report-all.html + + - name: Print directory structure (maas-react-components) + run: | + echo "==== DIRECTORY STRUCTURE INFORMATION ====" + echo "Current working directory: $(pwd)" + echo "maas-react-components-repo location: $(pwd)/maas-react-components-repo" + ls -la maas-react-components-repo + + - name: Checkout maas-ui + uses: actions/checkout@v4 + with: + repository: SolaceDev/maas-ui + ref: sthomas/mrc-usage-report + path: maas-ui + token: ${{ secrets.PACKAGES_ADMIN_TOKEN }} + + - name: Print directory structure (maas-ui) + run: | + echo "==== MAAS-UI DIRECTORY STRUCTURE ====" + echo "maas-ui-repo location: $(pwd)/maas-ui" + ls -la maas-ui + echo "maas-ui-repo/tools location: $(pwd)/maas-ui/tools" + ls -la maas-ui/tools || echo "tools directory not found" + echo "maas-ui-repo/tools/mrc-usage-report location: $(pwd)/maas-ui/tools/mrc-usage-report" + ls -la maas-ui/tools/mrc-usage-report || echo "mrc-usage-report directory not found" + + - name: Checkout maas-ops-ui + uses: actions/checkout@v4 + with: + repository: SolaceDev/maas-ops-ui + ref: iphadte/DATAGO-103044 + path: maas-ops-ui + token: ${{ secrets.PACKAGES_ADMIN_TOKEN }} + + - name: Print directory structure (maas-ops-ui) + run: | + echo "==== MAAS-OPS-UI DIRECTORY STRUCTURE ====" + echo "maas-ops-ui-repo location: $(pwd)/maas-ops-ui" + ls -la maas-ops-ui + echo "maas-ops-ui-repo/tools location: $(pwd)/maas-ops-ui/tools" + ls -la maas-ops-ui/tools || echo "tools directory not found" + echo "maas-ops-ui-repo/tools/mrc-usage-report location: $(pwd)/maas-ops-ui/tools/mrc-usage-report" + ls -la maas-ops-ui/tools/mrc-usage-report || echo "mrc-usage-report directory not found" + echo "maas-ops-ui-repo/tools/mrc-report-merger location: $(pwd)/maas-ops-ui/tools/mrc-report-merger" + ls -la maas-ops-ui/tools/mrc-report-merger || echo "mrc-report-merger directory not found" + echo "maas-ops-ui-repo/tools/json-splitter location: $(pwd)/maas-ops-ui/tools/json-splitter" + ls -la maas-ops-ui/tools/json-splitter || echo "json-splitter directory not found" + + - name: Checkout broker manager + uses: actions/checkout@v4 + with: + repository: SolaceDev/broker-manager + ref: mrc-usage-report + path: broker-manager + token: ${{ secrets.PACKAGES_ADMIN_TOKEN }} + + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + node-version: "22" + + - name: Generate all usage reports + run: | + npm i + npm run build + npm start -- --all --maas-ui-path ../../../maas-ui --maas-ops-ui-path ../../../maas-ops-ui --broker-manager-path ../../../broker-manager --format html + npm start -- --all --maas-ui-path ../../../maas-ui --maas-ops-ui-path ../../../maas-ops-ui --broker-manager-path ../../../broker-manager --format json + + working-directory: maas-react-components-repo/tools/mrc-usage-report + + - name: Split merged JSON + run: | + echo "==== SPLIT MERGED JSON ====" + echo "Current working directory: $(pwd)" + ls -la + echo "Checking for input file:" + ls -la ../mrc-usage-report/reports/mrc-usage-report-all.json || echo "merged-report.json not found" + echo "Creating reports directory if it doesn't exist..." + echo "Installing dependencies..." + npm install + + npm install + npm run build + + echo "Running npm start with parameters..." + npm start -- -i ../mrc-usage-report/reports/mrc-usage-report-all.json -o ../../../maas-react-components-repo/mrc-usage-report-data + echo "--- Verifying contents of output directory ---" + pwd + ls -lR ../../../maas-react-components-repo/mrc-usage-report-data + + echo "Listing generated files:" + find . -type f -name "*.json" | sort + + echo "Contents of first split file (if any):" + find . -type f -name "*.json" | sort | head -n 1 | xargs cat || echo "No split files found" + + working-directory: maas-react-components-repo/tools/mrc-usage-report-json-splitter + + - name: Upload merged reports + uses: actions/upload-artifact@v4 + with: + name: merged-reports + path: | + maas-react-components-repo/tools/mrc-usage-report/reports/ + maas-react-components-repo/mrc-usage-report-data + + - name: Commit and push report data + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + + cd maas-react-components-repo + echo "--- Verifying directory before git add ---" + echo "Current working directory: $(pwd)" + echo "Listing contents of current directory:" + ls -la + echo "Checking mrc-usage-report-data directory:" + ls -lR mrc-usage-report-data + pwd + + git config --global user.name "github-actions[bot]" + git config --global user.email "github-actions[bot]@users.noreply.github.com" + + echo "--- Git status before add ---" + git status + git add . + echo "--- Git status after add ---" + git status + + if git diff --staged --quiet; then + echo "No changes to commit." + else + set -e + COMMIT_MESSAGE="feat: add mrc usage report data for $(date +'%Y-%m-%d %H:%M')" + git commit --no-verify -m "$COMMIT_MESSAGE" + git push + fi diff --git a/.github/workflows/new-components-report.yml b/.github/workflows/new-components-report.yml new file mode 100644 index 000000000..b1b2e8c92 --- /dev/null +++ b/.github/workflows/new-components-report.yml @@ -0,0 +1,79 @@ +name: New Components Report + +on: + workflow_dispatch: + +permissions: + contents: write + pull-requests: read + +jobs: + build-report: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + ref: feature/mrc-usage-report-data + + - name: Generate new components report + env: + LITELLM_API_KEY: ${{ secrets.LITELLM_API_KEY }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + set -e + + PROMPT_FILE="prompts/new-components-report/new-components-report-prompt.md" + PROMPT_CONTENT=$(cat "$PROMPT_FILE") + + JSON_PAYLOAD=$(jq -n \ + --arg prompt "$PROMPT_CONTENT" \ + --arg github_token "$GITHUB_TOKEN" \ + '{ + "model": "claude-3-5-sonnet", + "messages": [ + { + "role": "user", + "content": $prompt + } + ], + "metadata": { + "github_token": $github_token + } + }') + + API_RESPONSE=$(curl -s -X POST "https://lite-llm.mymaas.net/chat/completions" \ + -H "Content-Type: application/json" \ + -H "Authorization: Bearer $LITELLM_API_KEY" \ + -d "$JSON_PAYLOAD") + + REPORT_CONTENT=$(echo "$API_RESPONSE" | jq -r '.choices[0].message.content') + + MARKDOWN_REPORT=$(echo "$REPORT_CONTENT" | awk '/```markdown/{flag=1; next} /```/{flag=0} flag') + HTML_REPORT=$(echo "$REPORT_CONTENT" | awk '/```html/{flag=1; next} /```/{flag=0} flag') + + echo "$MARKDOWN_REPORT" > prompts/new-components-report/new-components-report.md + echo "$HTML_REPORT" > prompts/new-components-report/new-components-report.html + + echo "Reports generated:" + echo "Markdown: prompts/new-components-report/new-components-report.md" + echo "HTML: prompts/new-components-report/new-components-report.html" + + - name: Upload artifact + uses: actions/upload-artifact@v4 + with: + name: new-components-report + path: | + prompts/new-components-report/new-components-report.md + prompts/new-components-report/new-components-report.html + + - name: Set current date + run: echo "CURRENT_DATE=$(date +'%Y-%m-%d %H:%M')" >> $GITHUB_ENV + + - name: Commit report files + uses: stefanzweifel/git-auto-commit-action@v5 + with: + commit_message: "docs: update new components report (${{ env.CURRENT_DATE }})" + branch: feature/new-component-data + file_pattern: prompts/new-components-report/new-components-report.md prompts/new-components-report/new-components-report.html diff --git a/.gitignore b/.gitignore index 84eac835e..f0171e75f 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,9 @@ storybook/coverage storybook/.nyc_output *.iml .DS_Store + +tools/mrc-usage-report-json-splitter/output +tools/mrc-usage-report-broker-manager/reports +tools/mrc-usage-report-maas-ops-ui/reports +tools/mrc-usage-report-maas-ui/reports +tools/mrc-usage-report-merger/merged-reports \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 570b62fc0..000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "[javascript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[json]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[jsonc]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[css]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[scss]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[typescript]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "[typescriptreact]": { - "editor.defaultFormatter": "esbenp.prettier-vscode" - }, - "editor.formatOnSave": true, - "editor.codeActionsOnSave": { - "source.fixAll.eslint": "explicit" - } -} diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/commonProps.json new file mode 100644 index 000000000..66e77b0eb --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":3},{"name":"href","count":2},{"name":"target","count":1},{"name":"onClick","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/customization.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/files.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/files.json new file mode 100644 index 000000000..5360c9aa8 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","../../../broker-manager/src/pages/help/learning-centre/react-components/section.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/instances.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/instances.json new file mode 100644 index 000000000..b5f509659 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"href","d":"expression","e":"sublink.url"},{"b":"variant","d":"string","e":"link"},{"b":"target","d":"string","e":"_blank"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"onClick","d":"variable","e":"handleTutorialClick"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/section.js","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"footer.url"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..55976415b --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"broker-manager":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/commonProps.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/commonProps.json new file mode 100644 index 000000000..86c90627b --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":2},{"name":"width","count":2},{"name":"minWidth","count":1},{"name":"readOnly","count":1},{"name":"cardHeaderProps","count":1},{"name":"height","count":1},{"name":"padding","count":1},{"name":"onClick","count":1},{"name":"cardContent","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/customization.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/files.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/files.json new file mode 100644 index 000000000..ddc01034d --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/files.json @@ -0,0 +1 @@ +["../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","../../../broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/instances.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/instances.json new file mode 100644 index 000000000..693117666 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"dataQa","d":"string","e":"standard-card"},{"b":"minWidth","d":"string","e":"371px"},{"b":"width","d":"string","e":"475px"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"cardHeaderProps","d":"object","e":"{\n title: title,\n subTitle: description,\n icon: (\n \n ),\n actionElements: (\n
\n \n Tutorials\n \n ,\n title: 'Actions',\n variant: 'icon',\n }}\n items={generateMenuItems()}\n numOfMenuItemDisplayed={3}\n />\n
\n ),\n }"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js","c":[{"b":"dataQa","d":"string","e":"top-level-card"},{"b":"height","d":"string","e":"300px"},{"b":"width","d":"string","e":"300px"},{"b":"padding","d":"string","e":"0px"},{"b":"onClick","d":"function","e":"() => window.open(url, \"_blank\")"},{"b":"cardContent","d":"jsx","e":"
\n {image && }\n
\n
{title}
\n

{description}

\n
\n
"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/totalUsages.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/usagesByMfe.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/usagesByMfe.json new file mode 100644 index 000000000..f4a69517c --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceCard/usagesByMfe.json @@ -0,0 +1 @@ +{"broker-manager":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/commonProps.json new file mode 100644 index 000000000..c6fa06c29 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":1},{"name":"items","count":1},{"name":"numOfMenuItemDisplayed","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/files.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/files.json new file mode 100644 index 000000000..b474ff4fa --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/instances.json new file mode 100644 index 000000000..0416dff7a --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"buttonProps","d":"object","e":"{\n 'aria-label': 'Actions menu',\n children: ,\n title: 'Actions',\n variant: 'icon',\n }"},{"b":"items","d":"expression","e":"generateMenuItems()"},{"b":"numOfMenuItemDisplayed","d":"number","e":"3"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..67068c3ab --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"broker-manager":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/commonProps.json new file mode 100644 index 000000000..d9d5b5f79 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/files.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/files.json new file mode 100644 index 000000000..493061396 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../broker-manager/src/pages/help/learning-centre/react-components/section.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/instances.json new file mode 100644 index 000000000..288b676b1 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/section.js","c":[{"b":"variant","d":"string","e":"body1"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..67068c3ab --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"broker-manager":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/broker-manager/total_stats.json b/mrc-usage-report-data/per-application/broker-manager/broker-manager/total_stats.json new file mode 100644 index 000000000..6f9288f45 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/broker-manager/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":1,"SolaceButton":3,"SolaceMenu":1,"SolaceCard":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/broker-manager/total_stats.json b/mrc-usage-report-data/per-application/broker-manager/total_stats.json new file mode 100644 index 000000000..6f9288f45 --- /dev/null +++ b/mrc-usage-report-data/per-application/broker-manager/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":1,"SolaceButton":3,"SolaceMenu":1,"SolaceCard":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..4d4ac8d8c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":1},{"name":"label","count":1},{"name":"fillColor","count":1},{"name":"labelColor","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..7aee98c29 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..80c2eafc0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"dataQa","d":"string","e":"clustersListStatus"},{"b":"label","d":"variable","e":"state"},{"b":"fillColor","d":"variable","e":"fillColor"},{"b":"labelColor","d":"variable","e":"labelColor"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/commonProps.json new file mode 100644 index 000000000..e8f212170 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":8},{"name":"dataQa","count":7},{"name":"onClick","count":6},{"name":"isDisabled","count":3},{"name":"href","count":2},{"name":"openLinkInNewTab","count":1},{"name":"title","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/files.json new file mode 100644 index 000000000..935ac627e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/utils/helper.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/instances.json new file mode 100644 index 000000000..d7aae822f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/utils/helper.tsx","c":[{"b":"href","d":"variable","e":"link"},{"b":"isDisabled","d":"expression","e":"!link"},{"b":"variant","d":"string","e":"link"},{"b":"openLinkInNewTab","d":"boolean","e":"false"},{"b":"dataQa","d":"expression","e":"`link-${text}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"exportCloseButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"downloadCSV"},{"b":"isDisabled","d":"expression","e":"isFetching || !!error"},{"b":"dataQa","d":"string","e":"exportDownloadButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/datacenters/${item.name}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onRefresh"},{"b":"isDisabled","d":"expression","e":"!cluster?.id || isRefreshing"},{"b":"dataQa","d":"string","e":"refresh-cluster-button"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClearAllFilters"},{"b":"dataQa","d":"string","e":"clearAllButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"toggleShowExportDialog"},{"b":"dataQa","d":"string","e":"exportCSVButton"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..e9e09f603 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/commonProps.json new file mode 100644 index 000000000..a3407af7d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":2},{"name":"size","count":1},{"name":"fillColor","count":1},{"name":"clickable","count":1},{"name":"onDelete","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/files.json new file mode 100644 index 000000000..e43f6f234 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/common/components/CommonAppBar.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/instances.json new file mode 100644 index 000000000..b1b8ba11a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/common/components/CommonAppBar.tsx","c":[{"b":"label","d":"string","e":"BETA"},{"b":"size","d":"string","e":"xs"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"`${label}: ${value}`"},{"b":"onDelete","d":"variable","e":"onDeleteFunc"},{"b":"dataQa","d":"variable","e":"dataQaId"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceChip/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..d50f362ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"size","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/files.json new file mode 100644 index 000000000..c14fe5e49 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..0015934db --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"size","d":"string","e":"sm"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..9488b572d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":1},{"name":"isOpen","count":1},{"name":"maxWidth","count":1},{"name":"actions","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..d1e66fbde --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/common/components/ErrorDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..c1ad5ac24 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/common/components/ErrorDialog.tsx","c":[{"b":"title","d":"string","e":"An error occurred"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t}\n\t\t\t]"},{"b":"data-qa","d":"string","e":"error-dialog"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/commonProps.json new file mode 100644 index 000000000..050cba111 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/files.json new file mode 100644 index 000000000..e1956b6c8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/instances.json new file mode 100644 index 000000000..3e2fa6fe0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"message","d":"expression","e":"error.message"},{"b":"data-qa","d":"string","e":"exportErrorBox"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceErrorBox/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/commonProps.json new file mode 100644 index 000000000..5a73b8e4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"headers","count":2},{"name":"gridTemplate","count":2},{"name":"items","count":2},{"name":"rowMapping","count":2},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/files.json new file mode 100644 index 000000000..81fd87624 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/instances.json new file mode 100644 index 000000000..34b68b516 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","c":[{"b":"headers","d":"variable","e":"headers"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"expression","e":"datacenterQueries.data"},{"b":"rowMapping","d":"variable","e":"renderRow"},{"b":"dataQa","d":"string","e":"datacenter-list"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"headers","d":"variable","e":"subnetHeaders"},{"b":"gridTemplate","d":"variable","e":"subnetGridTemplate"},{"b":"items","d":"expression","e":"cluster.virtualNetwork.subnets"},{"b":"rowMapping","d":"variable","e":"renderRow"},{"b":"dataQa","d":"string","e":"subnet-list"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/commonProps.json new file mode 100644 index 000000000..4821ed9ae --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":1},{"name":"value","count":1},{"name":"height","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/files.json new file mode 100644 index 000000000..e1956b6c8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/instances.json new file mode 100644 index 000000000..9668bc2cc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"determinate"},{"b":"value","d":"variable","e":"loadingPercentage"},{"b":"height","d":"string","e":"lg"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceLinearProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/commonProps.json new file mode 100644 index 000000000..047d796e4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":1},{"name":"buttonProps","count":1},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/files.json new file mode 100644 index 000000000..daf77a793 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/instances.json new file mode 100644 index 000000000..61fc7acf1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"items","d":"expression","e":"actionMenuItems()"},{"b":"buttonProps","d":"object","e":"{\n variant: \"icon\",\n title: \"Actions\",\n dataQa: \"clusterDetailsActionMenuButton\",\n children: ,\n }"},{"b":"key","d":"string","e":"cloudProviderLink"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..e28562e94 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":1},{"name":"subTitle","count":1},{"name":"breadcrumbs","count":1},{"name":"actionMenu","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/files.json new file mode 100644 index 000000000..daf77a793 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/instances.json new file mode 100644 index 000000000..b5fe03fbd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"title","d":"expression","e":"\"Cluster\""},{"b":"subTitle","d":"expression","e":"isPending ? \"...\" : cluster?.name"},{"b":"breadcrumbs","d":"array","e":"[\n { title: \"Clusters\", link: \"/clusters\" },\n { title: \"Cluster Details\", link: `/clusters/${clusterId}/status`, current: true, progress: isPending },\n ]"},{"b":"actionMenu","d":"expression","e":"!!actionMenuItems && (\n ,\n }}\n key=\"cloudProviderLink\" >\n \n )"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/commonProps.json new file mode 100644 index 000000000..e4e5d44a3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"totalResults","count":2},{"name":"activePage","count":2},{"name":"pageSize","count":2},{"name":"loading","count":2},{"name":"onPageSelection","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/files.json new file mode 100644 index 000000000..452d0a251 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/instances.json new file mode 100644 index 000000000..e87da87e3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","c":[{"b":"totalResults","d":"variable","e":"totalCount"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"loading","d":"variable","e":"isPending"},{"b":"onPageSelection","d":"variable","e":"handlePageChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"totalResults","d":"variable","e":"totalClusterLength"},{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"onPageSelection","d":"variable","e":"handlePageChange"},{"b":"loading","d":"variable","e":"isLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/commonProps.json new file mode 100644 index 000000000..338ce0019 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":1},{"name":"name","count":1},{"name":"dataQa","count":1},{"name":"width","count":1},{"name":"value","count":1},{"name":"onChange","count":1},{"name":"type","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/files.json new file mode 100644 index 000000000..307732bd9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/instances.json new file mode 100644 index 000000000..5625c4607 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"id","d":"string","e":"searchBox"},{"b":"name","d":"string","e":"searchBox"},{"b":"dataQa","d":"string","e":"searchBox"},{"b":"width","d":"string","e":"400px"},{"b":"value","d":"variable","e":"searchTerm"},{"b":"onChange","d":"function","e":"(event) => handleSearchField(event.value)"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSearchAndFilter/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/commonProps.json new file mode 100644 index 000000000..72e1a1772 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"width","count":2},{"name":"name","count":2},{"name":"value","count":2},{"name":"onChange","count":2},{"name":"data-qa","count":1},{"name":"label","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/files.json new file mode 100644 index 000000000..307732bd9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/instances.json new file mode 100644 index 000000000..6271a8b6f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"width","d":"string","e":"270px"},{"b":"data-qa","d":"string","e":"searchBySelect"},{"b":"name","d":"string","e":"searchBySelect"},{"b":"value","d":"variable","e":"searchByOption"},{"b":"onChange","d":"variable","e":"handleSearchByOptions"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"width","d":"string","e":"250px"},{"b":"name","d":"string","e":"eolStatus"},{"b":"label","d":"string","e":"End of Life Status"},{"b":"dataQa","d":"string","e":"eolStatusSelect"},{"b":"value","d":"variable","e":"endOfLifeStatus"},{"b":"onChange","d":"function","e":"(event) => setEndOfLifeStatus(event.value)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..0691bf383 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"multiple","count":2},{"name":"name","count":2},{"name":"label","count":2},{"name":"dataQa","count":2},{"name":"width","count":2},{"name":"options","count":2},{"name":"optionsLabelCallback","count":2},{"name":"fetchOptionsCallback","count":2},{"name":"itemComponent","count":2},{"name":"itemMappingCallback","count":2},{"name":"value","count":2},{"name":"onChange","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..307732bd9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..8eec4a1b7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"multiple","d":"boolean","e":"true"},{"b":"name","d":"string","e":"cloudProvider"},{"b":"label","d":"string","e":"Cloud Provider"},{"b":"dataQa","d":"string","e":"cloudProviderSelect"},{"b":"width","d":"string","e":"300px"},{"b":"options","d":"variable","e":"filteredCloudProviderOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"filterCloudProviderOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(item: { value: string; name: string; }) => item"},{"b":"value","d":"variable","e":"filteredCloudProviders"},{"b":"onChange","d":"variable","e":"handleCloudProviderChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"multiple","d":"boolean","e":"true"},{"b":"name","d":"string","e":"k8sVersion"},{"b":"label","d":"string","e":"Kubernetes Version"},{"b":"dataQa","d":"string","e":"k8sVersionSelect"},{"b":"width","d":"string","e":"300px"},{"b":"options","d":"variable","e":"filteredK8sVersionOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"filterK8sVersionOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(item: { value: string; name: string; }) => item"},{"b":"value","d":"variable","e":"filteredK8sVersions"},{"b":"onChange","d":"variable","e":"handleK8sVersionChange"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..307732bd9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..78791dfe3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/commonProps.json new file mode 100644 index 000000000..e26ca09f1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"direction","count":12},{"name":"spacing","count":10},{"name":"padding","count":7},{"name":"alignItems","count":5},{"name":"data-qa","count":4},{"name":"justifyContent","count":3},{"name":"bgcolor","count":2},{"name":"border","count":2},{"name":"borderRadius","count":2},{"name":"borderColor","count":2},{"name":"marginTop","count":1},{"name":"style","count":1},{"name":"marginX","count":1},{"name":"sx","count":1},{"name":"paddingBottom","count":1},{"name":"maxWidth","count":1},{"name":"flex","count":1},{"name":"margin","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/files.json new file mode 100644 index 000000000..04ab06ee3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/instances.json new file mode 100644 index 000000000..4891b42b2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"1"},{"b":"justifyContent","d":"expression","e":"'flex-end'"},{"b":"marginTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"},{"b":"data-qa","d":"string","e":"cluster-status-tab"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"space-between"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"},{"b":"data-qa","d":"string","e":"cluster-status-tab"},{"b":"style","d":"object","e":"{ backgroundColor: theme.palette.ux.background.w10, border: `1px solid ${theme.palette.ux.secondary.w20}`, borderRadius: theme.shape.borderRadius }"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"},{"b":"data-qa","d":"string","e":"cluster-system-components-tab"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"direction","d":"expression","e":"\"row\""},{"b":"alignItems","d":"string","e":"center"},{"b":"padding","d":"expression","e":"theme.spacing(2, 2, 2, 2)"},{"b":"marginX","d":"expression","e":"theme.spacing(2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ paddingLeft: 1 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"paddingBottom","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"1"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"maxWidth","d":"expression","e":"\"25%\""},{"b":"padding","d":"expression","e":"theme.spacing(1)"},{"b":"alignItems","d":"string","e":""},{"b":"justifyContent","d":"string","e":"space-between"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.secondary.w10"},{"b":"flex","d":"expression","e":"'1 1 0px'"},{"b":"border","d":"number","e":"1"},{"b":"borderRadius","d":"number","e":"1"},{"b":"borderColor","d":"expression","e":"theme.palette.ux.secondary.w40"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"data-qa","d":"string","e":"clusters-summary"},{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"3"},{"b":"margin","d":"expression","e":"theme.spacing(3, 6)"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"},{"b":"border","d":"number","e":"1"},{"b":"borderRadius","d":"number","e":"1"},{"b":"borderColor","d":"expression","e":"theme.palette.ux.secondary.w70"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..b5a3b8736 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/commonProps.json new file mode 100644 index 000000000..56ffaba9a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/commonProps.json @@ -0,0 +1 @@ +[{"name":"columns","count":2},{"name":"rows","count":2},{"name":"selectionType","count":2},{"name":"sortCallback","count":2},{"name":"hasColumnHiding","count":2},{"name":"loading","count":2},{"name":"emptyStateMessage","count":2},{"name":"minHeight","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/files.json new file mode 100644 index 000000000..452d0a251 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/instances.json new file mode 100644 index 000000000..5b2924ee1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","c":[{"b":"columns","d":"variable","e":"ServiceListTableColumns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"loading","d":"variable","e":"isPending"},{"b":"emptyStateMessage","d":"string","e":"No services found"},{"b":"minHeight","d":"expression","e":"theme.spacing(72)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"columns","d":"variable","e":"ClusterListTableColumns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"loading","d":"variable","e":"isLoading"},{"b":"emptyStateMessage","d":"string","e":"No clusters found"},{"b":"minHeight","d":"expression","e":"theme.spacing(54)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTable/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/commonProps.json new file mode 100644 index 000000000..c464cdf48 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"activeTabValue","count":1},{"name":"tabs","count":1},{"name":"onTabClick","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/files.json new file mode 100644 index 000000000..daf77a793 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/instances.json new file mode 100644 index 000000000..c27bec1fa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"activeTabValue","d":"variable","e":"tab"},{"b":"tabs","d":"array","e":"[\n { label: \"Datacenters\", value: \"datacenters\" },\n { label: \"Preupgrade Validation\", value: \"preupgrade-validation\" },\n { label: \"System Components\", value: \"system-components\" },\n { label: \"Network\", value: \"network\" },\n { label: \"Services\", value: \"services\" },\n ]"},{"b":"onTabClick","d":"function","e":"(tab) => history.push(`/clusters/${clusterId}/${tab}`)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/commonProps.json new file mode 100644 index 000000000..134230911 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":1},{"name":"severity","count":1},{"name":"onClose","count":1},{"name":"open","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/files.json new file mode 100644 index 000000000..c14fe5e49 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/instances.json new file mode 100644 index 000000000..168a26fa2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"message","d":"expression","e":"showToast.message"},{"b":"severity","d":"expression","e":"showToast.severity"},{"b":"onClose","d":"function","e":"() => setShowToast(null)"},{"b":"open","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/usagesByMfe.json new file mode 100644 index 000000000..ec8ddadb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceToasts/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..d13f22881 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"key","count":1},{"name":"title","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/files.json new file mode 100644 index 000000000..c22783678 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/instances.json new file mode 100644 index 000000000..0f346204a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","c":[{"b":"key","d":"expression","e":"`${item.name}-key4`"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"title","d":"variable","e":"dateStr"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..7a40f6b9b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/commonProps.json new file mode 100644 index 000000000..8d9f5af44 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":15},{"name":"padding","count":5},{"name":"data-qa","count":4},{"name":"align","count":4},{"name":"noWrap","count":3},{"name":"sx","count":1},{"name":"minHeight","count":1},{"name":"alignItems","count":1},{"name":"paddingTop","count":1},{"name":"paddingBottom","count":1},{"name":"fontWeight","count":1},{"name":"marginTop","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/files.json new file mode 100644 index 000000000..4a996d9f9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/instances.json new file mode 100644 index 000000000..37542e37f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"data-qa","d":"string","e":"exportClustersTitle"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"exportClustersLoadingMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"exportClustersSuccessMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx","c":[{"b":"data-qa","d":"variable","e":"dataQa"},{"b":"variant","d":"string","e":"body1"},{"b":"minHeight","d":"expression","e":"theme.spacing(4)"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"paddingTop","d":"expression","e":"theme.spacing(1)"},{"b":"paddingBottom","d":"expression","e":"theme.spacing()"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"left"},{"b":"variant","d":"string","e":"h3"},{"b":"fontWeight","d":"string","e":"bold"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"right"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"marginTop","d":"string","e":"auto"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"right"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"right"},{"b":"noWrap","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..dec2bf5d6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +19 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..b9f8f36db --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"infra":19} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/infra/total_stats.json b/mrc-usage-report-data/per-application/maas-ops-ui/infra/total_stats.json new file mode 100644 index 000000000..d83bb4b17 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/infra/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":19,"SolaceButton":8,"SolaceTooltip":2,"SolaceConfirmationDialog":1,"SolaceStack":13,"SolaceSelect":2,"SolaceMenu":1,"SolaceTable":2,"SolaceAttributeBadge":1,"SolaceSelectAutocompleteItem":1,"SolaceSelectAutocomplete":2,"SolacePagination":2,"SolaceChip":2,"SolaceTabs":1,"SolaceCircularProgress":1,"SolaceGridList":2,"SolacePageHeader":1,"SolaceErrorBox":1,"SolaceSearchAndFilter":1,"SolaceToasts":1,"SolaceLinearProgress":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/commonProps.json new file mode 100644 index 000000000..652ec471e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/commonProps.json @@ -0,0 +1 @@ +[{"name":"expanded","count":11},{"name":"onChange","count":11},{"name":"details","count":11},{"name":"summary","count":11},{"name":"dataQa","count":4},{"name":"hover","count":1},{"name":"disabled","count":1},{"name":"key","count":1},{"name":"border","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/files.json new file mode 100644 index 000000000..8c315050a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/instances.json new file mode 100644 index 000000000..5074ed611 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"hover","d":"boolean","e":"true"},{"b":"disabled","d":"variable","e":"loading"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"handleAccordionChange"},{"b":"details","d":"jsx","e":""},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\tUpgrade Run Details\n\t\t\t\t\t"},{"b":"dataQa","d":"string","e":"upgrade-run-details"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"sidekickDeploymentInfoExpand"},{"b":"summary","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tConnector Deployment Info\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentDetailsRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshDetailsInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshDetailsInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setSidekickDeploymentInfoExpand(!sidekickDeploymentInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"sidekickDeploymentStatusExpand"},{"b":"summary","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tConnector Deployment Status\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentStatusRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshStatusInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshStatusInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setSidekickDeploymentStatusExpand(!sidekickDeploymentStatusExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"serviceInfoExpand"},{"b":"summary","d":"string","e":"Associated Service"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setServiceInfoExpand(!serviceInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"sidekickDeploymentDetailsExpand"},{"b":"summary","d":"string","e":"Connector Deployment Details"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setSidekickDeploymentDetailsExpand(!sidekickDeploymentDetailsExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"key","d":"expression","e":"result.role"},{"b":"dataQa","d":"string","e":"agentStatus"},{"b":"details","d":"jsx","e":""},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t{result.role}\n\t\t\t\t\t\t\t\t\t\t"},{"b":"onChange","d":"function","e":"() => handleExpandChange(result.role)"},{"b":"expanded","d":"expression","e":"expandStates[result.role]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"datadogIntegrationsAccordion"},{"b":"summary","d":"expression","e":"\"Datadog Integrations\""},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"datadogIntegrationsExpand"},{"b":"onChange","d":"function","e":"() => setDatadogIntegrationsExpand(!datadogIntegrationsExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dataQa","d":"string","e":"manuallyConfigureLogFacetsAccordion"},{"b":"expanded","d":"variable","e":"manuallyConfigureLogExpand"},{"b":"onChange","d":"function","e":"() => setManuallyConfigureLogExpand(!manuallyConfigureLogExpand)"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\tManually configure Log Facets in{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tDatadog\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tFacets List to create in Datadog:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"expanded","d":"variable","e":"collectorInfoExpand"},{"b":"summary","d":"jsx","e":"
\n\t\t\t\t\t\t\t\tCollector Info\n\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{refreshInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setCollectorInfoExpand(!collectorInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"expanded","d":"variable","e":"serviceInfoExpand"},{"b":"summary","d":"string","e":"Associated Service"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setServiceInfoExpand(!serviceInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"expanded","d":"variable","e":"collectorConfigExpand"},{"b":"summary","d":"string","e":"Collector Configuration"},{"b":"details","d":"jsx","e":" getCollectorConfig({ infrastructureId: service?.infrastructureId as string })}\n\t\t\t\t\t\t\t/>"},{"b":"onChange","d":"function","e":"() => setCollectorConfigExpand(!collectorConfigExpand)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/totalUsages.json new file mode 100644 index 000000000..9d607966b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/totalUsages.json @@ -0,0 +1 @@ +11 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/usagesByMfe.json new file mode 100644 index 000000000..3ebd882b6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAccordion/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":11} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..b11653c1d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":12},{"name":"...","count":7},{"name":"labelColor","count":4},{"name":"fillColor","count":4},{"name":"size","count":2},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..5a2ffb0ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..471731e20 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"label","d":"expression","e":"formatStatus(runState)"},{"b":"labelColor","d":"expression","e":"getLabelColor(runState)"},{"b":"fillColor","d":"expression","e":"getFillColor(runState)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"label","d":"expression","e":"formatStatus(row[key])"},{"b":"labelColor","d":"expression","e":"getLabelColor(row[key])"},{"b":"fillColor","d":"expression","e":"getFillColor(row[key])"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"props"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"generateStatusChipProps(\"default\")"},{"b":"size","d":"string","e":"xxs"},{"b":"label","d":"string","e":"TLS Disabled"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"generateStatusChipProps(\"warning\")"},{"b":"size","d":"string","e":"xxs"},{"b":"label","d":"string","e":"Not Latest"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"generateStatusChipProps(\"warning\")"},{"b":"label","d":"string","e":"Not Latest"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"label","d":"expression","e":"EMA_STATUS_LABELS.success"},{"b":"...","d":"spread","e":"generateStatusChipProps(POLLING_STATUS.success)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"label","d":"expression","e":"EMA_STATUS_LABELS.error"},{"b":"...","d":"spread","e":"generateStatusChipProps(POLLING_STATUS.error)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"label","d":"expression","e":"EMA_STATUS_LABELS.inProgress"},{"b":"...","d":"spread","e":"generateStatusChipProps(POLLING_STATUS.inProgress)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"label","d":"string","e":"Latest"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.infoBgBlue"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.infoBlue"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"string","e":"Default"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"dataQa","d":"string","e":"production-env"},{"b":"label","d":"string","e":"Production"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"label","d":"expression","e":"chipInfo.chipLabel"},{"b":"fillColor","d":"expression","e":"chipInfo.fillColor"},{"b":"labelColor","d":"expression","e":"chipInfo.labelColor"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..268620191 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/commonProps.json new file mode 100644 index 000000000..164145ec9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":1},{"name":"name","count":1},{"name":"avpList","count":1},{"name":"labelForKeys","count":1},{"name":"labelForValues","count":1},{"name":"keyRequired","count":1},{"name":"keyIsRequiredMessage","count":1},{"name":"onAVPListUpdate","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1},{"name":"disableReorder","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/files.json new file mode 100644 index 000000000..f8445f294 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/instances.json new file mode 100644 index 000000000..a3e18b3e0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"avpList","d":"expression","e":"value || []"},{"b":"labelForKeys","d":"string","e":"Key"},{"b":"labelForValues","d":"string","e":"Value"},{"b":"keyRequired","d":"boolean","e":"true"},{"b":"keyIsRequiredMessage","d":"string","e":"Key should exist with the value"},{"b":"onAVPListUpdate","d":"function","e":"(e) => onChange(e)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"disableReorder","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceAttributeValuePairForm/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/commonProps.json new file mode 100644 index 000000000..cead3cef7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":7},{"name":"data-qa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/files.json new file mode 100644 index 000000000..5846135e8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/instances.json new file mode 100644 index 000000000..a609c15ee --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"open","d":"expression","e":"isLoading && isLoadingMicroIntegrations && isLoadingAgents"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"open","d":"variable","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"open","d":"variable","e":"loadingOrgDetails"},{"b":"data-qa","d":"string","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"open","d":"variable","e":"loadingInfrastructures"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"open","d":"variable","e":"datacenterLoading"},{"b":"data-qa","d":"string","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"open","d":"variable","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"open","d":"variable","e":"loading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/usagesByMfe.json new file mode 100644 index 000000000..4f1ef0b19 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBackDrop/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/commonProps.json new file mode 100644 index 000000000..af42352ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/commonProps.json @@ -0,0 +1 @@ +[{"name":"paths","count":7},{"name":"maxItems","count":6},{"name":"onRouteClick","count":6},{"name":"id","count":4},{"name":"dataQa","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/files.json new file mode 100644 index 000000000..453a16826 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/instances.json new file mode 100644 index 000000000..6b71d9c74 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"id","d":"string","e":"connectorBreadcrumb"},{"b":"maxItems","d":"number","e":"3"},{"b":"dataQa","d":"string","e":"connectorBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Connector Deployments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"onRouteClick","d":"variable","e":"onBreadcumbClick"},{"b":"paths","d":"variable","e":"customerDetailsPath"},{"b":"maxItems","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"onRouteClick","d":"variable","e":"onBreadcumbClick"},{"b":"paths","d":"variable","e":"customerDetailsPath"},{"b":"maxItems","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","c":[{"b":"paths","d":"variable","e":"breadcrumbs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"id","d":"string","e":"environmentsBreadcrumb"},{"b":"maxItems","d":"number","e":"3"},{"b":"dataQa","d":"string","e":"environmentsBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Environments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"id","d":"string","e":"distributedTracingBreadcrumb"},{"b":"maxItems","d":"number","e":"3"},{"b":"dataQa","d":"string","e":"distributedTracingBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"id","d":"string","e":"distributedTracingBreadcrumb"},{"b":"maxItems","d":"number","e":"4"},{"b":"dataQa","d":"string","e":"distributedTracingBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + service?.orgId,\n\t\t\t\t\t\t\ttitle: service?.orgId as string\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: `/organizations/${service?.orgId}/distributed-tracing`,\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing Collector Details\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/usagesByMfe.json new file mode 100644 index 000000000..4f1ef0b19 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceBreadcrumb/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/commonProps.json new file mode 100644 index 000000000..52aa32dc0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":99},{"name":"onClick","count":72},{"name":"dataQa","count":50},{"name":"isDisabled","count":30},{"name":"href","count":18},{"name":"dense","count":17},{"name":"type","count":13},{"name":"title","count":9},{"name":"key","count":5},{"name":"data-qa","count":1},{"name":"startIcon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/files.json new file mode 100644 index 000000000..3f92b9972 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/instances.json new file mode 100644 index 000000000..b963d3632 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","c":[{"b":"href","d":"string","e":"https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"exitFormQa"},{"b":"onClick","d":"variable","e":"handleExitFormButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"reviewSaveFormQa"},{"b":"isDisabled","d":"variable","e":"isFieldReadOnly"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tif (!isEmailValid || inputError || error || validation || orgDetails.error || !readyToSave) {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(false);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(true);\n\t\t\t\t\t\t\t\thandleReviewSaveButton();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"href","d":"expression","e":"createBizOrganization.messages.runbookLink"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"isDisabled","d":"expression","e":"!isEmail(currentEmailEntry)"},{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => addEmail()"},{"b":"dataQa","d":"string","e":"addEmailButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"connectorDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/connector-deployments/${row?.deploymentId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"connectorDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/connector-deployments/${row?.deploymentId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`details-${request.deploymentId}`"},{"b":"onClick","d":"function","e":"() => setErrorDetails(`${request.deploymentId}-disable`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"href","d":"string","e":"insights-settings"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"title","d":"string","e":"Refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"href","d":"string","e":"https://app.datadoghq.com/logs?query=service%3Amaas-monitoring%20%40logger_name%3Acom.solace.maas.monitoring.%2A%20%28%40event%3AINSIGHTS_ONBOARDING%20OR%20%40event%3AINSIGHTS_OFFBOARDING%29%20&cols=host%2Cservice&index=%2A&messageDisplay=inline&refresh_mode=sliding&stream_sort=desc&viz=stream&live=true"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refreshSubOrgs"},{"b":"onClick","d":"function","e":"() => dispatch(fetchAllDatadogInfos())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refreshArtifactVersion"},{"b":"onClick","d":"function","e":"() => dispatch(fetchDatadogArtifactVersion())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refreshDT"},{"b":"onClick","d":"function","e":"() => dispatch(fetchDistributedTracingDetails())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"href","d":"string","e":"distributed-tracing"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"href","d":"string","e":"insights-settings"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"title","d":"string","e":"Refresh"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","c":[{"b":"key","d":"string","e":"create-plan"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleModal()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setQueryShow(true)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => add()"},{"b":"isDisabled","d":"expression","e":"!attribute || !operator || !value"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","c":[{"b":"key","d":"string","e":"manage-upgrade-button"},{"b":"onClick","d":"function","e":"() => handlePlanRoute()"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"create"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"isDisabled","d":"expression","e":"!autoUpgrades"},{"b":"onClick","d":"variable","e":"setCreateOpen"},{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"schedule-upgrade-run"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","c":[{"b":"variant","d":"variable","e":"variant"},{"b":"onClick","d":"variable","e":"onClick"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleManageContacts(item.type)"},{"b":"isDisabled","d":"variable","e":"readOnlyAccess"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleCopyEmails(item.emails, item.type)"},{"b":"isDisabled","d":"expression","e":"!item.emails"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => refetch()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/drawdown.htm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"dataQa","d":"string","e":"refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSidekickDeploymentDetailsRefresh()"},{"b":"isDisabled","d":"variable","e":"refreshDetailsInProgress"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"dataQa","d":"string","e":"refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSidekickDeploymentStatusRefresh()"},{"b":"isDisabled","d":"variable","e":"refreshStatusInProgress"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => window.open(link)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"refetch"},{"b":"dataQa","d":"string","e":"retrieve"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handelCopy"},{"b":"isDisabled","d":"expression","e":"!details"},{"b":"dataQa","d":"string","e":"copy"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dataQa","d":"string","e":"moreDetailsErrorButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleDetails(errorKey)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"pushLogPipelines"},{"b":"dataQa","d":"string","e":"createUpdateLogPipelineButton"},{"b":"isDisabled","d":"expression","e":"monitoringJobStatus === TaskStatus.QUEUED || monitoringJobStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"queryTestLog"},{"b":"dataQa","d":"string","e":"validateLogFacets"},{"b":"isDisabled","d":"expression","e":"queryTestLogStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"updateAllMonitorsButton"},{"b":"onClick","d":"function","e":"() => setOpenDialog(true)"},{"b":"isDisabled","d":"expression","e":"notificationUpdateStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"validateDatadogResources"},{"b":"dataQa","d":"string","e":"validateResources"},{"b":"isDisabled","d":"expression","e":"validateStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateServicesMonitoringConfigButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateOrgDefaultsButton"},{"b":"isDisabled","d":"expression","e":"_.isEmpty(dirtyFields) || errorFetchingOrgDetails"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetDatadogProxyDialogService(service);\n\t\t\t\t\t\tsetOpenDatadogProxyDialog(true);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetAgentStatusDialogService(service);\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(true);\n\t\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"!service.monitoringAgentEnabled"},{"b":"dataQa","d":"expression","e":"`agentVersionButton_${service.name}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"serviceDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/org-services/${row?.serviceId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateRMMSSettingsButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"configureNewDDSubOrgButton"},{"b":"onClick","d":"variable","e":"createNewDatadogSuborg"},{"b":"isDisabled","d":"variable","e":"createDatadogSuborgLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"validateAPIKeysButton"},{"b":"onClick","d":"variable","e":"validateKeys"},{"b":"isDisabled","d":"expression","e":"validateApiKeysStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"createInsightsRolesButton"},{"b":"onClick","d":"variable","e":"createInsightsRoles"},{"b":"isDisabled","d":"expression","e":"!ddOrgData?.apiKey || createInsightsRolesLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://app.datadoghq.com/"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/995065871/PE+Enable+PubSub+Insights#PE%3AEnablePubSub%2BInsights-SettinguptheDatadogSubOrgintegrations"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"createUpdateLogPipelineButton"},{"b":"onClick","d":"variable","e":"pushLogPipelines"},{"b":"isDisabled","d":"expression","e":"pushLogPipelinesStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"pushTestLogButton"},{"b":"onClick","d":"variable","e":"pushTestLog"},{"b":"isDisabled","d":"variable","e":"pushTestLogLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://app.datadoghq.com/"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.datadoghq.com/logs/explorer/facets/#create-facets"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"validateLogFacetsButton"},{"b":"onClick","d":"variable","e":"queryTestLog"},{"b":"isDisabled","d":"expression","e":"queryTestLogStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateDDHandlesAndResourcesButton"},{"b":"isDisabled","d":"expression","e":"notificationUpdateStatus == TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"validateMonitorsDashboardsButton"},{"b":"onClick","d":"variable","e":"validateDatadogResources"},{"b":"isDisabled","d":"expression","e":"validateDatadogResourcesStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"enableInsightsPolicyButton"},{"b":"onClick","d":"variable","e":"enableInsightsPolicy"},{"b":"isDisabled","d":"expression","e":"enableInsightsPolicyStatus == TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"inviteAdminUsersButton"},{"b":"onClick","d":"function","e":"() => inviteAdminUsers(adminUsersList)"},{"b":"isDisabled","d":"variable","e":"inviteAdminUsersLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/organizations/${secondary}`"},{"b":"title","d":"expression","e":"secondary.toString()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","c":[{"b":"variant","d":"expression","e":"props.isEnabled ? \"outline\" : \"call-to-action\""},{"b":"onClick","d":"variable","e":"handleToggleClick"},{"b":"data-qa","d":"expression","e":"props.isEnabled ? \"disable-button\" : \"enable-button\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/organizations/${row.orgId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/organizations/${row.orgId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/datacenters/${row.datacenterId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"onClick","d":"function","e":"() => setOpenUpdateDialog(true)"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"onClick","d":"function","e":"() => setOpenRollbackDialog(true)"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleEdit"},{"b":"dataQa","d":"string","e":"editMetadata"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"create"},{"b":"onClick","d":"function","e":"() => setCreateDialog(true)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setClearFiltersFlag(true)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSearchField(EMPTY_STRING)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearAllFilters()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => history.push(`/organizations/spool-configs`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"startIcon","d":"jsx","e":""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => history.push(`/organizations/create`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => history.push(`/organizations/createorganization`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"onClick","d":"function","e":"(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\twindow.open(`/datacenters/${row.id}`);\n\t\t\t\t\t\t\t\t}"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"collectorDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/distributed-tracing-collectors/${row?.serviceId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dataQa","d":"expression","e":"row?.id + \"_RefreshButton\""},{"b":"isDisabled","d":"expression","e":"row?.collectorLoadingStatus == CollectorLoadingStatus.IN_PROGRESS ||\n\t\t\t\t\t\t\t\t\trow?.collectorLoadingStatus == CollectorLoadingStatus.INITIAL"},{"b":"onClick","d":"function","e":"() => handleRefresh(row?.infrastructureId)"},{"b":"title","d":"string","e":"Refresh"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`details-${request.infrastructureId}`"},{"b":"onClick","d":"function","e":"() => setErrorDetails(request.infrastructureId)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"dataQa","d":"string","e":"refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCollectorInfoRefresh"},{"b":"isDisabled","d":"variable","e":"refreshInProgress"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => window.open(link)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"refetch"},{"b":"dataQa","d":"string","e":"retrieve"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handelCopy"},{"b":"isDisabled","d":"expression","e":"!configs?.data"},{"b":"dataQa","d":"string","e":"copy"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Broker, isOpen: true })"},{"b":"isDisabled","d":"variable","e":"readOnlyAccess"},{"b":"dataQa","d":"string","e":"addBrokerButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Collector, isOpen: true })"},{"b":"isDisabled","d":"variable","e":"readOnlyAccess"},{"b":"dataQa","d":"string","e":"addCollectorButton"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/totalUsages.json new file mode 100644 index 000000000..d97edbb29 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +99 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..c7b15f9ff --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":99} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/commonProps.json new file mode 100644 index 000000000..6913ab74a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":17},{"name":"checked","count":16},{"name":"label","count":14},{"name":"onChange","count":14},{"name":"dataQa","count":11},{"name":"title","count":7},{"name":"subTextProps","count":4},{"name":"boldLabel","count":3},{"name":"readOnly","count":2},{"name":"data-qa","count":2},{"name":"id","count":1},{"name":"disabled","count":1},{"name":"indeterminate","count":1},{"name":"largeLabel","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/files.json new file mode 100644 index 000000000..efe94f316 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/instances.json new file mode 100644 index 000000000..af1cb608e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"checked","d":"expression","e":"isAdvancedInsightSelected ? true : false"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"label","d":"jsx","e":"{createBizOrganization.requests.checkBoxLabel}"},{"b":"name","d":"string","e":"advInsights"},{"b":"title","d":"string","e":"Advanced Insights Checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","c":[{"b":"id","d":"string","e":"requestCheckbox"},{"b":"label","d":"expression","e":"createBizOrganization.requests.checkBoxLabel"},{"b":"name","d":"string","e":"requestCheckbox"},{"b":"data-qa","d":"string","e":"requestCheckboxQa"},{"b":"onChange","d":"function","e":"({ value }) => setIsAdvancedInsightsChecked(value)"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: `${createBizOrganization.requests.productCode}`,\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"title","d":"expression","e":"createBizOrganization.requests.checkBoxTitle"},{"b":"disabled","d":"variable","e":"isFieldReadOnly"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"all"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.all"},{"b":"checked","d":"expression","e":"infra && orgs && services && users"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-all-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"infrastructure"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.infra"},{"b":"checked","d":"variable","e":"infra"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-infra-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"organization"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.orgs"},{"b":"checked","d":"variable","e":"orgs"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-orgs-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"service"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.services"},{"b":"checked","d":"variable","e":"services"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-services-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"user"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.users"},{"b":"checked","d":"variable","e":"users"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-users-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"useGlobalSearch"},{"b":"label","d":"expression","e":"searchStr.searchArea.useGlobalSearch"},{"b":"checked","d":"variable","e":"globalSearchEnabled"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tonGlobalSearchChange(!globalSearchEnabled);\n\t\t\t\t\t\t\t\tsetGlobalSearchEnabled(!globalSearchEnabled);\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"enable-global-search-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","c":[{"b":"name","d":"string","e":"Automated Upgrades"},{"b":"label","d":"string","e":"Automated Upgrades"},{"b":"checked","d":"variable","e":"autoChecked"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","c":[{"b":"name","d":"string","e":"Customer Upgrades"},{"b":"label","d":"string","e":"Customer Upgrades"},{"b":"checked","d":"variable","e":"customerChecked"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"name","d":"string","e":"hideCompletedRuns"},{"b":"checked","d":"variable","e":"hideCompletedRuns"},{"b":"dataQa","d":"string","e":"hide-completed-runs"},{"b":"onChange","d":"function","e":"() => handleToggleHideCompletedRuns()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","c":[{"b":"checked","d":"variable","e":"hideUnusedLimitsRows"},{"b":"onChange","d":"function","e":"() => setHideUnusedLimitsRows((state) => !state)"},{"b":"name","d":"expression","e":"customers.orgLimitsCard.hideUnusedLimit"},{"b":"title","d":"expression","e":"customers.orgLimitsCard.hideUnusedLimit"},{"b":"data-qa","d":"string","e":"hideUnusedLimitsCheckboxQa"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tsetValue(\"PullDatadogAgentImage\", e.value);\n\t\t\t\t\t\t\t\t\tfield.onChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Pull Datadog Agent Image"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Pull Datadog Agent Image"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tlabel: \"Forces docker to pull latest datadog-agent image\"\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"PullDatadogAgentImageCheckbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"() => field.onChange(!field.value)"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Datadog Monitoring Enabled Checkbox"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Datadog Monitoring Enabled"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Agent (Enabled/Disabled) when creating new services\"\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"monitoringEnabledCheckbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"() => field.onChange(!field.value)"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Datadog Monitoring Proxy Enabled Checkbox"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Datadog Monitoring Proxy Enabled"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Proxy server (Enabled/Disabled) for services\"\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"monitoringProxyEnabledCheckbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"checked","d":"variable","e":"checked"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\trow[propertyName] = !row[propertyName];\n\t\t\t\t}"},{"b":"name","d":"variable","e":"propertyName"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"indeterminate","d":"variable","e":"indeterminate"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tfield.onChange(!field.value);\n\t\t\t\t\t\t\t\t\t\t// update button should only show if there is a change in rmms status\n\t\t\t\t\t\t\t\t\t\tsetShowRMMSUpdateButton(\n\t\t\t\t\t\t\t\t\t\t\tddOrgData?.apiKey !== undefined && getValues(\"rmmsManaged\") !== monitoringOrgData?.isRMMS\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t}"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Managed by RMMS Checkbox"},{"b":"largeLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Managed by RMMS"},{"b":"dataQa","d":"string","e":"rmmsManaged"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/totalUsages.json new file mode 100644 index 000000000..8e2afd342 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/totalUsages.json @@ -0,0 +1 @@ +17 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/usagesByMfe.json new file mode 100644 index 000000000..6525f128b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCheckBox/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":17} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/commonProps.json new file mode 100644 index 000000000..cb19c7250 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":13},{"name":"key","count":7},{"name":"size","count":5},{"name":"fillColor","count":5},{"name":"labelColor","count":4},{"name":"onDelete","count":4},{"name":"dataQa","count":2},{"name":"maxWidth","count":1},{"name":"...","count":1},{"name":"clickable","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/files.json new file mode 100644 index 000000000..4c48331c9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/instances.json new file mode 100644 index 000000000..b8820c262 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx","c":[{"b":"label","d":"string","e":"BETA"},{"b":"size","d":"string","e":"xs"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"key","d":"expression","e":"email + index"},{"b":"label","d":"variable","e":"email"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"key","d":"expression","e":"email + index"},{"b":"label","d":"variable","e":"email"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"},{"b":"onDelete","d":"function","e":"() => removeEmail(email)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"label","d":"variable","e":"value"},{"b":"onDelete","d":"function","e":"() => setFilters({ ...filters, [key]: \"\" })"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx","c":[{"b":"size","d":"string","e":"sm"},{"b":"maxWidth","d":"string","e":"fit-content"},{"b":"label","d":"variable","e":"item"},{"b":"...","d":"spread","e":"setChipArray ? { onDelete: () => setChipArray(item) } : {}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[{"b":"key","d":"expression","e":"`visible-${index}-${email}`"},{"b":"label","d":"variable","e":"email"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"key","d":"variable","e":"feature"},{"b":"label","d":"variable","e":"feature"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","c":[{"b":"key","d":"variable","e":"feature"},{"b":"label","d":"variable","e":"feature"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","c":[{"b":"key","d":"string","e":"more"},{"b":"label","d":"expression","e":"integrationStrings.organizations.table.moreFeatures(features.length - 1)"},{"b":"size","d":"string","e":"sm"},{"b":"dataQa","d":"string","e":"more-features"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"dataQa","d":"expression","e":"`${value}-chip`"},{"b":"label","d":"expression","e":"capitalCase(value)"},{"b":"onDelete","d":"function","e":"() => modifyFilters().removeFilter(value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"label"},{"b":"onDelete","d":"function","e":"() => onDeleteFunc()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"label","d":"string","e":"Up to Date"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"label","d":"string","e":"Out of Date"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.warnYellow"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/usagesByMfe.json new file mode 100644 index 000000000..268620191 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChip/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/commonProps.json new file mode 100644 index 000000000..afef96667 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":1},{"name":"id","count":1},{"name":"name","count":1},{"name":"value","count":1},{"name":"validateChip","count":1},{"name":"onChange","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/files.json new file mode 100644 index 000000000..48b736da7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/instances.json new file mode 100644 index 000000000..f2b78ee00 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","c":[{"b":"label","d":"expression","e":"organizationDetails.manageNotificationContactDialog.label"},{"b":"id","d":"string","e":"demoChipTextAreaId"},{"b":"name","d":"string","e":"demoChipTextArea"},{"b":"value","d":"variable","e":"dialogEmails"},{"b":"validateChip","d":"variable","e":"emailValidationFunction"},{"b":"onChange","d":"function","e":"(e: { allValues: string; chips: ChipData[] }) => {\n\t\t\t\t\thandleEmailsChange(e.allValues, e.chips);\n\t\t\t\t}"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorMessage || (updateError ? organizationDetails.manageNotificationContactDialog.errors.updateError : \"\")"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceChipTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..1883e3f42 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"size","count":7},{"name":"variant","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/files.json new file mode 100644 index 000000000..8e59ee24a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..45fcc47f4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"size","d":"string","e":"sm"},{"b":"variant","d":"variable","e":"loadingVariant"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"size","d":"string","e":"sm"},{"b":"data-qa","d":"string","e":"loading-spinner"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"size","d":"string","e":"sm"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..9992c9db5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/commonProps.json new file mode 100644 index 000000000..0ab05e566 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/commonProps.json @@ -0,0 +1 @@ +[{"name":"mode","count":7},{"name":"value","count":7},{"name":"readOnly","count":6},{"name":"dataQa","count":3},{"name":"expandable","count":2},{"name":"helperText","count":2},{"name":"hasErrors","count":2},{"name":"id","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/files.json new file mode 100644 index 000000000..c9f511260 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/instances.json new file mode 100644 index 000000000..e6d71072f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(\n\t\t\t\t\t\t\t\tinfrastructureRequests[`${deleteConfirmation.infrastructureId}-disable`].error,\n\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t2\n\t\t\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"id","d":"expression","e":"detailsDialog.org.organizationId"},{"b":"value","d":"expression","e":"JSON.stringify(detailsDialog.org, null, 2)"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx","c":[{"b":"mode","d":"string","e":"protobuf"},{"b":"value","d":"expression","e":"currentConfig.config"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"expandable","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"codeEditor"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(details, null, 2)"},{"b":"helperText","d":"jsx","e":""},{"b":"hasErrors","d":"expression","e":"details?.isError"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"codeEditor"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(servicePackage, null, 2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(infrastructureRequests[errorDetails].error, null, 2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"expandable","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"codeEditor"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(configs?.data, null, 2)"},{"b":"helperText","d":"jsx","e":""},{"b":"hasErrors","d":"expression","e":"configs?.isError"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/usagesByMfe.json new file mode 100644 index 000000000..4f1ef0b19 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceCodeEditor/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..0e74a979c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"isOpen","count":42},{"name":"actions","count":42},{"name":"title","count":40},{"name":"maxWidth","count":17},{"name":"contentText","count":10},{"name":"linearProgressIndicator","count":8},{"name":"contentLayout","count":3},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..30c6ceb46 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..3334469de --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"expression","e":"createBizOrganization.reviewAndSave"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.save,\n\t\t\t\t\tid: \"confirmSave\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSave,\n\t\t\t\t\tisDisabled: dialogState.saving\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"title","d":"expression","e":"i18nStrings.addProductsLabel"},{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.cancelLabel,\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogCancel\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.addProductsLabel,\n\t\t\t\t\tonClick: handleAddProducts,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogAddProds\"\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"title","d":"string","e":"Manage Connector Flow Version"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: () => onDialogClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Update\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"upgradeConfirmation\",\n\t\t\t\t\tonClick: handleConnectorUpgrade,\n\t\t\t\t\tisDisabled: updatedVersion === connectorTypeId\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"isOpen","d":"expression","e":"!!errorDetails"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"isOpen","d":"expression","e":"deleteConfirmation.isOpen"},{"b":"title","d":"string","e":"Delete Connector"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", dataQa: \"deleteConfirmation\", onClick: handleConnectorDelete }\n\t\t\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setDetailsDialog({ isOpen: false, org: {} } as DetailsDialog)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"expression","e":"detailsDialog.isOpen"},{"b":"title","d":"string","e":"Organization Details"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx","c":[{"b":"isOpen","d":"variable","e":"cleanModal"},{"b":"title","d":"string","e":"WARNING"},{"b":"contentText","d":"string","e":"Are you sure you want to perform database cleanup?"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setCleanModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleJobClean() }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx","c":[{"b":"isOpen","d":"variable","e":"syncModal"},{"b":"title","d":"string","e":"WARNING"},{"b":"contentText","d":"string","e":"Heavy database operation will be executed. Are you sure you want to proceed?"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setSyncModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleEntitySync() }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"string","e":"Post-Upgrade Check Results"},{"b":"linearProgressIndicator","d":"variable","e":"loading"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose }]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"string","e":"Upgrade Logs"},{"b":"linearProgressIndicator","d":"variable","e":"inProgress"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose }]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"string","e":"Pre-Upgrade Check Results"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose }]"},{"b":"linearProgressIndicator","d":"variable","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx","c":[{"b":"contentLayout","d":"string","e":"contents"},{"b":"maxWidth","d":"string","e":"md"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tisDisabled: false,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"string","e":"Update Upgrade Plan"},{"b":"contentText","d":"string","e":"Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx","c":[{"b":"contentLayout","d":"string","e":"contents"},{"b":"maxWidth","d":"string","e":"md"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-plan\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create Plan\",\n\t\t\t\t\tdataQa: \"create-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"string","e":"Create Plan"},{"b":"contentText","d":"string","e":"Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"contentLayout","d":"string","e":"contents"},{"b":"maxWidth","d":"string","e":"md"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-manage-plan\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"apply-manage-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"jsx","e":" handleCancel()}>\n\t\t\t\t\t\n\t\t\t\t\tManage Broker Upgrade Scope\n\t\t\t\t"},{"b":"contentText","d":"string","e":"The filter will be applied to the upgrade run, determining the brokers included in that specific run."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Plan"},{"b":"contentText","d":"string","e":"Deleting this plan will delete any runs, groups, and associated data using this plan. They will be permanently removed from the system."},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: () => handleModal() },\n\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(plan.id) }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Upgrade Run"},{"b":"contentText","d":"string","e":"Are you sure you want to delete this upgrade run? This action cannot be undone."},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"delete-run-cancel\" },\n\t\t\t\t\t{ label: \"Delete Run\", variant: \"outline\", onClick: handleDelete, dataQa: \"delete-run-confirm\" }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-run\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Schedule Run\",\n\t\t\t\t\tdataQa: \"create-run\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"string","e":"Schedule Upgrade Run"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`${actionType === \"pause\" ? \"Pause\" : \"Cancel\"} Upgrade Run`"},{"b":"contentText","d":"expression","e":"`Are you sure you want to ${actionType} this upgrade run?`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleModal },\n\t\t\t\t\t{ label: actionType === \"pause\" ? \"Pause Run\" : \"Cancel Run\", variant: \"outline\", onClick: handleAction }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"organizationDetails.manageNotificationContactDialog.title"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\t\t\tonClick: () => setOpenDialog(false)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\tonClick: forceUpdateAllMonitors,\n\t\t\t\t\t\t\t\t\tdataQa: \"proceedUpdateAllMonitorsButton\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openDialog"},{"b":"title","d":"string","e":"Update Monitoring Notification"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]"},{"b":"isOpen","d":"expression","e":"detailsState.showDetails"},{"b":"title","d":"expression","e":"`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(onSubmit)();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirmationDialogProceedButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openConfirmationDialog"},{"b":"title","d":"string","e":"Update Services Monitoring Configurations"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowUpdateDefaultsError(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"showUpdateDefaultsError"},{"b":"title","d":"expression","e":"`Update Monitoring Defaults Failed`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setOpenDatadogProxyDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openDatadogProxyDialog"},{"b":"title","d":"expression","e":"\"Monitoring Proxy Endpoints\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Refresh\",\n\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\tconst updatedService = await refreshMonitoringAgentStatus(agentStatusDialogService);\n\n\t\t\t\t\t\t\tsetAgentStatusDialogService(updatedService);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\tservicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\t\t\tRequestStatus.IN_PROGRESS\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(false);\n\n\t\t\t\t\t\t\t// Errors and warnings are part of the fetched status and should persist\n\t\t\t\t\t\t\t// until a refresh. They are not reset on dialog close.\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"statusDialogOkButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openAgentStatusDialog"},{"b":"title","d":"expression","e":"`Monitoring Agent Status`"},{"b":"linearProgressIndicator","d":"expression","e":"servicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\tRequestStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"expression","e":"detailsState.showDetails"},{"b":"title","d":"expression","e":"`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setShowUpdateMonitoringNotificationConfirmation(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"updateMonitoringNotificationConfirmationProceedButton\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(updateMonitoringNotification)();\n\t\t\t\t\t\t\tsetShowUpdateMonitoringNotificationConfirmation(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"showUpdateMonitoringNotificationConfirmation"},{"b":"title","d":"expression","e":"`Update Monitoring Notification`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowInvalidHandlesDialog(false),\n\t\t\t\t\t\tdataQa: \"InvalidHandlesDialogButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"showInvalidHandlesDialog"},{"b":"title","d":"expression","e":"`Failed: Invalid Email Handles`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"title","d":"expression","e":"getDialogTitle()"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tdataQa: \"cancel-button\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.confirm,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleConfirm();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirm-button\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"data-qa","d":"string","e":"confirmation-dialog"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onCancel,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionLabel,\n\t\t\t\t\tvariant: actionVariant,\n\t\t\t\t\tonClick: onConfirm,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"variable","e":"actions"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Edit Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"okAction\",\n\t\t\t\t\tonClick: () => setOpen({ open: false, servicePackage: undefined })\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Service Package Details"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Release\",\n\t\t\t\t\tdataQa: \"release\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading || !servicePackage?.metadata?.releaseNotes,\n\t\t\t\t\tonClick: handleRelease\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Release New Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[{"b":"actions","d":"variable","e":"actions"},{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"string","e":"Delete Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create\",\n\t\t\t\t\tdataQa: \"create\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading,\n\t\t\t\t\tonClick: handleSubmit(onCreate)\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Create Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"title","d":"expression","e":"deleteDialog.title"},{"b":"contentText","d":"expression","e":"!deleteDialog?.error ? deleteDialog.contentText : \"\""},{"b":"isOpen","d":"expression","e":"deleteDialog.isOpen"},{"b":"linearProgressIndicator","d":"expression","e":"deleteDialog.linearProgressIndicator"},{"b":"actions","d":"expression","e":"deleteDialog.actions"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"title","d":"string","e":"Import From Datacenter"},{"b":"actions","d":"variable","e":"actions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"isOpen","d":"variable","e":"isOpen"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"isOpen","d":"expression","e":"!!errorDetails"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"isOpen","d":"expression","e":"deleteConfirmation.isOpen"},{"b":"title","d":"string","e":"Delete Collector"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"call-to-action\", dataQa: \"deleteConfirmation\", onClick: handleCollectorDelete }\n\t\t\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"title","d":"string","e":"Delete"},{"b":"isOpen","d":"expression","e":"deleteConfirmation.isOpen"},{"b":"linearProgressIndicator","d":"expression","e":"deletingBrokerCompatibility || deletingHelmChartCompatibility"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ isOpen: false, type: CompatibilityType.None, row: {} }),\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"cancelButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: modifyError.error ? \"Ok\" : \"Delete\",\n\t\t\t\t\t\tonClick: () => handleDelete(deleteConfirmation.row, deleteConfirmation.type),\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"deleteButton\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","c":[{"b":"title","d":"expression","e":"compatibilityType == CompatibilityType.Broker ? \"Add Broker Compatibility\" : \"Add Collector Compatibility\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonClose();\n\t\t\t\t\t\tsetModifyError({ error: false, message: \"\", id: \"\" });\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\ttype: \"submit\",\n\t\t\t\t\tdataQa: \"addButton\",\n\t\t\t\t\tonClick:\n\t\t\t\t\t\tcompatibilityType == CompatibilityType.Broker\n\t\t\t\t\t\t\t? handleSubmit((data: BrokerCompatibility) => handleModifyCollector(data))\n\t\t\t\t\t\t\t: handleSubmit((data: CollectorCompatibility) => handleAddCollectorCompatibility(data))\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"title","d":"string","e":"Modify collector"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"linearProgressIndicator","d":"variable","e":"isPerformingRequest"},{"b":"contentText","d":"expression","e":"\"Infrastructure ID: \" + collector?.infrastructureId"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"close\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonCloseHandler()\n\t\t\t\t\t\tdispatch(openUpgradeDialog({ isOpen: false }));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Submit\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: isPerformingRequest || isEdited === false,\n\t\t\t\t\tdataQa: \"submit\",\n\t\t\t\t\tonClick: () =>\n\t\t\t\t\t\thandleModifyCollector(\n\t\t\t\t\t\t\tcollector?.serviceId as string,\n\t\t\t\t\t\t\tcollector?.infrastructureId as string,\n\t\t\t\t\t\t\timageTag,\n\t\t\t\t\t\t\thelmChartVersion,\n\t\t\t\t\t\t\taction\n\t\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..f70d7bba4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +42 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..6c1ef5465 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":42} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/commonProps.json new file mode 100644 index 000000000..d7ea21ca4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"onClear","count":2},{"name":"onChange","count":2},{"name":"disableFuture","count":2},{"name":"value","count":2},{"name":"timezone","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/files.json new file mode 100644 index 000000000..225343aec --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/instances.json new file mode 100644 index 000000000..6e286612d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClear","d":"function","e":"() => setSelectedStartDate(null)"},{"b":"onChange","d":"function","e":"(date) => setSelectedStartDate(moment(date).startOf(\"day\"))"},{"b":"disableFuture","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"selectedStartDate?.toISOString()"},{"b":"timezone","d":"string","e":"UTC"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClear","d":"function","e":"() => setSelectedEndDate(null)"},{"b":"onChange","d":"function","e":"(date) => setSelectedEndDate(moment(date))"},{"b":"disableFuture","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"selectedEndDate?.toISOString()"},{"b":"timezone","d":"string","e":"UTC"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/usagesByMfe.json new file mode 100644 index 000000000..dcce81e79 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDatePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/commonProps.json new file mode 100644 index 000000000..40f5b156f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":9},{"name":"msgImg","count":8},{"name":"details","count":6},{"name":"actions","count":1},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/files.json new file mode 100644 index 000000000..ff0b36a3f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/instances.json new file mode 100644 index 000000000..0a7088e38 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"You do not have access to view this tab"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"No plan selected"},{"b":"details","d":"string","e":"Create or select a listed plan to view its details."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"No scheduled upgrade runs"},{"b":"details","d":"string","e":"No upgrade runs returned. Open the create modal to schedule based off an existing Plan."},{"b":"actions","d":"array","e":"[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"Failed to fetch upgrade run"},{"b":"details","d":"string","e":"Run data could not be retrieved. It may have been deleted or does not exist."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"details","d":"expression","e":"drawdownUsage.drawdownUsageNotAvailable_subtext1"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.drawdownUsageNotAvailable"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"details","d":"expression","e":"drawdownUsage.noDrawdownUsageSub"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.noDrawdownUsage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no connector deployment for this service!\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"...","d":"spread","e":"upgradeMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"title","d":"expression","e":"integrationStrings.sidebar.noSelection.title"},{"b":"details","d":"expression","e":"integrationStrings.sidebar.noSelection.details"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no collector for this service!\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/usagesByMfe.json new file mode 100644 index 000000000..1f046b59e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceDetailMessage/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/commonProps.json new file mode 100644 index 000000000..7705751c5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":1},{"name":"fgColor","count":1},{"name":"bgColor","count":1},{"name":"icon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/files.json new file mode 100644 index 000000000..6a830b58b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/instances.json new file mode 100644 index 000000000..d4a42777f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"label","d":"expression","e":"envOption.label"},{"b":"fgColor","d":"expression","e":"envOption.fgColor"},{"b":"bgColor","d":"expression","e":"envOption.bgColor"},{"b":"icon","d":"expression","e":"envOption.icon"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceEnvironmentLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/commonProps.json new file mode 100644 index 000000000..09cddf616 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":4},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/files.json new file mode 100644 index 000000000..7519a8aaf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/instances.json new file mode 100644 index 000000000..49bf23756 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"message","d":"expression","e":"customers.aggregationIdNotFound(aggregationId)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"message","d":"expression","e":"customers.accIdNotFound(customerId)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"message","d":"expression","e":"\"Unable to retrieve organization details from monitoring. Please try refreshing the page.\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"message","d":"expression","e":"\"Unable to retrieve all service details from monitoring. Please try refreshing the page.\""},{"b":"dataQa","d":"string","e":"fetchServiceErrorBox"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/usagesByMfe.json new file mode 100644 index 000000000..d3d8a3121 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceErrorBox/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/commonProps.json new file mode 100644 index 000000000..d803bbfe4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/commonProps.json @@ -0,0 +1 @@ +[{"name":"item","count":140},{"name":"xs","count":89},{"name":"container","count":38},{"name":"sm","count":14},{"name":"spacing","count":11},{"name":"paddingTop","count":10},{"name":"alignItems","count":8},{"name":"key","count":7},{"name":"data-qa","count":6},{"name":"style","count":6},{"name":"direction","count":5},{"name":"mt","count":4},{"name":"textAlign","count":2},{"name":"p","count":2},{"name":"rowSpacing","count":2},{"name":"columnSpacing","count":2},{"name":"pr","count":2},{"name":"width","count":2},{"name":"ml","count":2},{"name":"justifyContent","count":2},{"name":"sx","count":2},{"name":"md","count":2},{"name":"columns","count":1},{"name":"mb","count":1},{"name":"mr","count":1},{"name":"display","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/files.json new file mode 100644 index 000000000..d7551f066 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/instances.json new file mode 100644 index 000000000..fda5e3f45 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"mt","d":"number","e":"2"},{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"},{"b":"key","d":"expression","e":"`container${key}`"},{"b":"data-qa","d":"expression","e":"`qacx-${key}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"9"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"expression","e":"`subscription-products-container`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"search-page-form"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"sm","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"sm","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"sm","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"sm","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"},{"b":"sm","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"},{"b":"style","d":"object","e":"{ margin: \"auto\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"},{"b":"sm","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"9"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"textAlign","d":"string","e":"right"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mt","d":"number","e":"0.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"textAlign","d":"string","e":"right"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"key"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"style","d":"object","e":"{ marginTop: \"8px\" }"},{"b":"key","d":"expression","e":"run.id"},{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"container","d":"boolean","e":"true"},{"b":"rowSpacing","d":"number","e":"2"},{"b":"columnSpacing","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"pr","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"expression","e":"style.max"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"width","d":"string","e":"auto"},{"b":"ml","d":"string","e":"1px"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"style","d":"expression","e":"styles.column"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"expression","e":"styles.row"},{"b":"width","d":"string","e":"fit-content"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"columns","d":"number","e":"14"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"peNotificationStatus"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"key"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"alignItems","d":"string","e":"center"},{"b":"mt","d":"string","e":"30px"},{"b":"pr","d":"string","e":"32px"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"style","d":"object","e":"{ alignContent: \"end\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"itemWidth"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"key"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"container","d":"boolean","e":"true"},{"b":"rowSpacing","d":"number","e":"2"},{"b":"columnSpacing","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"editForm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"releaseDialog"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"space-between"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"ml","d":"string","e":"auto"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"0"},{"b":"mt","d":"expression","e":"theme.spacing(1)"},{"b":"mb","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"value"},{"b":"mr","d":"expression","e":"theme.spacing(1.5)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"justifyContent","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"createForm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"},{"b":"alignItems","d":"string","e":"center"},{"b":"display","d":"expression","e":"\"flex\""},{"b":"sx","d":"object","e":"{ padding: 1, paddingLeft: 3 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ padding: 3 }"},{"b":"spacing","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"sm","d":"expression","e":"\"auto\""},{"b":"md","d":"expression","e":"\"auto\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"sm","d":"expression","e":"\"auto\""},{"b":"md","d":"expression","e":"\"auto\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/totalUsages.json new file mode 100644 index 000000000..6fc1e6e18 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/totalUsages.json @@ -0,0 +1 @@ +178 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/usagesByMfe.json new file mode 100644 index 000000000..4ff9037f8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGrid/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":178} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/commonProps.json new file mode 100644 index 000000000..50c0ab38b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":5},{"name":"rowMapping","count":5},{"name":"gridTemplate","count":5},{"name":"dataQa","count":5},{"name":"headers","count":3},{"name":"numOfGridListItemDisplayed","count":2},{"name":"onSelection","count":1},{"name":"selectedItemId","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/files.json new file mode 100644 index 000000000..78e3e560c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/instances.json new file mode 100644 index 000000000..9036f268b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"headers","d":"variable","e":"headers"},{"b":"items","d":"variable","e":"items"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"string","e":"250px 1fr 100px 50px"},{"b":"dataQa","d":"string","e":"platform-notification-contacts-list"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"dataQa","d":"string","e":"dcTuningstate"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"items","d":"variable","e":"wanTuningDaemonSetStatus"},{"b":"headers","d":"array","e":"['Service Tier', 'Version', 'Status(D/C/R/U/A)', 'Up-To-Date Services', 'All Services']"},{"b":"numOfGridListItemDisplayed","d":"number","e":"4"},{"b":"gridTemplate","d":"string","e":"minmax(100px, 150px) 100px minmax(50px, 150px) minmax(50px, 150px) minmax(120px, 1fr) "},{"b":"onSelection","d":"function","e":"(item) => {\n setSelectedItemId(item.serviceTier as ServiceTier)\n setActiveTabFeature(WanTuningFeatures.CHECK_DAEMON_SET_POD)\n dispatch(clearDaemonSetPodStatus())\n }"},{"b":"selectedItemId","d":"variable","e":"selectedItemId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"dataQa","d":"string","e":"service-tier-grid-list"},{"b":"items","d":"variable","e":"wanTuningPodStatus"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"string","e":"200px 90px 400px 400px 400px"},{"b":"headers","d":"array","e":"[\"Pod Name\", \"Pod Status\", \"Attached Node\", \"Message Broker Pod\", \"Recent Events\"]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"items","d":"variable","e":"tracingProfile"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"numOfGridListItemDisplayed","d":"number","e":"10"},{"b":"dataQa","d":"string","e":"tracing-destinations-table"},{"b":"gridTemplate","d":"string","e":"minmax(5px, 15px) minmax(120px, 300px) minmax(120px, 1fr) minmax(120px, 150px) 150px"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"items","d":"variable","e":"noItemsFound"},{"b":"rowMapping","d":"variable","e":"emptyRowMapping"},{"b":"dataQa","d":"string","e":"empty-tracing-destinations-table"},{"b":"gridTemplate","d":"string","e":"1fr"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..8d8ab0fdd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/commonProps.json new file mode 100644 index 000000000..a00fb1275 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/files.json new file mode 100644 index 000000000..e07efaef8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/instances.json new file mode 100644 index 000000000..0752f5b03 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"id","d":"expression","e":"`description-label-${selectedItem.id}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"id","d":"expression","e":"`state-label-${selectedItem.id}`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/usagesByMfe.json new file mode 100644 index 000000000..45eb58a11 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/commonProps.json new file mode 100644 index 000000000..8e099dda3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/commonProps.json @@ -0,0 +1 @@ +[{"name":"backgroundColor","count":4},{"name":"title","count":3},{"name":"dataQa","count":2},{"name":"showCloseButton","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/files.json new file mode 100644 index 000000000..cf5f36c70 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/instances.json new file mode 100644 index 000000000..8bd49d721 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"title","d":"string","e":"Plan Description"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"title","d":"jsx","e":""},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.paper"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.common.white"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"drawdownUsage.messages.title"},{"b":"dataQa","d":"string","e":"drawdownUsageFormulaCard"},{"b":"backgroundColor","d":"string","e":"#E6F2FF"},{"b":"onClose","d":"variable","e":"handleCloseDisplayMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.primary.contrastText"},{"b":"dataQa","d":"string","e":"drawdownCard"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/usagesByMfe.json new file mode 100644 index 000000000..4f1ef0b19 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceLearningBanner/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/commonProps.json new file mode 100644 index 000000000..51f4240b5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/files.json new file mode 100644 index 000000000..eb6aa28f6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/instances.json new file mode 100644 index 000000000..afed732a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ justifyContent: \"space-between\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ justifyContent: \"space-between\", display: \"flex\", flexDirection: \"column\" }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/usagesByMfe.json new file mode 100644 index 000000000..8d8ab0fdd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceList/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/commonProps.json new file mode 100644 index 000000000..6c3a404d2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"divider","count":8},{"name":"key","count":2},{"name":"sx","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/files.json new file mode 100644 index 000000000..eb6aa28f6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/instances.json new file mode 100644 index 000000000..8285f2491 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[{"b":"key","d":"expression","e":"`hidden-${index}-${email}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ display: \"flex\", alignItems: \"flex-start\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"resource.profile"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/usagesByMfe.json new file mode 100644 index 000000000..9992c9db5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceListItem/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/commonProps.json new file mode 100644 index 000000000..79133aa35 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":2},{"name":"items","count":2},{"name":"dataQa","count":2},{"name":"anchorOrigin","count":1},{"name":"transformOrigin","count":1},{"name":"id","count":1},{"name":"closeOnSelect","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/files.json new file mode 100644 index 000000000..b4e6d48f8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/instances.json new file mode 100644 index 000000000..95a5605cf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"\"connectors_additional_actions\""},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"connectors_additional_actions_menu"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"dataQa","d":"string","e":"filterMenu"},{"b":"buttonProps","d":"object","e":"{ variant: \"icon\", children: , dataQa: \"filter\" }"},{"b":"closeOnSelect","d":"boolean","e":"false"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PREVIEW) ? Preview : \"Preview\",\n\t\t\t\t\t\t\t\t\tdataQa: \"preview\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PREVIEW)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PRODUCTION) ? Production : \"Production\",\n\t\t\t\t\t\t\t\t\tdataQa: \"production\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PRODUCTION)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.LTS) ? LTS : \"LTS\",\n\t\t\t\t\t\t\t\t\tdataQa: \"lts\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.LTS)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.ROLLING) ? Rolling : \"Rolling\",\n\t\t\t\t\t\t\t\t\tdataQa: \"rolling\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ROLLING)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.DECLINED) ? Declined : \"Declined\",\n\t\t\t\t\t\t\t\t\tdataQa: \"declined\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.DECLINED),\n\t\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.RELEASED) ? Released : \"Released\",\n\t\t\t\t\t\t\t\t\tdataQa: \"released\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.NOT_RELEASED) ? (\n\t\t\t\t\t\t\t\t\t\tNot Released\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\"Not Released\"\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdivider: true,\n\t\t\t\t\t\t\t\t\tdataQa: \"notReleased\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.NOT_RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Views\",\n\t\t\t\t\t\t\t\t\tname:\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PRODUCTION) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.RELEASED) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PREVIEW) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.LTS) ? (\n\t\t\t\t\t\t\t\t\t\t\tActive\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\"Active\"\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdataQa: \"active\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ACTIVE)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..45eb58a11 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/commonProps.json new file mode 100644 index 000000000..466325603 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":50},{"name":"variant","count":50},{"name":"dataQa","count":26},{"name":"showIcon","count":7},{"name":"dense","count":4},{"name":"color","count":1},{"name":"showCloseButton","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/files.json new file mode 100644 index 000000000..4396a5113 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/instances.json new file mode 100644 index 000000000..4d656a975 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.messages.editDeleteMessage"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.messages.editDeleteMessage"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.orgDetails.orgIdWarning"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{` ${createBizOrganization.orgDetails.errorFound}`} \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.purchaseOrderRunbook}\n\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.contactPeTeam} \n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t{/*
\n\t\t\t\t\t\t\t\tContact PE\n\t\t\t\t\t\t\t
*/}\n\t\t\t\t\t\t
"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","c":[{"b":"dataQa","d":"string","e":"successMsgBox"},{"b":"message","d":"expression","e":"createBizOrganization.orgDetails.organizationSaveSuccess"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.requests.successBannerMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.errorFound}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.messages.purchaseOrder}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPeTeam}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPE}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"error"},{"b":"dense","d":"boolean","e":"true"},{"b":"color","d":"expression","e":"theme.palette.error.light"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{createBizOrganization.products.products}\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.successMessage}\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"success"},{"b":"dataQa","d":"string","e":"prodValidatedMessageQa"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.accountAdmins.successBannerMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"dataQa","d":"expression","e":"`deleting-${request.deploymentId}`"},{"b":"showIcon","d":"boolean","e":"false"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDeleting the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"expression","e":"`error-${request.deploymentId}`"},{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tFailed to delete the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setErrorDetails(`${request.deploymentId}-disable`)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Post-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{!lastValidation &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Pre-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{missingAttributes &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"!autoUpgrades && !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated and customer upgrades are disabled. No scheduled or immediate upgrades can take place.\"\n\t\t\t\t\t\t\t\t\t: !autoUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated upgrades are disabled. Customers can still trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Customer upgrades are disabled. Customers will not be able to trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Upgrade has been paused. Verify upgrade status before proceeding. In progress operations will complete."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Upgrade has been cancelled. In progress operations will complete."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"message","d":"expression","e":"\"For the latest Connector Details, please click the Connector Deployment Info Refresh icon.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dataQa","d":"expression","e":"`${dataQa}Success`"},{"b":"variant","d":"string","e":"success"},{"b":"message","d":"expression","e":"successMessage || \"Success\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"`${dataQa}Error`"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t{errorMessage || \"Validation failed. Please try again.\"}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t handleDetails(errorKey)}>\n\t\t\t\t\t\t\t\t\t\tMore Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"string","e":"Note: It can take several minutes for resources to be deployed to Datadog. Please wait before validating."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"dataQa","d":"string","e":"warnUpdateServicesPagination"},{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`This section updates services shown in current page ${currentPage}. To apply monitoring configurations to all services, make sure you run Update Services on all service pages.`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"string","e":"Note: solace-datadog-agent version cannot be overridden for k8s services"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"`${service.name}_agentStatusWarning`"},{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`${warnings}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"`${service.name}_agentStatusError`"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"`${errors.filter(e => e && String(e).trim() !== '')}.`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\tNote: If this step fails because rbac is not enabled, please contact Datadog Support to enable\n\t\t\t\t\t\t\t\trbac for Datadog Sub-Org.\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: You may need to switch to the customer Sub-Org.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: It might take up to a minute for the log to be visible in Datadog.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tNote: Don’t enable PE profile for Insights onboarding. For RMMS consider\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnotifying to their handle.\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: It can take several minutes for resources to be deployed to Datadog. Please wait before\n\t\t\t\t\t\t\t\t\t\tvalidating.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: Insights policy should not be enabled for RMMS accounts.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"ema.latestDeployment?.error?.message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMessage"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setErrorMessage(\"\")"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"releaseNotesError"},{"b":"message","d":"string","e":"Release Notes should be provided"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"errorDialog"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"error ? error : IN_USE_MESSAGE"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"dataQa","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"deleteDialog.contentText"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"message","d":"expression","e":"`Note: This page consists of private regions specific to ${orgId} organization.`"},{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"note"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"cloneError"},{"b":"message","d":"expression","e":"(error as Error)?.data?.message ?? `Failed to clone ${datacenterId} from ${selectedDatacenterId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"sameDCError"},{"b":"message","d":"expression","e":"\"Unable to clone a datacenter from itself\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"dataQa","d":"expression","e":"`deleting-${request.infrastructureId}`"},{"b":"showIcon","d":"boolean","e":"false"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeleting the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"expression","e":"`error-${request.infrastructureId}`"},{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tFailed to delete the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t\t setErrorDetails(request.infrastructureId)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"successMessage"},{"b":"dataQa","d":"string","e":"successMsgBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"errorMessage"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/totalUsages.json new file mode 100644 index 000000000..c5b431b6c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/totalUsages.json @@ -0,0 +1 @@ +50 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/usagesByMfe.json new file mode 100644 index 000000000..5b6d77ee2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceMessageBox/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":50} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..fde19eeea --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":4},{"name":"breadcrumbs","count":4},{"name":"actions","count":3},{"name":"tabs","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/files.json new file mode 100644 index 000000000..87c9b059c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/instances.json new file mode 100644 index 000000000..a23670259 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","c":[{"b":"title","d":"string","e":"Manage Upgrade Plans"},{"b":"breadcrumbs","d":"variable","e":"breadcrumbs"},{"b":"actions","d":"array","e":"[\n\t\t\t\t handleModal()}>\n\t\t\t\t\tCreate Plan\n\t\t\t\t\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","c":[{"b":"title","d":"string","e":"Upgrades"},{"b":"breadcrumbs","d":"variable","e":"breadcrumbs"},{"b":"actions","d":"array","e":"[\n\t\t\t\t handlePlanRoute()} variant=\"text\" dataQa=\"create\">\n\t\t\t\t\tManage Upgrade Plans\n\t\t\t\t,\n\t\t\t\t\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","c":[{"b":"title","d":"expression","e":"`Upgrade Run${runId ? `: ${runId}` : \"\"}`"},{"b":"breadcrumbs","d":"variable","e":"breadcrumbs"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t
\n\t\t\t\t\t\t{renderButton(\"Resume\", () => handleAction(resumeUpgradeRun), \"text\", status === \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Pause\", () => openModal(\"pause\"), \"text\", status !== \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Cancel\", () => openModal(\"cancel\"), \"outline\", true)}\n\t\t\t\t\t
\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","c":[{"b":"title","d":"expression","e":"integrationStrings.mainPage.pageTitle"},{"b":"breadcrumbs","d":"jsx","e":""},{"b":"tabs","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..d3d8a3121 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/commonProps.json new file mode 100644 index 000000000..594b2130a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"activePage","count":15},{"name":"pageSize","count":15},{"name":"totalResults","count":15},{"name":"onPageSelection","count":15},{"name":"loading","count":8}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/files.json new file mode 100644 index 000000000..cc4ccff6e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/instances.json new file mode 100644 index 000000000..e579518c0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"variable","e":"connectorCount"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\tsetConnectorQuery(queryBuilder({ orgId, pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t}"},{"b":"loading","d":"expression","e":"isLoading && isLoadingMicroIntegrations && isLoadingAgents"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => setPageNumber(selectedPage)"},{"b":"loading","d":"variable","e":"loadingJobs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => setPageNumber(selectedPage)"},{"b":"loading","d":"variable","e":"loadingOrgs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"totalResults","d":"variable","e":"jobsCount"},{"b":"onPageSelection","d":"function","e":"(page) => setPageNumber(page)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","c":[{"b":"totalResults","d":"expression","e":"paginationData?.count"},{"b":"activePage","d":"expression","e":"paginationData?.pageNumber"},{"b":"pageSize","d":"expression","e":"paginationData?.pageSize"},{"b":"onPageSelection","d":"variable","e":"setPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"activePage","d":"expression","e":"(adminServiceResponse?.meta?.pageNumber ?? -1) + 1"},{"b":"pageSize","d":"expression","e":"adminServiceResponse?.meta?.pageSize ?? 20"},{"b":"totalResults","d":"expression","e":"adminServiceResponse?.meta?.count ?? 0"},{"b":"loading","d":"variable","e":"adminServiceResponseIsLoading"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\tsetPageNumber(selectedPage - 1);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"totalResults","d":"expression","e":"paginationData.total"},{"b":"activePage","d":"expression","e":"paginationData.currentPage"},{"b":"pageSize","d":"expression","e":"paginationData.pageSize"},{"b":"onPageSelection","d":"variable","e":"handlePageChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"activePage","d":"variable","e":"activePage"},{"b":"onPageSelection","d":"variable","e":"setActivePage"},{"b":"pageSize","d":"expression","e":"pagination?.pageSize"},{"b":"totalResults","d":"expression","e":"pagination?.count"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"activePage","d":"variable","e":"activePage"},{"b":"loading","d":"variable","e":"managementAgentsIsLoading"},{"b":"onPageSelection","d":"variable","e":"setActivePage"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"expression","e":"pagination.count"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"page"},{"b":"totalResults","d":"expression","e":"tableRows.length"},{"b":"loading","d":"variable","e":"loadingServicePackages"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"totalResults","d":"expression","e":"paginationData.total"},{"b":"activePage","d":"expression","e":"paginationData.currentPage"},{"b":"pageSize","d":"expression","e":"paginationData.pageSize"},{"b":"onPageSelection","d":"variable","e":"onSelectDifferentPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"activePage","d":"expression","e":"brokerCompatibility?.meta?.pageNumber ?? 0"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"expression","e":"brokerCompatibility?.meta?.count ?? 0"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetBrokerQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"brokerCompatibilityIsLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"activePage","d":"expression","e":"helmChartCompatibility?.meta?.pageNumber ?? 0"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"expression","e":"helmChartCompatibility?.meta?.count ?? 0"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetHelmChartQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"brokerCompatibilityIsLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/totalUsages.json new file mode 100644 index 000000000..3f10ffe7a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +15 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..c3be60702 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":15} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/commonProps.json new file mode 100644 index 000000000..aef5f4c23 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/commonProps.json @@ -0,0 +1 @@ +[{"name":"disabled","count":3},{"name":"label","count":3},{"name":"name","count":3},{"name":"value","count":3},{"name":"dataQa","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/files.json new file mode 100644 index 000000000..595952abf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/instances.json new file mode 100644 index 000000000..4de47cdd9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Upgrade"},{"b":"name","d":"string","e":"Upgrade"},{"b":"value","d":"expression","e":"CollectorModificationAction.UPGRADE"},{"b":"dataQa","d":"string","e":"upgrade"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Rollback"},{"b":"name","d":"string","e":"Rollback"},{"b":"value","d":"expression","e":"CollectorModificationAction.ROLLBACK"},{"b":"dataQa","d":"string","e":"rollback"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Redeploy"},{"b":"name","d":"string","e":"Redeploy"},{"b":"value","d":"expression","e":"CollectorModificationAction.REDEPLOY"},{"b":"dataQa","d":"string","e":"redeploy"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/usagesByMfe.json new file mode 100644 index 000000000..dcce81e79 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadio/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/commonProps.json new file mode 100644 index 000000000..3e91f0128 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":1},{"name":"value","count":1},{"name":"onChange","count":1},{"name":"inline","count":1},{"name":"required","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/files.json new file mode 100644 index 000000000..595952abf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/instances.json new file mode 100644 index 000000000..80f7eeb0b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"name","d":"string","e":"collectorRadioGroup"},{"b":"value","d":"variable","e":"action"},{"b":"onChange","d":"function","e":"(event) => dispatch(setAction(event.value))"},{"b":"inline","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceRadioGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/commonProps.json new file mode 100644 index 000000000..19e1c0700 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":2},{"name":"value","count":2},{"name":"onChange","count":2},{"name":"width","count":2},{"name":"type","count":2},{"name":"id","count":1},{"name":"dataQa","count":1},{"name":"placeholder","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/files.json new file mode 100644 index 000000000..a03c11029 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/instances.json new file mode 100644 index 000000000..fc35e8a2f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"id","d":"string","e":"searchAndFilterID"},{"b":"name","d":"string","e":"searchByInfrastructureId"},{"b":"value","d":"variable","e":"searchInfrastructureId"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\tsetSearchInfrastructureId(event.value);\n\t\t\t\t\t}"},{"b":"width","d":"string","e":"250px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"dataQa","d":"string","e":"searchByInfrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"name","d":"string","e":"organizationNameFilter"},{"b":"placeholder","d":"expression","e":"integrationStrings.organizations.filters.nameFilter.placeholder"},{"b":"type","d":"expression","e":"FIELD_TYPES.FILTER"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"onChange","d":"variable","e":"handleNameFilterChange"},{"b":"width","d":"string","e":"425px"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/usagesByMfe.json new file mode 100644 index 000000000..45eb58a11 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSearchAndFilter/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/commonProps.json new file mode 100644 index 000000000..97a752de9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":18},{"name":"onChange","count":16},{"name":"value","count":16},{"name":"label","count":8},{"name":"width","count":8},{"name":"inlineLabel","count":4},{"name":"id","count":4},{"name":"dataQa","count":4},{"name":"readOnly","count":4},{"name":"disabled","count":2},{"name":"title","count":2},{"name":"hasErrors","count":2},{"name":"maxHeight","count":2},{"name":"helperText","count":1},{"name":"key","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/files.json new file mode 100644 index 000000000..f82b688e4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/instances.json new file mode 100644 index 000000000..a22a18519 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"createBizOrganization.products.rateSet"},{"b":"id","d":"string","e":"prodRateSet"},{"b":"name","d":"string","e":"prodRateSet"},{"b":"onChange","d":"variable","e":"handleProdRateSetChange"},{"b":"value","d":"expression","e":"rateSetValues ? prodRateSetValue : \"\""},{"b":"dataQa","d":"string","e":"prodRateSetDropdownQa"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"organizationType"},{"b":"id","d":"string","e":"organizationType"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.accountType"},{"b":"dataQa","d":"string","e":"accountTypeDropdown"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"organizationType\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0"},{"b":"helperText","d":"expression","e":"validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t\t )[0]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"createBizOrganization.products.productConsumptionType"},{"b":"id","d":"string","e":"productConsumptionType"},{"b":"name","d":"string","e":"productConsumptionType"},{"b":"onChange","d":"variable","e":"handleProdConsumptionChange"},{"b":"value","d":"variable","e":"productType"},{"b":"width","d":"string","e":"450px"},{"b":"dataQa","d":"string","e":"productConsumptionDropdownQa"},{"b":"readOnly","d":"expression","e":"productDrawdown.readonly || productSubscriptions.readonly"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"name","d":"string","e":"availableVersions"},{"b":"id","d":"string","e":"availableVersions"},{"b":"width","d":"string","e":"100%"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"title","d":"string","e":"Available Versions"},{"b":"dataQa","d":"string","e":"availableVersions"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Page Size"},{"b":"name","d":"string","e":"pageSize"},{"b":"width","d":"string","e":"200px"},{"b":"value","d":"expression","e":"pageSize.toString()"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Page Size"},{"b":"name","d":"string","e":"pageSize"},{"b":"width","d":"string","e":"200px"},{"b":"value","d":"expression","e":"pageSize.toString()"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"value","d":"variable","e":"search"},{"b":"label","d":"string","e":"Filter By"},{"b":"name","d":"string","e":"filter by"},{"b":"width","d":"string","e":"250px"},{"b":"onChange","d":"function","e":"(e) => setSearch(e.value as FilterKey)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"value","d":"expression","e":"pageSize.toString()"},{"b":"label","d":"string","e":"Page Size"},{"b":"name","d":"string","e":"page size"},{"b":"width","d":"string","e":"125px"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"name","d":"string","e":"attribute"},{"b":"value","d":"variable","e":"attribute"},{"b":"onChange","d":"function","e":"(event) => setAttribute(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"name","d":"string","e":"comparison"},{"b":"value","d":"variable","e":"operator"},{"b":"onChange","d":"function","e":"(event) => setOperator(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"maxHeight","d":"expression","e":"\"40vh\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"maxHeight","d":"expression","e":"\"30vh\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"key","d":"expression","e":"t.profile"},{"b":"name","d":"expression","e":"`artifactResources_${t.profile}`"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"`Version in Datadog Sub-Org (${t.profile}):`"},{"b":"value","d":"expression","e":"t.version || \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"name","d":"string","e":"artifactResource"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Latest Version:"},{"b":"value","d":"string","e":"artifactVersion"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"value","d":"expression","e":"value ?? \"preview\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"width","d":"string","e":"270px"},{"b":"data-qa","d":"string","e":"searchBySelect"},{"b":"name","d":"string","e":"searchBySelect"},{"b":"value","d":"variable","e":"searchByOption"},{"b":"onChange","d":"variable","e":"handleSearchByOptions"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..25bf17fc5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +18 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..f6fa44834 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":18} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..2f0dc4011 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"inlineLabel","count":2},{"name":"dataQa","count":2},{"name":"name","count":2},{"name":"label","count":2},{"name":"width","count":2},{"name":"multiple","count":2},{"name":"onChange","count":2},{"name":"value","count":2},{"name":"options","count":2},{"name":"itemComponent","count":2},{"name":"itemMappingCallback","count":2},{"name":"optionsLabelCallback","count":2},{"name":"getShowOptionDividerCallback","count":2},{"name":"groupByCallback","count":2},{"name":"isOptionEqualToValueCallback","count":2},{"name":"fetchOptionsCallback","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..92ab4e2d8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..46bc3ace2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"filterBy"},{"b":"name","d":"string","e":"filterBy"},{"b":"label","d":"string","e":"Filter By"},{"b":"width","d":"string","e":"500px"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as Filter[]);\n\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"currentFilters"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFiltersCallback"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"filterBy"},{"b":"name","d":"string","e":"filterBy"},{"b":"label","d":"string","e":"Filter By"},{"b":"width","d":"string","e":"500px"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as { name: string; value: string }[]);\n\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"currentFilters"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFiltersCallback"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..45eb58a11 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..755e21fbd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":2},{"name":"supplementalText","count":2},{"name":"value","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..749d676f9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..be9397825 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"expression","e":"createBizOrganization.orgDetails.EnterpriseAcc"},{"b":"supplementalText","d":"expression","e":"createBizOrganization.orgDetails.defaultAcc"},{"b":"value","d":"string","e":"enterprise"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"name","d":"expression","e":"item.id ?? \"\""},{"b":"supplementalText","d":"string","e":"Current Version"},{"b":"value","d":"expression","e":"connectorVersion ?? \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..d3d8a3121 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/commonProps.json new file mode 100644 index 000000000..1bb59700e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/commonProps.json @@ -0,0 +1 @@ +[{"name":"sidePanelWidth","count":2},{"name":"showSidePanel","count":2},{"name":"sidePanelContent","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/files.json new file mode 100644 index 000000000..5a52f777e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/instances.json new file mode 100644 index 000000000..0de33195c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","c":[{"b":"sidePanelWidth","d":"number","e":"500"},{"b":"showSidePanel","d":"boolean","e":"true"},{"b":"sidePanelContent","d":"jsx","e":""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx","c":[{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"showSidePanel","d":"expression","e":"!!selectedRowId"},{"b":"sidePanelContent","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/usagesByMfe.json new file mode 100644 index 000000000..45eb58a11 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceSidePanelLayout/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/commonProps.json new file mode 100644 index 000000000..307d66b61 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"direction","count":8},{"name":"spacing","count":5},{"name":"alignItems","count":3},{"name":"my","count":1},{"name":"data-testid","count":1},{"name":"justifyContent","count":1},{"name":"mb","count":1},{"name":"gap","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/files.json new file mode 100644 index 000000000..c300ef749 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/instances.json new file mode 100644 index 000000000..082ebaaa0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"1.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"my","d":"number","e":"1.5"},{"b":"spacing","d":"number","e":"1.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"data-testid","d":"string","e":"filter-by"},{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"space-between"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"gap","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"spacing","d":"number","e":"1"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/totalUsages.json new file mode 100644 index 000000000..3cacc0b93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..82432de1f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/commonProps.json new file mode 100644 index 000000000..4cdab182f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":8},{"name":"required","count":4},{"name":"bold","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/files.json new file mode 100644 index 000000000..88f4c4b3f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/instances.json new file mode 100644 index 000000000..75c3e142e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"id","d":"string","e":"metadata"},{"b":"bold","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"bold","d":"variable","e":"bold"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"bold","d":"boolean","e":"true"},{"b":"id","d":"string","e":"currentDatacenterIdField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"bold","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"id","d":"string","e":"sourceDatacenterIdField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"id","d":"variable","e":"id"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/usagesByMfe.json new file mode 100644 index 000000000..492d2a8ae --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceStackLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/commonProps.json new file mode 100644 index 000000000..d2afa6833 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/commonProps.json @@ -0,0 +1 @@ +[{"name":"columns","count":34},{"name":"rows","count":34},{"name":"selectionType","count":34},{"name":"sortCallback","count":34},{"name":"selectionChangedCallback","count":19},{"name":"renderCustomRowCells","count":18},{"name":"loading","count":15},{"name":"renderCustomRowActionItem","count":10},{"name":"hasColumnHiding","count":8},{"name":"displayedColumnsChangedCallback","count":8},{"name":"minHeight","count":8},{"name":"emptyStateMessage","count":6},{"name":"selectedRowIds","count":5},{"name":"rowActionMenuItems","count":5},{"name":"renderCustomEmptyState","count":4},{"name":"loadingMessage","count":4},{"name":"maxHeight","count":3},{"name":"showEmptyState","count":2},{"name":"sortedColumn","count":2},{"name":"dataQa","count":2},{"name":"independentRowHighlight","count":2},{"name":"data-qa","count":1},{"name":"disabledRowIds","count":1},{"name":"displayedColumns","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/files.json new file mode 100644 index 000000000..821c19d81 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/instances.json new file mode 100644 index 000000000..2d796798b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"rows","d":"variable","e":"filteredProds"},{"b":"selectionType","d":"expression","e":"readOnlyProducts ? SELECTION_TYPE.NONE : SELECTION_TYPE.MULTI"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomEmptyState","d":"variable","e":"customEmptyStateView"},{"b":"data-qa","d":"expression","e":"`subscription-products-table`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"(sort) => {\n\t\t\t\t\t\t\tsetConnectorQuery(\n\t\t\t\t\t\t\t\tqueryBuilder({ orgId, pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}"},{"b":"rows","d":"variable","e":"connectors"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)"},{"b":"rows","d":"variable","e":"monitoringJobs"},{"b":"columns","d":"expression","e":"columns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"loading","d":"variable","e":"loadingJobs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)"},{"b":"rows","d":"variable","e":"orgDetails"},{"b":"columns","d":"expression","e":"columns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"loading","d":"variable","e":"loadingOrgs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"sortCallback","d":"function","e":"() => {}"},{"b":"rows","d":"variable","e":"jobs"},{"b":"loading","d":"variable","e":"jobsLoading"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"columns","d":"variable","e":"memoizedColumns"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","c":[{"b":"columns","d":"expression","e":"getColumns()"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"noop"},{"b":"loadingMessage","d":"variable","e":"customErrorMessage"},{"b":"emptyStateMessage","d":"variable","e":"customErrorMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"emptyStateMessage","d":"string","e":"An error has occurred retrieving the upgrade logs. Contact @sc-launch-pad for support."},{"b":"loading","d":"expression","e":"loading && rows.length === 0"},{"b":"loadingMessage","d":"string","e":"Loading upgrade logs..."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"emptyStateMessage","d":"string","e":"An error has occurred triggering the Post-Upgrade Checks. Contact @sc-launch-pad for support."},{"b":"loading","d":"variable","e":"loading"},{"b":"loadingMessage","d":"string","e":"Loading Post-Upgrade Check results..."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"emptyStateMessage","d":"string","e":"An error has occurred triggering the Pre-Upgrade Checks. Contact @sc-launch-pad for support."},{"b":"loading","d":"variable","e":"loading"},{"b":"loadingMessage","d":"string","e":"Loading Pre-Upgrade Check results..."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"tableCols"},{"b":"loading","d":"variable","e":"plansLoading"},{"b":"selectedRowIds","d":"array","e":"[rowId]"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"selectionChangedCallback","d":"function","e":"(rows) => setRowId(rows.map((row) => row.id)[0])"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"emptyStateMessage","d":"string","e":"No services returned."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"maxHeight","d":"string","e":"75vh"},{"b":"columns","d":"variable","e":"tableCols"},{"b":"loading","d":"variable","e":"runsLoading"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"showEmptyState","d":"expression","e":"tableRows.length === 0 && !runsLoading"},{"b":"selectionChangedCallback","d":"function","e":"(run) => history.push(`/automatic-upgrades/run/${run[0].id}`)"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\ttitle=\"No scheduled upgrade runs\"\n\t\t\t\t\t\t\t\t\tdetails=\"No upgrade runs returned. Open the create modal to schedule based off an existing Plan.\"\n\t\t\t\t\t\t\t\t\tactions={[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"maxHeight","d":"string","e":"75vh"},{"b":"loading","d":"expression","e":"loading && !services"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"columns","d":"variable","e":"tableCols"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","c":[{"b":"rows","d":"variable","e":"processOrganizationsList"},{"b":"columns","d":"expression","e":"hasSAPAccount ? columnsWithTenantIds : columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectionChangedCallback","d":"variable","e":"onRowSelected"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"columns","d":"variable","e":"columns"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"},{"b":"emptyStateMessage","d":"expression","e":"orgLimitsLoading ? \"Loading data...\" : \"No data to show\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"columns","d":"variable","e":"columns"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","c":[{"b":"rows","d":"variable","e":"datacCentersRowData"},{"b":"columns","d":"variable","e":"dataCenterTableColumns"},{"b":"sortCallback","d":"function","e":"()=>\"\""},{"b":"selectionChangedCallback","d":"function","e":"()=>\"\""},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"showEmptyState","d":"variable","e":"showEmptyState"},{"b":"rows","d":"expression","e":"showEmptyState ? [] : tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"function","e":"(columm) => handleSort(columm, drawdownData)"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"dataQa","d":"string","e":"drawdownUsageTable"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"columns","d":"variable","e":"serviceColumns"},{"b":"rows","d":"variable","e":"serviceRows"},{"b":"selectedRowIds","d":"array","e":"[]"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"},{"b":"dataQa","d":"string","e":"ServiceMonitoringSettingsTable"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"columns","d":"variable","e":"ddIntegrationColumns"},{"b":"rows","d":"variable","e":"ddIntegrationRows"},{"b":"sortCallback","d":"function","e":"() => {}"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"minHeight","d":"string","e":"fit-content"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"columns","d":"variable","e":"facetsListColumns"},{"b":"rows","d":"variable","e":"facetsListRows"},{"b":"sortCallback","d":"function","e":"() => {}"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"minHeight","d":"string","e":"fit-content"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"columns","d":"variable","e":"toggleOverrideColumns"},{"b":"rows","d":"expression","e":"toggleOverridesResponse.data.map((override) => ({\n\t\t\t\t\t\t\t\t\t\t\t...override,\n\t\t\t\t\t\t\t\t\t\t\tid: override.orgId // Use orgId as the id property\n\t\t\t\t\t\t\t\t\t\t}))"},{"b":"renderCustomRowCells","d":"variable","e":"renderToggleOverrideRowCells"},{"b":"loading","d":"variable","e":"isLoadingOverrides"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"function","e":"() => undefined"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelection"},{"b":"sortCallback","d":"variable","e":"sortFn"},{"b":"selectedRowIds","d":"expression","e":"selectedRowId ? [selectedRowId] : []"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"columns","d":"variable","e":"tableCols"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"rows","d":"expression","e":"emas?.data ?? []"},{"b":"renderCustomRowCells","d":"function","e":"(row) => renderRowCells(row, evmrId)"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"loading","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"disabledRowIds","d":"variable","e":"disabledRowIds"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"loading","d":"variable","e":"managementAgentsIsLoading"},{"b":"renderCustomRowCells","d":"function","e":"(rows) => renderRowCells(rows, latestImageTag, evmrId, cloudManagedType)"},{"b":"rows","d":"expression","e":"rows ?? []"},{"b":"selectedRowIds","d":"variable","e":"selectedRows"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"function","e":"() => undefined"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"paginatedRows"},{"b":"columns","d":"variable","e":"columnsDef"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"},{"b":"loading","d":"variable","e":"loadingServicePackages"},{"b":"maxHeight","d":"string","e":"calc(100vh - 17.25rem)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"columns","d":"variable","e":"COLUMNS"},{"b":"rows","d":"variable","e":"rows"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"columns","d":"variable","e":"displayedColumns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"columnSelectionHandler"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.noResults}\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.checkFilters}\n\t\t\t\t\t\t\t setClearFiltersFlag(true)}>{organizationStrings.table.emptyState.clearFilters}\n\t\t\t\t\t\t\n\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"selectionChangedCallback","d":"variable","e":"handleSelectionChangedCallback"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columnsDef"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"(sort) => {\n\t\t\t\t\t\t\t\tsetBrokerQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}"},{"b":"rows","d":"expression","e":"brokerCompatibility?.data ?? []"},{"b":"columns","d":"expression","e":"brokerCompatibilityColumns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"rowActionMenuItems","d":"variable","e":"brokerCompatibilityActionMenuItems"},{"b":"loading","d":"variable","e":"brokerCompatibilityIsLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"(sort) => {\n\t\t\t\t\t\t\t\tsetHelmChartQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}"},{"b":"rows","d":"expression","e":"helmChartCompatibility?.data ?? []"},{"b":"columns","d":"expression","e":"helmChartCompatibilityColumns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"rowActionMenuItems","d":"variable","e":"helmChartCompatibilityActionMenuItems"},{"b":"loading","d":"variable","e":"helmChartCompatibilityIsLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/totalUsages.json new file mode 100644 index 000000000..3e932fe8f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/totalUsages.json @@ -0,0 +1 @@ +34 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/usagesByMfe.json new file mode 100644 index 000000000..ef5e00ea7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTable/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":34} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/commonProps.json new file mode 100644 index 000000000..7e22ab8a4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"tabs","count":6},{"name":"activeTabValue","count":6},{"name":"onTabClick","count":6},{"name":"size","count":4},{"name":"variant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/files.json new file mode 100644 index 000000000..bd51944b2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/instances.json new file mode 100644 index 000000000..e06655a6b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab as MonitoringTabs)"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"tabs","d":"variable","e":"wanTuningFeaturesTabs"},{"b":"activeTabValue","d":"variable","e":"activeTabFeature"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTabFeature(tab as WanTuningFeatures)"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab)"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(value) => setActiveTab(value as EMA_TYPES)"},{"b":"size","d":"string","e":"lg"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab)"},{"b":"size","d":"string","e":"md"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..f2de145f1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/commonProps.json new file mode 100644 index 000000000..fb1af249a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":6},{"name":"fillColor","count":6},{"name":"labelColor","count":6},{"name":"variant","count":2},{"name":"clickable","count":2},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/files.json new file mode 100644 index 000000000..3b004116b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/instances.json new file mode 100644 index 000000000..e813c7c9d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"label","d":"expression","e":"`${row.daemonSetStatus.desired}/${row.daemonSetStatus.currentScheduled}/${row.daemonSetStatus.ready}/${row.daemonSetStatus.upToDate}/${row.daemonSetStatus.available}`"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"(allEleInArrayAreSame(Object.values(row.daemonSetStatus))) ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"(allEleInArrayAreSame(Object.values(row.daemonSetStatus)))? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`podStatus-${index}`"},{"b":"label","d":"expression","e":"row.podStatus"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"label","d":"expression","e":"\"ENABLED\""},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"label","d":"expression","e":"\"DISABLED\""},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"TaskStatus.COMPLETED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"TaskStatus.FAILED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/usagesByMfe.json new file mode 100644 index 000000000..f2de145f1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTag/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/commonProps.json new file mode 100644 index 000000000..002a7a902 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":1},{"name":"name","count":1},{"name":"dataQa","count":1},{"name":"value","count":1},{"name":"onChange","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/files.json new file mode 100644 index 000000000..f8445f294 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/instances.json new file mode 100644 index 000000000..fe3e9e5dd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/commonProps.json new file mode 100644 index 000000000..131021a8d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":36},{"name":"onChange","count":31},{"name":"value","count":29},{"name":"dataQa","count":27},{"name":"width","count":17},{"name":"label","count":16},{"name":"hasErrors","count":12},{"name":"disabled","count":12},{"name":"helperText","count":10},{"name":"title","count":8},{"name":"placeholder","count":6},{"name":"readOnly","count":5},{"name":"required","count":4},{"name":"inlineLabel","count":4},{"name":"endAdornment","count":3},{"name":"autoFocus","count":3},{"name":"size","count":2},{"name":"id","count":2},{"name":"customIcon","count":2},{"name":"type","count":1},{"name":"hasWarnings","count":1},{"name":"onBlur","count":1},{"name":"data-qa","count":1},{"name":"fullWidth","count":1},{"name":"maxLength","count":1},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/files.json new file mode 100644 index 000000000..36bd5e500 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/instances.json new file mode 100644 index 000000000..e696deeb6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"readOnly","d":"expression","e":"readOnlyProducts || isFieldReadOnly"},{"b":"type","d":"string","e":"number"},{"b":"size","d":"number","e":"5"},{"b":"name","d":"expression","e":"`countField${key}`"},{"b":"value","d":"expression","e":"prod.count !== 0 ? prod.count : undefined"},{"b":"onChange","d":"function","e":"(e) => handleCountSet(key, parseInt(e.value))"},{"b":"width","d":"expression","e":"!(readOnlyProducts || isFieldReadOnly) ? \"100%\" : \"auto\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"id","d":"string","e":"quantityTextfieldId"},{"b":"name","d":"string","e":"quantityTextfield"},{"b":"onChange","d":"function","e":"({ value }) => validateQuantity(value)"},{"b":"value","d":"variable","e":"prodQuantityValue"},{"b":"width","d":"string","e":"100%"},{"b":"dataQa","d":"string","e":"quantityTextfieldQa"},{"b":"hasErrors","d":"expression","e":"productDrawdown.inputError"},{"b":"helperText","d":"expression","e":"prodQuantityErrors[0]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"name","d":"string","e":"domainNameFilter"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"readOnly","d":"variable","e":"readOnlyProducts"},{"b":"dataQa","d":"string","e":"filterDomainName"},{"b":"placeholder","d":"expression","e":"i18nStrings.filterByNameLabel"},{"b":"size","d":"number","e":"155"},{"b":"width","d":"string","e":"100%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t\tnameFilter ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"hasErrors","d":"expression","e":"(orgDetails[\"orgDisplayName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0"},{"b":"helperText","d":"expression","e":"orgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0]"},{"b":"name","d":"string","e":"orgDisplayName"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.orgDisplayName"},{"b":"disabled","d":"expression","e":"!!validationErrors"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"hasErrors","d":"expression","e":"(orgDetails[\"orgId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors).length > 0"},{"b":"helperText","d":"expression","e":"validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\t\t createBizOrganization.orgDetails.orgIdWarning"},{"b":"name","d":"string","e":"orgId"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.orgId"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"hasWarnings","d":"expression","e":"!validationErrors"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"accountName"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.accountName"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"accountName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.validationErrors.concat(orgDetails[\"accountName\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0"},{"b":"helperText","d":"expression","e":"orgDetails[\"accountName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0] || createBizOrganization.orgDetails.accountNameHelperText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"accountId"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.accountId"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"accountId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0"},{"b":"helperText","d":"expression","e":"orgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\tcreateBizOrganization.orgDetails.accountIdHelperText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"costCenter"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"value","d":"expression","e":"orgDetails[\"costCenter\"].value"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.costCenter"},{"b":"dataQa","d":"string","e":"costCenterInput"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors().length > 0"},{"b":"helperText","d":"expression","e":"((orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors()[0]) || \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"helperText","d":"expression","e":"currentEmailEntry.length > 0 && !isEmailValid ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.errorHelperText}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : emailList.length === 0 && !isSaveAllowed ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.requiredFieldError}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\tcreateBizOrganization.accountAdmins.emailsPlaceholder\n\t\t\t\t\t\t\t\t)"},{"b":"hasErrors","d":"expression","e":"(currentEmailEntry.length > 0 && !isEmailValid) || (emailList.length === 0 && !isSaveAllowed)"},{"b":"name","d":"string","e":"accountAdminEmail"},{"b":"onChange","d":"function","e":"({ value }) => setCurrentEmailEntry(value)"},{"b":"onBlur","d":"function","e":"() => { setIsEmailValid(isEmail(currentEmailEntry)) }"},{"b":"value","d":"variable","e":"currentEmailEntry"},{"b":"width","d":"string","e":"100%"},{"b":"data-qa","d":"string","e":"accountAdminTextField"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"autoFocus","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"searchByOrgId"},{"b":"name","d":"string","e":"searchByOrgId"},{"b":"label","d":"string","e":"Search By Organization ID"},{"b":"width","d":"string","e":"500px"},{"b":"value","d":"variable","e":"orgId"},{"b":"onChange","d":"function","e":"(event) => (!loadingJobs ? setOrgId(event.value) : undefined)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"autoFocus","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"searchByOrgId"},{"b":"name","d":"string","e":"searchByOrgId"},{"b":"label","d":"string","e":"Search By Organization ID"},{"b":"width","d":"string","e":"500px"},{"b":"value","d":"variable","e":"orgId"},{"b":"onChange","d":"function","e":"(event) => (!loadingOrgs ? setOrgId(event.value) : undefined)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"disabled","d":"expression","e":"search === \"none\""},{"b":"label","d":"string","e":"Search"},{"b":"name","d":"string","e":"search"},{"b":"width","d":"string","e":"375px"},{"b":"value","d":"expression","e":"filters[search]"},{"b":"onChange","d":"function","e":"(event) => setFilters({ ...filters, [search]: event.value })"},{"b":"endAdornment","d":"array","e":"[]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"searchFor"},{"b":"onChange","d":"variable","e":"searchBoxChangeHandler"},{"b":"dataQa","d":"string","e":"search-for-textbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"dataQa","d":"string","e":"plan-name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"dataQa","d":"string","e":"plan-description"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"name","d":"string","e":"value"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => setValue(event?.value)"},{"b":"placeholder","d":"expression","e":"operator === \"=in=\" || operator === \"=out=\" ? \"value1,value2,value3\" : \"Enter value\""},{"b":"fullWidth","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"dataQa","d":"string","e":"run-description"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[{"b":"customIcon","d":"object","e":"{\n\t\t\t\t\t\ticon: ,\n\t\t\t\t\t\tposition: \"end\"\n\t\t\t\t\t}"},{"b":"width","d":"string","e":"50%"},{"b":"label","d":"expression","e":"customers.searchAggregationName"},{"b":"name","d":"string","e":"searchCustomerTextbox"},{"b":"onChange","d":"variable","e":"handleSearchTextSearch"},{"b":"title","d":"expression","e":"customers.searchAggregationName"},{"b":"dataQa","d":"string","e":"searchCustomerTextbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"name","d":"string","e":"SolaceDatadogAgentVersion"},{"b":"placeholder","d":"string","e":"Enter to override Production Datadog Agent Version"},{"b":"helperText","d":"string","e":"Overrides solace-datadog-agent image version, default: latest"},{"b":"onChange","d":"function","e":"(e) => setValue(\"SolaceDatadogAgentVersion\", e.value)"},{"b":"dataQa","d":"string","e":"SolaceDatadogAgentVersionTextBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"orgIdField"},{"b":"label","d":"string","e":"Organization Id"},{"b":"value","d":"variable","e":"orgId"},{"b":"dataQa","d":"string","e":"orgIdField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"disabled","d":"boolean","e":"true"},{"b":"name","d":"string","e":"apiKeyField"},{"b":"label","d":"string","e":"API Key"},{"b":"value","d":"expression","e":"ddOrgData?.apiKey ?? \"\""},{"b":"dataQa","d":"string","e":"apiKeyTextField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"orgNameField"},{"b":"label","d":"string","e":"Organization Display Name"},{"b":"value","d":"expression","e":"ddOrgData?.orgPublicId ?? \"\""},{"b":"dataQa","d":"string","e":"orgNameField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"disabled","d":"boolean","e":"true"},{"b":"name","d":"string","e":"appKeyField"},{"b":"label","d":"string","e":"APP Key"},{"b":"value","d":"expression","e":"ddOrgData?.appKey ?? \"\""},{"b":"dataQa","d":"string","e":"appKeyTextField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"ddSubOrgName"},{"b":"label","d":"string","e":"Datadog Sub-Org Name"},{"b":"value","d":"variable","e":"subOrgName"},{"b":"placeholder","d":"string","e":"Enter Datadog Sub-Org name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\thandleSubOrgNameInput(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"ddSubOrgNameTextBox"},{"b":"width","d":"string","e":"50%"},{"b":"maxLength","d":"number","e":"32"},{"b":"hasErrors","d":"variable","e":"subOrgNameInvalid"},{"b":"helperText","d":"expression","e":"subOrgNameInvalid\n\t\t\t\t\t\t\t\t\t\t? \"Datadog Sub-Org Name does not start with 'PI - ' or 'RMMS - ' , change the name and retry\"\n\t\t\t\t\t\t\t\t\t\t: \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"alertHandles"},{"b":"label","d":"string","e":"Alert Handles"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"resource.alertHandles ?? \"\""},{"b":"dataQa","d":"expression","e":"`${resource.profile}_alertHandlesTextBox`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"warningHandles"},{"b":"label","d":"string","e":"Warning Handles"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"resource.warningHandles ?? \"\""},{"b":"dataQa","d":"expression","e":"`${resource.profile}_warningHandlesTextBox`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"recoveryHandles"},{"b":"label","d":"string","e":"Recovery Handles"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"resource.recoveryHandles ?? \"\""},{"b":"dataQa","d":"expression","e":"`${resource.profile}_recoveryHandlesTextBox`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"inviteUsersInput"},{"b":"label","d":"string","e":"Provide a list of comma-separated solace.com email addresses"},{"b":"value","d":"variable","e":"adminUsersList"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tsetAdminUsersList(e.value);\n\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"inviteUsersTextBox"},{"b":"width","d":"string","e":"60%"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"dataQa","d":"string","e":"search"},{"b":"name","d":"string","e":"search"},{"b":"placeholder","d":"string","e":"Search by event broker version"},{"b":"width","d":"string","e":"400px"},{"b":"value","d":"variable","e":"search"},{"b":"onChange","d":"function","e":"(input) => setSearch(input.value)"},{"b":"customIcon","d":"object","e":"{\n\t\t\t\t\t\t\t\ticon: search ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: search ? handleClearSearch : undefined\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[{"b":"name","d":"string","e":"confirmationBox"},{"b":"value","d":"variable","e":"confirmationText"},{"b":"dataQa","d":"string","e":"confirmationBox"},{"b":"onChange","d":"function","e":"({ value }) => setConfirmationText(value)"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\tPlease type DELETE to confirm.\n\t\t\t\t\t\t\t"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"id","d":"string","e":"orgSearchBox"},{"b":"name","d":"string","e":"orgSearchBox"},{"b":"dataQa","d":"string","e":"orgSearchBox"},{"b":"width","d":"string","e":"400px"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"function","e":"(event) => handleSearchField(event.value)"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t handleSearchField(EMPTY_STRING)}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"datacenterId"},{"b":"name","d":"string","e":"datacenterId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"placeholder","d":"string","e":"Type a datacenter ID ..."},{"b":"name","d":"string","e":"sourceDatacenterId"},{"b":"dataQa","d":"string","e":"sourceDatacenterId"},{"b":"value","d":"variable","e":"selectedDatacenterId"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"onChange","d":"function","e":"({ value }) => {\n\t\t\t\t\t\t\tsetSelectedDatacenterId(value);\n\t\t\t\t\t\t\treset();\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Image Tag"},{"b":"name","d":"string","e":"imageTag"},{"b":"title","d":"string","e":"Image Tag"},{"b":"value","d":"variable","e":"imageTag"},{"b":"onChange","d":"function","e":"(event) => dispatch(setImageTag(event.value.trim()))"},{"b":"dataQa","d":"string","e":"imageTag"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Helm Chart Version"},{"b":"name","d":"string","e":"helmChartVersion"},{"b":"title","d":"string","e":"Helm Chart Version"},{"b":"value","d":"variable","e":"helmChartVersion"},{"b":"onChange","d":"function","e":"(event) => dispatch(setHelmChartVersion(event.value.trim()))"},{"b":"dataQa","d":"string","e":"helmChartVersion"},{"b":"required","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/totalUsages.json new file mode 100644 index 000000000..dce6588ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/totalUsages.json @@ -0,0 +1 @@ +36 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/usagesByMfe.json new file mode 100644 index 000000000..20a3ab04b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTextField/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":36} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/commonProps.json new file mode 100644 index 000000000..f8e7d46a4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":3},{"name":"open","count":3},{"name":"onClose","count":3},{"name":"severity","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/files.json new file mode 100644 index 000000000..9d8186cdc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/instances.json new file mode 100644 index 000000000..30a42e9c9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"severity","d":"string","e":"error"},{"b":"message","d":"string","e":"Rerun Monitoring Job Failed"},{"b":"open","d":"variable","e":"showRerunAutomationErrorToast"},{"b":"onClose","d":"function","e":"() => dispatch(hideRerunAutomationErrorToast())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"open","d":"variable","e":"showToast"},{"b":"onClose","d":"function","e":"() => setShowToast(false)"},{"b":"message","d":"variable","e":"toastMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"severity","d":"string","e":"error"},{"b":"open","d":"variable","e":"showErrorToast"},{"b":"onClose","d":"function","e":"() => dispatch(closeErrorToast())"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/usagesByMfe.json new file mode 100644 index 000000000..dcce81e79 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToasts/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/commonProps.json new file mode 100644 index 000000000..4d8a29a75 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":3},{"name":"onChange","count":3},{"name":"isOn","count":2},{"name":"...","count":2},{"name":"label","count":2},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/files.json new file mode 100644 index 000000000..511080e6c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/instances.json new file mode 100644 index 000000000..654e503e7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"profileToggle"},{"b":"isOn","d":"expression","e":"resource.enabled"},{"b":"onChange","d":"function","e":"() => handleResourceToggle(resource.profile)"},{"b":"dataQa","d":"expression","e":"`${resource.profile}_toggle`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"isOn","d":"expression","e":"rest.value"},{"b":"name","d":"string","e":"datacenterVisibility"},{"b":"onChange","d":"function","e":"(event) => rest.onChange(event.value)"},{"b":"label","d":"string","e":"Visible"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"name","d":"string","e":"datacenterAvailability"},{"b":"onChange","d":"function","e":"(event) => rest.onChange(event.value)"},{"b":"label","d":"string","e":"Available"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/usagesByMfe.json new file mode 100644 index 000000000..dcce81e79 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggle/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/commonProps.json new file mode 100644 index 000000000..7177af7a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":1},{"name":"activeValue","count":1},{"name":"onChange","count":1},{"name":"options","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/files.json new file mode 100644 index 000000000..b22e91744 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/instances.json new file mode 100644 index 000000000..0c263d8c2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"dataQa","d":"string","e":"filterTriggerType"},{"b":"activeValue","d":"variable","e":"activeValue"},{"b":"onChange","d":"variable","e":"handleFilterByTriggerType"},{"b":"options","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"All\",\n\t\t\t\t\t\t\t\t\tvalue: \"all\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Customer\",\n\t\t\t\t\t\t\t\t\tvalue: \"customer\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"System\",\n\t\t\t\t\t\t\t\t\tvalue: \"system\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceToggleButtonGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..af5790bf2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":82},{"name":"variant","count":67},{"name":"placement","count":6},{"name":"key","count":6},{"name":"maxWidth","count":5},{"name":"dataQa","count":2},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/files.json new file mode 100644 index 000000000..862e64236 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/instances.json new file mode 100644 index 000000000..aeb375f8b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"title"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"path.title"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"path.title"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"version"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"string","e":"N/A"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"string","e":"N/A"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.deploymentId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.infrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.requestAction"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.deploymentStatus"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.updatedOn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"variable","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"typedRow.org_id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.organizationId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"expression","e":"datadogSubOrgAttributes().variant"},{"b":"title","d":"expression","e":"datadogSubOrgAttributes().tooltip"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.monitoring"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"datadogArtifactAttributes().tooltip"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"expression","e":"row?.aup === \"N/A\" ? \"html\" : \"overflow\""},{"b":"title","d":"expression","e":"row?.aup === \"N/A\" ? \"Not Applicable\" : row?.aup"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"row.distributedTracingEnabled == undefined ? \"Use the refresh button to fetch this info\" : \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"time"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.[key]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","c":[{"b":"title","d":"variable","e":"displayName"},{"b":"placement","d":"string","e":"top"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"title","d":"expression","e":"secondary.toString()"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"String(row[key])"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","c":[{"b":"title","d":"variable","e":"tenantId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"title","d":"variable","e":"customerId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"title","d":"variable","e":"accountName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","c":[{"b":"dataQa","d":"string","e":"serviceNameTooltip"},{"b":"title","d":"expression","e":"name.name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","c":[{"b":"title","d":"expression","e":"`${item}`"},{"b":"key","d":"variable","e":"key"},{"b":"data-qa","d":"expression","e":"`tooltip${key}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"title","d":"expression","e":"organizationDetails.notificationContacts.tooltips.copyEmail"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t{hiddenEmails.map((email, index) => (\n\t\t\t\t\t\t\t\t{email}\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"textValue"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"variant","d":"string","e":"html"},{"b":"dataQa","d":"string","e":"pcuCalculationTooltip"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`podName-${index}`"},{"b":"title","d":"expression","e":"row.podName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`attachedNode-${index}`"},{"b":"title","d":"expression","e":"row.attachedNode"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`pod-${index}-${idx}`"},{"b":"title","d":"variable","e":"item"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`messageBrokerPod-${index}`"},{"b":"title","d":"variable","e":"messageBrokerPod"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`events-${index}`"},{"b":"title","d":"expression","e":"row.events?.join()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"title","d":"variable","e":"tooltip"},{"b":"variant","d":"string","e":"html"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"variable","e":"configRequest"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"variable","e":"configRequest"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.infrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.monitoringMode"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceClassId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.servicePackageId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.solaceDatadogAgentImage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.solaceDatadogAgentVersion"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"`TLS verification skipped. This creates an insecure connection to event brokers with custom certificates.`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"`Latest Image Tag: ${latestVersion}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"popoverContent(row as ManagedEventManagementAgent)"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"title","d":"variable","e":"value"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"row?.released ? \"Released\" : \"Not Released\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"expression","e":"value ? \"text\" : \"overflow\""},{"b":"title","d":"expression","e":"value ? time : \"Not Released\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.[key]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.[key]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"title","d":"variable","e":"label"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"txt"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"txt"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"txt"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"dateStr"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"expression","e":"`Expired ${-daysUntilExpiry} day${-daysUntilExpiry !== 1 ? 's' : ''} ago`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"expression","e":"`Expiring in ${daysUntilExpiry} day${daysUntilExpiry !== 1 ? 's' : ''}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.displayName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.provider.toUpperCase()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serverCertificateId ?? \"Default Global\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.accessType"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"_.isEmpty(row?.cloudAgentVersion) ? \"Not Configured\" : row?.cloudAgentVersion"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.datacenterType"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.displayName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.datacenterId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.infrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.displayName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.tracingBackendType"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"title","d":"variable","e":"tooltip"},{"b":"variant","d":"string","e":"html"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..615be700b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +85 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..a65ce17ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":85} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/commonProps.json new file mode 100644 index 000000000..bcabf43ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":72},{"name":"sx","count":26},{"name":"mt","count":18},{"name":"data-qa","count":17},{"name":"fontWeight","count":14},{"name":"textAlign","count":5},{"name":"mb","count":5},{"name":"fontSize","count":4},{"name":"color","count":4},{"name":"paddingBottom","count":3},{"name":"...","count":3},{"name":"p","count":3},{"name":"gutterBottom","count":3},{"name":"paddingTop","count":2},{"name":"marginTop","count":2},{"name":"marginBottom","count":2},{"name":"marginLeft","count":2},{"name":"style","count":1},{"name":"paddingRight","count":1},{"name":"pr","count":1},{"name":"className","count":1},{"name":"px","count":1},{"name":"py","count":1},{"name":"mr","count":1},{"name":"pb","count":1},{"name":"ref","count":1},{"name":"noWrap","count":1},{"name":"title","count":1},{"name":"key","count":1},{"name":"paddingLeft","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/files.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/files.json new file mode 100644 index 000000000..a701ee833 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/instances.json new file mode 100644 index 000000000..70302c952 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeColumnQa"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"style","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeColumnQa"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeNameQa"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productHeaderQa"},{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"fontWeight","d":"number","e":"400"},{"b":"paddingRight","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeColumnQa"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeNameQa"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"sx","d":"object","e":"{ float: \"right\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"fontSize","d":"number","e":"16"},{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"data-qa","d":"string","e":"orgDetailHeaderQa"},{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"data-qa","d":"string","e":"accountHeaderQa"},{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"paddingBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"paddingBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"paddingBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productHeaderQa"},{"b":"variant","d":"string","e":"h3"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"fontSize","d":"expression","e":"\"14px\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"pr","d":"number","e":"0.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"className","d":"string","e":"label"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"mt","d":"number","e":"2"},{"b":"sx","d":"object","e":"{ color: theme.palette.grey[700] }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"mt","d":"number","e":"2"},{"b":"sx","d":"object","e":"{ color: theme.palette.grey[700], display: \"flex\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"mt","d":"expression","e":"theme.spacing(6)"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"mb","d":"expression","e":"theme.spacing(3)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[{"b":"...","d":"spread","e":"row.level === \"HIGH\" && { fontWeight: 900 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[{"b":"...","d":"spread","e":"row.result === \"Fail\" && { color: \"error\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[{"b":"...","d":"spread","e":"row.result === \"Fail\" && { color: \"error\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"sx","d":"object","e":"{ fontWeight: \"500\" }"},{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"px","d":"number","e":"2"},{"b":"py","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"mr","d":"number","e":"6"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"pb","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"p","d":"number","e":"1"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"data-qa","d":"string","e":"aggregationDetailsDescription"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ mb: 2 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ marginBottom: 2 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"14px\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"marginTop","d":"number","e":"2"},{"b":"marginBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"fontSize","d":"string","e":"24px"},{"b":"fontWeight","d":"string","e":"500"},{"b":"textAlign","d":"string","e":"right"},{"b":"data-qa","d":"string","e":"pcuCostValue"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[{"b":"data-qa","d":"string","e":"noSearchResultsToShow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"flex\", alignItems: \"center\" }"},{"b":"mb","d":"number","e":"2"},{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"16"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"sx","d":"object","e":"{ alignContent: \"right\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"color","d":"expression","e":"result.healthy ? \"success\" : \"error\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ paddingTop: theme.spacing(3.6) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\tpaddingTop: ddOrgData?.subOrgName ? theme.spacing(1) : theme.spacing(3.6),\n\t\t\t\t\t\t\t\twhiteSpace: \"nowrap\",\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\tflexDirection: \"column\"\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ whiteSpace: \"nowrap\" }"},{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"sx","d":"object","e":"{ paddingBottom: theme.spacing(3), paddingTop: theme.spacing(3) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: theme.spacing(1) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\tpaddingTop: theme.spacing(3.6),\n\t\t\t\t\t\t\t\t\t\t\tmarginLeft: theme.spacing(7),\n\t\t\t\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\t\t\t\tflexDirection: \"row\"\n\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ width: theme.spacing(10), marginRight: theme.spacing(4) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ width: theme.spacing(10), marginRight: theme.spacing(4.5) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ width: theme.spacing(10), marginRight: theme.spacing(2.5) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ marginRight: theme.spacing(4), width: theme.spacing(10) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ marginRight: theme.spacing(4.5), width: theme.spacing(10) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ marginRight: theme.spacing(2.5), width: theme.spacing(10) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"ref","d":"variable","e":"ref"},{"b":"variant","d":"string","e":"body1"},{"b":"noWrap","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{\n\t\t\t\tmaxWidth: \"100%\",\n\t\t\t\toverflow: \"hidden\",\n\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\twhiteSpace: \"nowrap\"\n\t\t\t}"},{"b":"title","d":"variable","e":"name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"sx","d":"object","e":"{ fontWeight: \"500\" }"},{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"no-features"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"loading-message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"no-results-message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontWeight","d":"string","e":"500"},{"b":"data-qa","d":"expression","e":"`state-group-${state.toLowerCase()}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"key","d":"variable","e":"type"},{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"expression","e":"`type-count-${state.toLowerCase()}-${type}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: theme.typography.caption, color: theme.palette.grey[700] }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"marginLeft","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"marginLeft","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"marginTop","d":"number","e":"1"},{"b":"marginBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"paddingLeft","d":"number","e":"3"},{"b":"paddingTop","d":"number","e":"3"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..cd004727f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +182 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..532fc0686 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":182} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/total_stats.json b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/total_stats.json new file mode 100644 index 000000000..eccc6ff9f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/maas-ops-react/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":182,"SolaceButton":99,"SolaceGrid":178,"SolaceTooltip":85,"SolaceLabel":2,"SolaceMessageBox":50,"SolaceConfirmationDialog":42,"SolaceTextField":36,"SolaceStack":12,"SolaceSelect":18,"SolaceCheckBox":17,"SolaceAccordion":11,"SolaceMenu":2,"SolaceTable":34,"SolaceAttributeBadge":13,"SolaceSelectAutocompleteItem":4,"SolaceSelectAutocomplete":2,"SolacePagination":15,"SolaceChip":13,"SolaceTabs":6,"SolaceCircularProgress":9,"SolaceToggle":3,"SolaceDetailMessage":10,"SolaceGridList":5,"SolaceRadio":3,"SolaceListItem":9,"SolaceSidePanelLayout":2,"SolaceTextArea":1,"SolacePageHeader":4,"SolaceCodeEditor":7,"SolaceList":5,"SolaceEnvironmentLabel":1,"SolaceBackDrop":7,"SolaceRadioGroup":1,"SolaceBreadcrumb":7,"SolaceErrorBox":4,"SolaceSearchAndFilter":2,"SolaceToggleButtonGroup":1,"SolaceTag":6,"SolaceStackLabel":8,"SolaceLearningBanner":7,"SolaceToasts":3,"SolaceDatePicker":3,"SolaceAttributeValuePairForm":1,"SolaceChipTextArea":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ops-ui/total_stats.json b/mrc-usage-report-data/per-application/maas-ops-ui/total_stats.json new file mode 100644 index 000000000..728ff474d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ops-ui/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":201,"SolaceButton":107,"SolaceGrid":178,"SolaceTooltip":87,"SolaceLabel":2,"SolaceMessageBox":50,"SolaceConfirmationDialog":43,"SolaceTextField":36,"SolaceStack":25,"SolaceSelect":20,"SolaceCheckBox":17,"SolaceAccordion":11,"SolaceMenu":3,"SolaceTable":36,"SolaceAttributeBadge":14,"SolaceSelectAutocompleteItem":5,"SolaceSelectAutocomplete":4,"SolacePagination":17,"SolaceChip":15,"SolaceTabs":7,"SolaceCircularProgress":10,"SolaceToggle":3,"SolaceDetailMessage":10,"SolaceGridList":7,"SolaceRadio":3,"SolaceListItem":9,"SolaceSidePanelLayout":2,"SolaceTextArea":1,"SolacePageHeader":5,"SolaceCodeEditor":7,"SolaceList":5,"SolaceEnvironmentLabel":1,"SolaceBackDrop":7,"SolaceRadioGroup":1,"SolaceBreadcrumb":7,"SolaceErrorBox":5,"SolaceSearchAndFilter":3,"SolaceToggleButtonGroup":1,"SolaceTag":6,"SolaceStackLabel":8,"SolaceLearningBanner":7,"SolaceToasts":4,"SolaceLinearProgress":1,"SolaceDatePicker":3,"SolaceAttributeValuePairForm":1,"SolaceChipTextArea":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/commonProps.json new file mode 100644 index 000000000..3858579f2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/commonProps.json @@ -0,0 +1 @@ +[{"name":"summary","count":52},{"name":"details","count":52},{"name":"expanded","count":52},{"name":"onChange","count":52},{"name":"dataQa","count":36},{"name":"border","count":24},{"name":"key","count":21},{"name":"backgroundColor","count":11},{"name":"hover","count":7},{"name":"indicatorVariant","count":5},{"name":"disablePadding","count":4},{"name":"id","count":2},{"name":"square","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/files.json new file mode 100644 index 000000000..613bbed2d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/instances.json new file mode 100644 index 000000000..d1f8abe53 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.noChange, null, null)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails(associatedEnvironmentList)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"string","e":"applicationsToDelete"},{"b":"expanded","d":"variable","e":"applicationsExpanded"},{"b":"onChange","d":"variable","e":"handleApplicationClick"},{"b":"summary","d":"expression","e":"renderEntitySummary(\"Application Domains\", appDomains.length)"},{"b":"details","d":"expression","e":"renderEntityDetails(appDomains)"},{"b":"dataQa","d":"string","e":"applicationsToDelete"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"string","e":"memsToDelete"},{"b":"expanded","d":"variable","e":"memsExpanded"},{"b":"onChange","d":"variable","e":"handleMEMClick"},{"b":"summary","d":"expression","e":"renderEntitySummary(\"Modeled Event Meshes\", mems.length)"},{"b":"details","d":"expression","e":"renderEntityDetails(mems)"},{"b":"dataQa","d":"string","e":"memsToDelete"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"string","e":"environmentsToDelete"},{"b":"expanded","d":"variable","e":"environmentsExpanded"},{"b":"onChange","d":"variable","e":"handleEnvironmentClick"},{"b":"summary","d":"expression","e":"renderEntitySummary(\"Environments\", environments.length)"},{"b":"details","d":"expression","e":"renderEntityDetails(environments)"},{"b":"dataQa","d":"string","e":"environmentsToDelete"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[{"b":"dataQa","d":"expression","e":"entityType ? `customAttributes-${entityType}-accordion` : null"},{"b":"hover","d":"boolean","e":"true"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t{`Custom Attributes (${count})`}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"details","d":"jsx","e":"<>\n\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t{errorMsg && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{errorMsg}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{!errorMsg && <>{customAttributeValueList}}\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEventVersionDetails"},{"b":"summary","d":"variable","e":"getEventDetailsTitle"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"summary","d":"variable","e":"getEntityDetailsTitle"},{"b":"details","d":"variable","e":"getEntityDetailsPanel"},{"b":"dataQa","d":"expression","e":"`${entityType}DetailsAccordion`"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"key","d":"expression","e":"eventApiProductVersion.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetail()"},{"b":"dataQa","d":"expression","e":"dataQa ?? `eap-${eventApiProductVersion.id}`"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"key","d":"expression","e":"item.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"variable","e":"accordionDetails"},{"b":"indicatorVariant","d":"expression","e":"indicatorVariant ?? null"},{"b":"dataQa","d":"expression","e":"dataQa ?? null"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"key","d":"expression","e":"item.environmentId"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetail()"},{"b":"dataQa","d":"expression","e":"dataQa ?? `messagingService-${item.environmentId}`"},{"b":"indicatorVariant","d":"expression","e":"environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? \"error\" : undefined"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx","c":[{"b":"summary","d":"jsx","e":"Appearance"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t{formMethods && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"entityAppearance"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"summary","d":"variable","e":"summary"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"isErrorDetailsExpanded"},{"b":"onChange","d":"function","e":"(event, expanded) => errorDetailsMessageExpandHandler(expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"summary","d":"variable","e":"summary"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"isErrorDetailsExpanded"},{"b":"onChange","d":"function","e":"(event, expanded) => errorDetailsMessageExpandHandler(expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"dataQa","d":"expression","e":"`newNodeAccordion-${brokerType.value}`"},{"b":"key","d":"expression","e":"brokerType.value"},{"b":"border","d":"boolean","e":"false"},{"b":"expanded","d":"expression","e":"dragNDropPanelExpansions[brokerType.value]"},{"b":"onChange","d":"function","e":"() =>\n\t\t\t\t\t\tsetDragNDropPanelExpansions((prev) => {\n\t\t\t\t\t\t\tconst newState = { ...prev };\n\n\t\t\t\t\t\t\tnewState[brokerType.value] = !prev[brokerType.value];\n\n\t\t\t\t\t\t\treturn newState;\n\t\t\t\t\t\t})"},{"b":"summary","d":"jsx","e":"{`${brokerType.label} Objects`}"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].application);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Application\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].event);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tShared Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"key","d":"expression","e":"`${consumer.name}-consumerAccordion`"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","c":[{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => handleExpandClick()"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"summary","d":"expression","e":"getAccordionSummary()"},{"b":"details","d":"expression","e":"getAccordionDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"summary","d":"expression","e":"getDomainAccordionSummary(domain)"},{"b":"details","d":"expression","e":"getDomainAccordionDetails(domain)"},{"b":"dataQa","d":"expression","e":"`domainAccordion-${domain.id}`"},{"b":"expanded","d":"expression","e":"expandedDomainMap[domain.id] === true"},{"b":"onChange","d":"function","e":"() => onAccordionChange(domain.id, expandedDomainMap)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","c":[{"b":"id","d":"expression","e":"\"importDomainValidationAccordion\""},{"b":"dataQa","d":"string","e":"importDomainValidationAccordion"},{"b":"summary","d":"expression","e":"customAttributeValidations?.validationMessage"},{"b":"details","d":"expression","e":"customAttributeValidations?.validations"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"border","d":"boolean","e":"false"},{"b":"square","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"summary","d":"expression","e":"`${topicDomain.length} affected Topic Domains`"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t{topicDomain.map((topicDomainEntry) => (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{duplicate && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tUsed in\n\t\t\t\t\t\t\t\t\t\t\t{topicDomainEntry?.applicationDomains?.map(({ name }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t\t\t\t{renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t
"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"summary","d":"jsx","e":"Conflicting Objects"},{"b":"details","d":"variable","e":"conflictingObjects"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"key","d":"expression","e":"`restDeliveryPointAccordion`"},{"b":"summary","d":"variable","e":"accordionSummary"},{"b":"details","d":"variable","e":"restConsumers"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"key","d":"expression","e":"`${configurationName}-${type}-${index}-requestHeader`"},{"b":"summary","d":"expression","e":"getRequestHeaderSummary(header, type, index)"},{"b":"details","d":"expression","e":"getRequestHeaderDetails(header, type, index)"},{"b":"expanded","d":"expression","e":"expandedHeaders[expandKey]"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\tsetExpandedHeaders((prev) => {\n\t\t\t\t\t\tprev[expandKey] = !prev[expandKey];\n\n\t\t\t\t\t\treturn { ...prev };\n\t\t\t\t\t});\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"summary","d":"variable","e":"queueBindingSummary"},{"b":"details","d":"variable","e":"queueBindingDetails"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"summary","d":"variable","e":"queueBindingSummary"},{"b":"details","d":"expression","e":"getQueueBindingDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"key","d":"expression","e":"request.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"variable","e":"accordionDetails"},{"b":"indicatorVariant","d":"expression","e":"indicatorVariant ?? null"},{"b":"dataQa","d":"expression","e":"dataQa ?? null"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"dataQa","d":"expression","e":"\"topicAddressHelp\""},{"b":"details","d":"jsx","e":""},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\tTips and Tricks for Topic Addresses\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"expandTopicAddressHelp"},{"b":"onChange","d":"function","e":"() => setExpandTopicAddressHelp(!expandTopicAddressHelp)"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"square","d":"boolean","e":"false"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"border","d":"boolean","e":"true"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleAccordianClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetail()"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"key","d":"expression","e":"`${application.applicationName}-events`"},{"b":"summary","d":"jsx","e":"{\"Published Events\"}"},{"b":"details","d":"expression","e":"getDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"expression","e":"application.applicationName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"key","d":"expression","e":"`${application.applicationName}-subscriptions`"},{"b":"summary","d":"jsx","e":"{\"Subscribed Events\"}"},{"b":"details","d":"expression","e":"getDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"expression","e":"application.applicationName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"key","d":"variable","e":"applicationDomainName"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t{messages.applicationDomain.label}\n\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t"},{"b":"details","d":"expression","e":"getDetails(applications)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"applicationDomainName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"jsx","e":""},{"b":"disablePadding","d":"boolean","e":"true"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"handleAccordionClick"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEventApiVersionDetails"},{"b":"summary","d":"expression","e":"getEventApiDetailsTitle(selectedEventApi)"},{"b":"details","d":"expression","e":"eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"variable","e":"onAccordionChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEventApiProductVersionDetails"},{"b":"summary","d":"expression","e":"getEventApiProductDetailsTitle(selectedEventApiProduct)"},{"b":"details","d":"expression","e":"eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"variable","e":"onAccordionChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"dataQa","d":"string","e":"catalogApplicationVersionDetails"},{"b":"summary","d":"expression","e":"getApplicationDetailsTitle()"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEnumVersionDetails"},{"b":"summary","d":"variable","e":"getEnumDetailsTitle"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"dataQa","d":"string","e":"catalogSchemaVersionDetails"},{"b":"summary","d":"variable","e":"getSchemaDetailsTitle"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"dataQa","d":"string","e":"demoAccordionList"},{"b":"expanded","d":"expression","e":"serviceAccordionControl[item.id]"},{"b":"onChange","d":"function","e":"() => handleServiceAccordionControl(item.id)"},{"b":"details","d":"expression","e":"renderAccordionDetail(item)"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"id","d":"string","e":"existingMessagingServiceList"},{"b":"summary","d":"expression","e":"renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)"},{"b":"details","d":"expression","e":"renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)"},{"b":"dataQa","d":"string","e":"existingMessagingServiceList"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleRuntimeAgentExpanded"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","c":[{"b":"key","d":"variable","e":"dataQa"},{"b":"summary","d":"variable","e":"summaryElement"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","c":[{"b":"dataQa","d":"expression","e":"dataQa ?? \"importPreviewAccordion\""},{"b":"summary","d":"expression","e":"renderSummary()"},{"b":"details","d":"expression","e":"renderDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"key","d":"expression","e":"applicationVersion.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderDetails()"},{"b":"indicatorVariant","d":"expression","e":"isSelected ? \"success\" : null"},{"b":"dataQa","d":"expression","e":"dataQa ?? null"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"dataQa","d":"string","e":"messagingService[Accordion]"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t onTitleLinkClick(messagingService)}\n\t\t\t\t\t\t\t\tdataQa=\"messagingService[Accordion][Title]\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{isCloudBased && } {!messagingService?.eventMeshId && }\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{brokerTypeLabel[messagingService.messagingServiceType] ?? \"Solace\"}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t{!messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t removeMessagingService(messagingService)} title=\"Remove\" dataQa=\"removeMessagingService\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\tConnected Modeled Event Mesh\n\t\t\t\t\t\t{eventMesh ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{eventMesh?.name}{\" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\tNone\n\t\t\t\t\t\t)}\n\t\t\t\t\t
"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"indicatorVariant","d":"expression","e":"hasIndicator ? \"info\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t{title}\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t handleDownloadFile(evt, details, emaType, downloadButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleCopyFile(evt, details, emaType, copyButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
"},{"b":"details","d":"jsx","e":"
{details}
"},{"b":"onChange","d":"function","e":"() => onToggle()"},{"b":"expanded","d":"variable","e":"expanded"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\tConnection File Details\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t handleDownloadFile(evt)}>\n\t\t\t\t\t\t\t\t\tDownload\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tCopy\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":"
{confFileContent}
"},{"b":"onChange","d":"function","e":"() => handleChange(\"confFile\")"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"dataQa","d":"string","e":"connectionFileDownloadDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"EmaPreflightCheckListAccordion"},{"b":"details","d":"expression","e":"renderSummary(emaMode)"},{"b":"expanded","d":"variable","e":"isOpen"},{"b":"onChange","d":"variable","e":"toggle"},{"b":"summary","d":"expression","e":"renderSideInfoBlurbSummary()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"key","d":"variable","e":"summary"},{"b":"summary","d":"jsx","e":"{summary}"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"border","d":"boolean","e":"false"},{"b":"onChange","d":"variable","e":"onChange"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/totalUsages.json new file mode 100644 index 000000000..613955421 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/totalUsages.json @@ -0,0 +1 @@ +52 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/usagesByMfe.json new file mode 100644 index 000000000..863bc0f53 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAccordion/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":52} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..6ccdc0942 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":35},{"name":"boldLabel","count":20},{"name":"size","count":19},{"name":"fillColor","count":13},{"name":"height","count":13},{"name":"labelColor","count":11},{"name":"variant","count":10},{"name":"compressed","count":9},{"name":"borderRadius","count":9},{"name":"disabled","count":4},{"name":"dataQa","count":3},{"name":"...","count":2},{"name":"maxWidth","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..cc5bba50d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..7f79adace --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SMOKE_GREY"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","c":[{"b":"label","d":"expression","e":"\"Update Required\""},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.INFO_LIGHT_BG_BLUE"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.INFO_BLUE_LABEL"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"tagName"},{"b":"labelColor","d":"variable","e":"tagTextColor"},{"b":"fillColor","d":"variable","e":"tagBgColor"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"messages.selectDialog.default"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"dataQa","d":"expression","e":"`${caKey}-toDelete`"},{"b":"size","d":"string","e":"sm"},{"b":"height","d":"string","e":"md"},{"b":"label","d":"expression","e":"\"To Be Deleted\""},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Unavailable\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"false"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"string","e":"Current"},{"b":"variant","d":"string","e":"filled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"string","e":"To Be Removed"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"pubSubStatus"},{"b":"variant","d":"expression","e":"\"filled\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx","c":[{"b":"...","d":"spread","e":"StateChipStyleProps[stateName]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx","c":[{"b":"label","d":"variable","e":"stateName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"label","d":"expression","e":"\"Added\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"label","d":"jsx","e":"{eventMesh.environmentName}"},{"b":"size","d":"expression","e":"\"sm\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"maxWidth","d":"expression","e":"\"100px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"label","d":"variable","e":"state"},{"b":"fillColor","d":"expression","e":"getColor(state).fillColor ?? undefined"},{"b":"labelColor","d":"expression","e":"getColor(state).labelColor ?? undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"label","d":"expression","e":"`${\n\t\t\t\t\t\t\t\texpandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0\n\t\t\t\t\t\t\t\t\t? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length\n\t\t\t\t\t\t\t\t\t: 0\n\t\t\t\t\t\t\t} Added`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isSub ? \"filled\" : \"outlined\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.sub"},{"b":"size","d":"expression","e":"\"xs\""},{"b":"disabled","d":"expression","e":"!isSub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isPub ? \"filled\" : \"outlined\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.pub"},{"b":"size","d":"expression","e":"\"xs\""},{"b":"disabled","d":"expression","e":"!isPub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"expression","e":"dataQa ?? \"overriddenBadge\""},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.INFO_LIGHT_BG_BLUE"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.INFO_BLUE_LABEL"},{"b":"label","d":"expression","e":"en.application.configuration.overridden"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t{`${schemaVersionSelectedMap[row.id].length} Added`}\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t{\"Selected\"}\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"label","d":"expression","e":"\"Declined\""},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Source\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Destination\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Sub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Pub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isSub ? \"filled\" : \"outlined\""},{"b":"label","d":"expression","e":"\"Sub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"disabled","d":"expression","e":"!isSub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isPub ? \"filled\" : \"outlined\""},{"b":"label","d":"expression","e":"\"Pub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"disabled","d":"expression","e":"!isPub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"label","d":"variable","e":"label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"status"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_BLUE"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SMOKE_GREY"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"status"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","c":[{"b":"size","d":"string","e":"xs"},{"b":"label","d":"string","e":"New"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.INFO_BLUE_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.INFO_LIGHT_BG_BLUE"},{"b":"boldLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"label","d":"expression","e":"eventMesh.environmentName"},{"b":"variant","d":"string","e":"filled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"variant","d":"expression","e":"\"filled\""},{"b":"label","d":"expression","e":"\"Recommended\""},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Unavailable\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"false"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx","c":[{"b":"...","d":"spread","e":"badgePropsForStatus"},{"b":"label","d":"variable","e":"status"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..dce6588ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +36 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..20628b514 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":36} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/commonProps.json new file mode 100644 index 000000000..dad66153b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":2},{"name":"name","count":2},{"name":"avpList","count":2},{"name":"labelForKeys","count":2},{"name":"labelForValues","count":2},{"name":"enableRequiredKeyFieldIndicator","count":2},{"name":"emptyFieldDisplayValue","count":2},{"name":"avpListMaxHeight","count":2},{"name":"virtualizedAvpListOption","count":2},{"name":"avpKeyValidationCallback","count":1},{"name":"avpValueValidationCallback","count":1},{"name":"keyIsRequiredMessage","count":1},{"name":"onAVPListUpdate","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1},{"name":"readOnly","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/files.json new file mode 100644 index 000000000..f7e3dc07e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/instances.json new file mode 100644 index 000000000..6ab78b630 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"avpList","d":"expression","e":"value || []"},{"b":"labelForKeys","d":"expression","e":"\"Value\""},{"b":"labelForValues","d":"expression","e":"\"Description\""},{"b":"avpKeyValidationCallback","d":"variable","e":"validateEnumKeys"},{"b":"avpValueValidationCallback","d":"variable","e":"validateEnumValues"},{"b":"enableRequiredKeyFieldIndicator","d":"boolean","e":"true"},{"b":"keyIsRequiredMessage","d":"string","e":"Enumeration value is required"},{"b":"onAVPListUpdate","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e);\n\t\t\t\t\t\t\t\t\t}"},{"b":"emptyFieldDisplayValue","d":"string","e":"-"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getErrorMessage(error) : null"},{"b":"avpListMaxHeight","d":"expression","e":"enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined"},{"b":"virtualizedAvpListOption","d":"expression","e":"enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50,\n\t\t\t\t\t\t\t\t\t\t\t\t\tinitialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"id","d":"expression","e":"\"enumerationVersion[values]\""},{"b":"name","d":"expression","e":"\"enumerationVersion[values]\""},{"b":"avpList","d":"expression","e":"enumerationVersion.values"},{"b":"labelForKeys","d":"expression","e":"\"Value\""},{"b":"labelForValues","d":"expression","e":"\"Description\""},{"b":"enableRequiredKeyFieldIndicator","d":"boolean","e":"true"},{"b":"emptyFieldDisplayValue","d":"string","e":"-"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"avpListMaxHeight","d":"expression","e":"enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined"},{"b":"virtualizedAvpListOption","d":"expression","e":"enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50\n\t\t\t\t\t\t\t\t\t\t\t }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceAttributeValuePairForm/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/commonProps.json new file mode 100644 index 000000000..78ec1bd37 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":424},{"name":"onClick","count":329},{"name":"dataQa","count":211},{"name":"href","count":96},{"name":"isDisabled","count":77},{"name":"title","count":69},{"name":"dense","count":34},{"name":"key","count":29},{"name":"id","count":11},{"name":"data-qa","count":9},{"name":"underline","count":4},{"name":"aria-label","count":2},{"name":"...","count":2},{"name":"endIcon","count":2},{"name":"component","count":1},{"name":"startIcon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/files.json new file mode 100644 index 000000000..c50e222fa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx","../../../maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/instances.json new file mode 100644 index 000000000..7c32e3423 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"jsonSchemaSpecLink"},{"b":"href","d":"string","e":"https://json-schema.org/specification.html"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"smfTopics\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"smfTopics\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"toggleCheckbox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => onDownload(false)"},{"b":"dataQa","d":"string","e":"downloadButton"},{"b":"isDisabled","d":"expression","e":"!Object.values(namingStrategy).includes(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"expression","e":"onOpenVersion ?? onClose"},{"b":"dataQa","d":"string","e":"returnToApplicationButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleUndo"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"function","e":"() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleDisplayDiscrepancyTable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"cancel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"linkToApplicationVersionDetails"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"component","d":"string","e":"span"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://www.solace.com"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleDisplayDiscrepancyTable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeConfigSidePanelButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"resourceAssignmentDelete"},{"b":"title","d":"expression","e":"messages.remove"},{"b":"onClick","d":"function","e":"() => onRemoveResourceAssignment(resourceAssignment)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"outline\""},{"b":"onClick","d":"function","e":"() => onAddResourceAssignment(displayedUserTypes[0])"},{"b":"isDisabled","d":"variable","e":"isDisabled"},{"b":"dataQa","d":"string","e":"addUser"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClear"},{"b":"dataQa","d":"expression","e":"`${dataQa}-clear`"},{"b":"title","d":"string","e":"Clear Topic Address"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClear"},{"b":"dataQa","d":"expression","e":"`${dataQa}-clear`"},{"b":"title","d":"string","e":"Clear Topic Address"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleEditClick"},{"b":"dataQa","d":"string","e":"configureVarButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAdd"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"isDisabled","d":"variable","e":"removeDisabled"},{"b":"onClick","d":"function","e":"() => handleRemove(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicSubscriptions\", \"link\")"},{"b":"data-qa","d":"string","e":"infoBlurbLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion.clientProfileNameRemove`"},{"b":"onClick","d":"variable","e":"handlRemoveClientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageClientProfile"},{"b":"dataQa","d":"string","e":"manageClientProfileName-button"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleStartOverriding"},{"b":"dataQa","d":"string","e":"overrideClientProfileName-button"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleResetOverride"},{"b":"dataQa","d":"string","e":"resetOverrideClientProfileName-button"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageClientProfile"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion.clientProfileNameRemove`"},{"b":"onClick","d":"variable","e":"handlRemoveClientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://semver.org"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleEdit"},{"b":"dataQa","d":"string","e":"editDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSave"},{"b":"isDisabled","d":"variable","e":"saveInProgress"},{"b":"dataQa","d":"string","e":"saveDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"dataQa","d":"string","e":"changeVersionState"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onChangeVersionState"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","c":[{"b":"key","d":"expression","e":"\"customAttributeDefinitionsEditorButton\""},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleOpenCustomAttributeDialog()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleNavigateBackToOrigin"},{"b":"dense","d":"boolean","e":"true"},{"b":"underline","d":"string","e":"none"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"selectedVersionInEdit"},{"b":"onClick","d":"function","e":"() => handleVersionEdit(selectedVersion)"},{"b":"dataQa","d":"string","e":"editThisVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"selectedVersionInEdit"},{"b":"onClick","d":"function","e":"() => handleVersionEdit(selectedVersion)"},{"b":"dataQa","d":"string","e":"editThisVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"isDisabled","d":"variable","e":"disableFormButtons"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancelVersion"},{"b":"dataQa","d":"string","e":"discardChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || disableFormButtons"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleSubmitVersionClick"},{"b":"dataQa","d":"string","e":"saveVersionButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || disableFormButtons"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSubmitAndCloseVersionClick"},{"b":"dataQa","d":"string","e":"saveVersionAndCloseButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCloseVersion"},{"b":"dataQa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onVersionAdd"},{"b":"dataQa","d":"string","e":"addVersionButton"},{"b":"title","d":"string","e":"Add New Version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowVersionDetails(false)"},{"b":"title","d":"string","e":"Hide Version List"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowVersionDetails(true)"},{"b":"title","d":"string","e":"Show Version List"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx","c":[{"b":"dataQa","d":"string","e":"createVersion"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreateVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"setKafkaPreferences"},{"b":"onClick","d":"expression","e":"onSetKafkaPreferences ? onSetKafkaPreferences : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"eventMeshLink"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, \"_self\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learningCenterLink"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(\"/learningCenter\", \"_self\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_environments"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/environments.htm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"lcVideoTutorialsLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"videoTutorials\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"trainingCoursesLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"courses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"epOverviewDocsLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"overviewDocs\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-viewall-button`"},{"b":"onClick","d":"function","e":"() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"customAttributes\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"customAttributes\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"dataQa","d":"expression","e":"`${caKey}-add`"},{"b":"variant","d":"string","e":"text"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => onAdd(entityType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Edit"},{"b":"dataQa","d":"expression","e":"`${caKey}-edit`"},{"b":"onClick","d":"function","e":"() => onEditName(entityType, index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`${caKey}-delete`"},{"b":"onClick","d":"function","e":"() => handleDelete(entityType, index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBackButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onViewInDesigner(version)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"expression","e":"\"cancelAddEventToApplication\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSave"},{"b":"dataQa","d":"expression","e":"\"saveAddEventToApplication\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"expression","e":"\"closeDetailsDialog\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBackButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onViewInDesigner?.(version)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onAddToApplication(version)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`${protocol}//${host}/environments`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx","c":[{"b":"dataQa","d":"string","e":"commandBlockCopyButton"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCopy"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][addSchemaRegistry]"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddSchemaRegistry"},{"b":"isDisabled","d":"expression","e":"schemaAuthArray?.length > 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/account-details/private-regions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseMessagingServiceDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOpenMessagingServiceDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","c":[{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx","c":[{"b":"aria-label","d":"expression","e":"\"More Actions\""},{"b":"...","d":"spread","e":"buttonProps"},{"b":"onClick","d":"variable","e":"handleMenuClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"latestGraphUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onDismiss"},{"b":"title","d":"string","e":"Close"},{"b":"dataQa","d":"string","e":"close-btn-inline-banner"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx","c":[{"b":"id","d":"string","e":"action-btn-inline-banner"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"variable","e":"isButtonDisabled"},{"b":"onClick","d":"variable","e":"onButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"recenterGraph"},{"b":"title","d":"expression","e":"\"Center Graph\""},{"b":"isDisabled","d":"variable","e":"graphEmpty"},{"b":"dataQa","d":"string","e":"centerGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"recenterGraph"},{"b":"title","d":"expression","e":"\"Center Graph\""},{"b":"dataQa","d":"string","e":"centerGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"docUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"docUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"docUrl"},{"b":"onClick","d":"function","e":"() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onDismiss"},{"b":"title","d":"string","e":"Close"},{"b":"dataQa","d":"string","e":"close-btn-inline-banner"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://semver.org"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"dataQa","d":"expression","e":"action.dataQa"},{"b":"key","d":"expression","e":"action.id"},{"b":"...","d":"spread","e":"action"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`${customAttributeFilterType}-delete`"},{"b":"onClick","d":"variable","e":"handleDeleteFilter"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`${filterType}-delete`"},{"b":"onClick","d":"function","e":"() => handleDelete(filterType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters(true, true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"variable","e":"handleApply"},{"b":"isDisabled","d":"expression","e":"!hasUnsavedChanges"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learnMore"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"key","d":"string","e":"goToRuntime"},{"b":"dataQa","d":"string","e":"goToRuntime"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\thistory.push(`/ep/runtime`);\n\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"key","d":"string","e":"goToDesigner"},{"b":"dataQa","d":"string","e":"goToDesigner"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\thistory.push(`/ep/designer`);\n\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => handleGoToSelectedApplicationDomain()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"title","d":"string","e":"Edit"},{"b":"onClick","d":"variable","e":"onEdit"},{"b":"dataQa","d":"string","e":"domainGraphSidePanel-details-editBtn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleOpenFullConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClickCancel"},{"b":"dataQa","d":"string","e":"cancelDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => handleSave(existingLatestNonRetiredVersion)"},{"b":"isDisabled","d":"expression","e":"!isDirty || saveInProgress || isWritingEpCore"},{"b":"dataQa","d":"string","e":"saveDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelCustomAttributesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => handleSave()"},{"b":"isDisabled","d":"expression","e":"!isDirty || isWritingEpCore || saveInProgress"},{"b":"dataQa","d":"string","e":"saveCustomAttributesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"title","d":"string","e":"Edit"},{"b":"onClick","d":"variable","e":"onEdit"},{"b":"dataQa","d":"expression","e":"`${entityType}NodeSidePanelCustomAttributeEditButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleOpenFullConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"aria-label","d":"expression","e":"\"Add To Graph\""},{"b":"title","d":"string","e":"Add To Graph"},{"b":"variant","d":"string","e":"outline"},{"b":"endIcon","d":"jsx","e":""},{"b":"dataQa","d":"string","e":"addToGraph-button"},{"b":"isDisabled","d":"expression","e":"!!nodeIdWithUnsavedChanges"},{"b":"onClick","d":"variable","e":"handleMenuClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseInfoBlurb"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Edit Appearance"},{"b":"onClick","d":"variable","e":"handleEditAppearance"},{"b":"dataQa","d":"string","e":"edit-appearance-button"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClosePanel"},{"b":"dataQa","d":"string","e":"leftSidePanelCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseInfoBlurb"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"(e) => handleNavigateToComponentList(e, entityType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseSearchPanel"},{"b":"dataQa","d":"string","e":"searchPanelCollapseButton"},{"b":"title","d":"string","e":"Collapse"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"dataQa","d":"string","e":"findOnGraph"},{"b":"key","d":"expression","e":"\"findOnGraph\""},{"b":"onClick","d":"function","e":"() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)"},{"b":"isDisabled","d":"variable","e":"searchButtonDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"dataQa","d":"expression","e":"DomainGraphLeftPanelMode.ADD_OBJECTS"},{"b":"key","d":"expression","e":"DomainGraphLeftPanelMode.ADD_OBJECTS"},{"b":"onClick","d":"function","e":"() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)"},{"b":"isDisabled","d":"expression","e":"leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => refreshGraphCallback?.(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => goToComponentLists?.()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRefreshGraph"},{"b":"title","d":"expression","e":"\"Refresh graph with the latest versions and layout\""},{"b":"dataQa","d":"string","e":"refreshGraph-button"},{"b":"isDisabled","d":"expression","e":"graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"en.common.button.download"},{"b":"dataQa","d":"expression","e":"`${name}-configDownload`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\tdownload(new Blob([configuration]), getConfigurationName(name), \"application/json\");\n\t\t\t}"},{"b":"isDisabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"(e) => handleEventVersionSelect(e, item)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleToggleEventsExpand"},{"b":"isDisabled","d":"expression","e":"sortedItems.length === 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleFindEventsClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddButtonClick"},{"b":"isDisabled","d":"expression","e":"!editableSubscriptions"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${consumerIndex}.add`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => setShowSuggestedEvents(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"isDisabled","d":"expression","e":"consumerIdInSidepanel === id && sidePanelOpen"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.delete`"},{"b":"onClick","d":"variable","e":"handleDeleteButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleAdd"},{"b":"isDisabled","d":"expression","e":"subscription === \"\" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress"},{"b":"dataQa","d":"string","e":"subscriptionAddButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${consumerIndex}.${index}.remove`"},{"b":"onClick","d":"function","e":"() => handleDeleteButtonClick(consumerId, index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${consumer.name}-manageConfigButton`"},{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleManageConfiguration"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleInitiateOverride"},{"b":"dataQa","d":"expression","e":"`${consumer.name}-overrideConfigButton`"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`${consumer.name}-clearOverrideButton`"},{"b":"onClick","d":"variable","e":"handleResetOverride"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${consumer.name}-manageConfigButton`"},{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleManageConfiguration"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"en.common.button.remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.configurationRemove`"},{"b":"onClick","d":"function","e":"() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onAutoCreateConsumers"},{"b":"isDisabled","d":"variable","e":"autoCreateConsumersInProgress"},{"b":"dataQa","d":"string","e":"autoCreateConsumersButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"sampleDocs\", \"link\")"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => Mixpanel.track(\"clickSampleDocumentationLink\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"id","d":"string","e":"createAppDomain-btn"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreate"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"id","d":"string","e":"importAppDomain-btn"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => importDomainsFileRef.current?.click()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSetUserAccess"},{"b":"dataQa","d":"string","e":"userAccessButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleOpen"},{"b":"dataQa","d":"string","e":"openApplicationDomainButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.eventApiProduct.labels.approvalTypes.url"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.eventApiProduct.labels.availability.url"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setOpen(true)"},{"b":"isDisabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.eventApiProduct.labels.availability.dialogUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(handleSaveEntityAndVersion)"},{"b":"isDisabled","d":"expression","e":"createEventApiProduct.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`planDeleteButton-${index}`"},{"b":"onClick","d":"function","e":"() => onPlanDelete(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"eapAddPlanButton"},{"b":"isDisabled","d":"expression","e":"planFields.length === 5"},{"b":"onClick","d":"variable","e":"onAddPlanClicked"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"dataQa","d":"string","e":"createEventApiProductButton"},{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"onClick","d":"variable","e":"launchUserAccessDialog"},{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"getRrbacRoles.isLoading || getAttributeAssignments.isLoading"},{"b":"dataQa","d":"string","e":"userAccessButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"isSaveButtonDisabled()"},{"b":"onClick","d":"expression","e":"handleSubmit(onFormSubmit)"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleEdit"},{"b":"dataQa","d":"string","e":"editApplicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleClose"},{"b":"dataQa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"title","d":"expression","e":"\"Launch link\""},{"b":"dataQa","d":"string","e":"launchTopicAddressResourceLink"},{"b":"href","d":"variable","e":"resource"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"\"Edit link\""},{"b":"dataQa","d":"string","e":"topicAddressResourcesEdit"},{"b":"onClick","d":"function","e":"() => setIsEditing(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"\"Delete link\""},{"b":"dataQa","d":"string","e":"topicAddressResourcesDelete"},{"b":"onClick","d":"function","e":"() => onDelete()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"topicAddressResourcesAdd"},{"b":"onClick","d":"function","e":"() => setIsEditing(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"addTopicDomain"},{"b":"onClick","d":"variable","e":"handleAddTopicDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"deleteTopicDomain"},{"b":"onClick","d":"function","e":"() => handleDeleteFromUI(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"deleteTopicDomain"},{"b":"onClick","d":"function","e":"() => handleDeleteFromBackend(topicDomain.id)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"source === \"application\" ? en.application.links.extension : en.eventApi.links.extension"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"version === \"2.5.0\" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.application.links.asyncApi"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(handleSaveEntityAndVersion)"},{"b":"isDisabled","d":"expression","e":"createEventApi.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"id","d":"expression","e":"item.id"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t\tonFilterButtonClicked(item);\n\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`filterButton-${item.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","c":[{"b":"variant","d":"expression","e":"selectedEventApiVersionIds.includes(versionData.id) ? \"text\" : \"outline\""},{"b":"id","d":"expression","e":"`${versionData.id}-versionButton`"},{"b":"key","d":"expression","e":"`${versionData.id}-versionButton`"},{"b":"onClick","d":"function","e":"() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? \"remove\" : \"add\", versionData)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageEventApis"},{"b":"isDisabled","d":"variable","e":"sidePanelOpen"},{"b":"dataQa","d":"string","e":"manageEventApisButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"expression","e":"messages[configType].emptyLinkref"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"string","e":"selectAnotherTemplateAction"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"onSelect"},{"b":"isDisabled","d":"variable","e":"isSelectDisabled"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"expression","e":"\"customizeAction\""},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onCustomize"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"expression","e":"\"refreshAction\""},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onRefresh"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"variant","d":"expression","e":"action.variant || \"text\""},{"b":"onClick","d":"expression","e":"action.onClick"},{"b":"dataQa","d":"expression","e":"action.dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"expression","e":"`switchModeAction-${modeToSelect}`"},{"b":"title","d":"variable","e":"selectMessage"},{"b":"onClick","d":"function","e":"() => setModeSelectionToConfirm(modeToSelect)"},{"b":"isDisabled","d":"expression","e":"modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"applyAction"},{"b":"title","d":"expression","e":"messagesCommon.button.apply"},{"b":"onClick","d":"variable","e":"applyChanges"},{"b":"isDisabled","d":"expression","e":"!!fetchError || templateNotFound || !!templateOutOfSync"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddConsumer"},{"b":"dataQa","d":"string","e":"addConsumerButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"custom-learnMore"},{"b":"href","d":"expression","e":"en.application.links.queueConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"template-learnMore"},{"b":"href","d":"expression","e":"messagesTemplate.solaceQueue.infoBlurb.linkHref"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`switchModeAction-${modeToSelect}`"},{"b":"title","d":"variable","e":"selectMessage"},{"b":"onClick","d":"function","e":"() => handleModeSelection(modeToSelect)"},{"b":"isDisabled","d":"expression","e":"modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"applyAction"},{"b":"title","d":"expression","e":"messagesCommon.button.apply"},{"b":"onClick","d":"variable","e":"applyChanges"},{"b":"isDisabled","d":"expression","e":"!!fetchError ||\n\t\t\t\t\t\t(templates?.length && (templateNotFound || !!templateOutOfSync)) ||\n\t\t\t\t\t\ttemplateHasSchemaErrors ||\n\t\t\t\t\t\t!!errors[FormNameConfiguration]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setShowConsumerType(true)"},{"b":"dataQa","d":"string","e":"rdpShowConsumerType"},{"b":"isDisabled","d":"variable","e":"showConsumerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRemoveRestDeliveryPointConfiguration"},{"b":"dataQa","d":"string","e":"rdpShowReset"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOverrideRestDeliveryPointConfiguration"},{"b":"dataQa","d":"string","e":"rdpShowOverride"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRemoveRestDeliveryPointConfiguration"},{"b":"title","d":"string","e":"Delete"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setShowRestConsumer(true)"},{"b":"isDisabled","d":"expression","e":"showRestConsumer || !configurationTypeId || !isEditing"},{"b":"dataQa","d":"string","e":"rdpShowRestConsumer"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","c":[{"b":"onClick","d":"variable","e":"handleOnDelete"},{"b":"variant","d":"expression","e":"\"icon\""},{"b":"title","d":"string","e":"Delete"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => onRemove(type, header)"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"removeRequestHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"addQueueBinding"},{"b":"isDisabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOverride"},{"b":"dataQa","d":"string","e":"overrideQueueBinding"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClearOverride"},{"b":"dataQa","d":"string","e":"clearOverrideQueueBinding"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleRemoveConfiguration()"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"removeQueueBinding"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setShowRequestHeaderDialog(true)"},{"b":"dataQa","d":"string","e":"addRequestHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOnAddQueueBinding"},{"b":"dataQa","d":"expression","e":"isGlobal ? \"addQueueBinding\" : \"overrideQueueBinding\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"enumerations\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleUndoUpload(valuesToUndo)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t}"},{"b":"isDisabled","d":"variable","e":"fileUploading"},{"b":"dataQa","d":"string","e":"enumerationVersion[values]-importFromFileButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit((data) => {\n\t\t\t\t\t\t\t\tif (!validateEnumValueSets()) {\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst preparedData = prepareEntityForBackend(data);\n\n\t\t\t\t\t\t\t\treturn handleSaveEntityAndVersion(preparedData);\n\t\t\t\t\t\t\t})"},{"b":"isDisabled","d":"expression","e":"createEnumeration.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageSchemas"},{"b":"isDisabled","d":"variable","e":"sidePanelOpen"},{"b":"dataQa","d":"expression","e":"`manage${keyOrValue}SchemasButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageSchemasForPrimitiveType"},{"b":"isDisabled","d":"variable","e":"sidePanelOpen"},{"b":"dataQa","d":"expression","e":"`manage${keyOrValue}SchemasForPrimitiveTypeButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRemoveSchema"},{"b":"dataQa","d":"expression","e":"`remove${keyOrValue}SchemaButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertVersionForSave)"},{"b":"isDisabled","d":"expression","e":"createEvent.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleSchemaVersionSelect"},{"b":"isDisabled","d":"expression","e":"sharedSearchCriteria && !schema.shared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSchemaVersionRemove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleSchemaVersionSelect"},{"b":"isDisabled","d":"expression","e":"sharedSearchCriteria && !schema.shared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSchemaVersionRemove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"notifyParentOfSchemaVersionSelection"},{"b":"dataQa","d":"string","e":"selectPrimitiveTypeButton"},{"b":"isDisabled","d":"expression","e":"!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBackButton"},{"b":"dataQa","d":"string","e":"backButton"},{"b":"title","d":"string","e":"Back"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSchemaVersionSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSchemaVersionRemove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"exampleSchemasButton"},{"b":"href","d":"string","e":"https://www.jsonschemavalidator.net/"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(handleSaveEntityAndVersion)"},{"b":"data-qa","d":"string","e":"createAndSelectButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOpenQuickCreateSchema"},{"b":"dataQa","d":"expression","e":"\"quickCreateSchemaButton\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kafkaEvents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Back to add subscription"},{"b":"onClick","d":"function","e":"() => handleManageSubscriptions(currentSubscription, consumerName)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"string","e":"Quick Create Event"},{"b":"onClick","d":"function","e":"() => handleOpenDialog(\"quickCreateEvent\")"},{"b":"dataQa","d":"string","e":"quickCreateEventButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tremove();\n\t\t\t\t\t\t\t\tremoveToast();\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAutoCreateConsumers"},{"b":"isDisabled","d":"variable","e":"autoCreateConsumersInProgress"},{"b":"dataQa","d":"string","e":"autoCreateConsumersButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageEvents"},{"b":"isDisabled","d":"expression","e":"sidePanelOpen && openedSidePanel === SidePanel.manageEvents"},{"b":"dataQa","d":"string","e":"manageEventsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onToggleInputBType"},{"b":"title","d":"variable","e":"title"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetIsEditing(true);\n\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"credentialsEdit"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseTopicAddressHelp"},{"b":"data-qa","d":"string","e":"topicAddressHelpCloseButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertVersionForSave)"},{"b":"data-qa","d":"string","e":"createAndSelectButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"gotoRuntimeTab"},{"b":"isDisabled","d":"expression","e":"!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"launchRDPDeploymentDialog"},{"b":"dataQa","d":"string","e":"addRDPToBrokerButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"key","d":"expression","e":"dataQa + \"-expandAll\""},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleToggleRequestsExpand"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSendAllRequests"},{"b":"dataQa","d":"string","e":"sendRequestButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"declinedRequests.length + requestsToCreate.length === 0 ? \"outline\" : \"call-to-action\""},{"b":"dataQa","d":"string","e":"manageRequestButton"},{"b":"onClick","d":"variable","e":"handleOpenRequestPanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"isDisabled","d":"expression","e":"isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)"},{"b":"onClick","d":"function","e":"() => setAddToEnvironmentData({ ...eventBrokerRecord })"},{"b":"dataQa","d":"expression","e":"`${eventBroker.id}-addApplicationButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageRelationshipBtnClick"},{"b":"dataQa","d":"string","e":"manageLinksBtn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`sub-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.sub ? \"call-to-action\" : \"outline\""},{"b":"isDisabled","d":"expression","e":"versionData.stateName.toLowerCase() === \"retired\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`pub-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.pub ? \"call-to-action\" : \"outline\""},{"b":"isDisabled","d":"expression","e":"versionData.stateName.toLowerCase() === \"retired\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEventVersionSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${ApplicationFlowDirection.Source}-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.source ? \"call-to-action\" : \"outline\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });\n\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"versionData.filtered"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${ApplicationFlowDirection.Destination}-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.destination ? \"call-to-action\" : \"outline\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });\n\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"versionData.filtered"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleClose"},{"b":"dataQa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonAddSubscription(item);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"!isValid || !isDirty"},{"b":"onClick","d":"expression","e":"mode === \"existingConsumer\" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)"},{"b":"data-qa","d":"string","e":"addSubscriptionButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertFormValuesForSave)"},{"b":"isDisabled","d":"expression","e":"createApplication.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setTriggerVersionDuplication(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"exampleSchemasButton"},{"b":"href","d":"string","e":"https://www.jsonschemavalidator.net/"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageReferencedSchemas"},{"b":"isDisabled","d":"expression","e":"sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas"},{"b":"dataQa","d":"string","e":"manageReferencedSchemasButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertVersionForSave)"},{"b":"isDisabled","d":"expression","e":"createSchema.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onReviewClick"},{"b":"dataQa","d":"string","e":"reviewButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onReviewClick"},{"b":"dataQa","d":"string","e":"revokeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onReviewClick"},{"b":"dataQa","d":"string","e":"approveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"onClick","d":"variable","e":"handleClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"variable","e":"label"},{"b":"onClick","d":"variable","e":"handleClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"variable","e":"variant"},{"b":"startIcon","d":"expression","e":"showSparkle ? : undefined"},{"b":"onClick","d":"variable","e":"handleClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"dataQa","d":"expression","e":"`${camelCase(title)}-${secondaryAction.completed}-button`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsecondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);\n\t\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"secondaryAction?.disabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpEMA\");\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpMEM\");\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"sampleApplicationsDomainsLink"},{"b":"href","d":"expression","e":"brandableText.solace.links.sampleDocs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\thandleOpenLink(\"design\");\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"dismissExploreSample"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\thandleOpenLink(\"videoTutorials\");\n\t\t\t\t\t\t\t\t}"},{"b":"endIcon","d":"jsx","e":""},{"b":"dataQa","d":"string","e":"howToVideosButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleOpenUserManagement"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => handleOpenAddToApplicationModal(selectedEvent)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","c":[{"b":"variant","d":"variable","e":"variant"},{"b":"onClick","d":"function","e":"() => handleCollectData(selectedMessagingService)"},{"b":"dataQa","d":"string","e":"runDiscoveryScan"},{"b":"isDisabled","d":"variable","e":"isDiscoveryScanButtonDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleAddExistingMessagingService"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"dataQa","d":"string","e":"connectEventBrokerButton"},{"b":"onClick","d":"variable","e":"handleAddExistingMessagingService"},{"b":"key","d":"expression","e":"\"addMessageService\""},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"id","d":"string","e":"viewConnectionDetailsButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleViewConnectionDetails"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleDeleteMessagingService(selectedMessagingService)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(\"/account-details/private-regions\")"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"datacenters\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"datacenters\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setIsAddMode(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Back to manage associations"},{"b":"onClick","d":"function","e":"() => setIsAddMode(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleRemoveVersionEntity(entityVersion.id)"},{"b":"dataQa","d":"string","e":"removeEntityFromListButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"backToGraphView"},{"b":"dataQa","d":"string","e":"backToGraphView"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => showObjectRelationshipsForFirstObjectCallback?.()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => refreshGraphCallback?.(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRefreshEventMeshDetails"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"designerTool\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleRefreshEventMeshDetails()"},{"b":"title","d":"expression","e":"\"Refresh graph with the latest objects and layout\""},{"b":"dataQa","d":"string","e":"refreshGraph-button"},{"b":"isDisabled","d":"expression","e":"graphLoading || graphUpdating || drawInProgress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"memSidePanelCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!item?.auth?.canOpenModelEventMesh"},{"b":"onClick","d":"variable","e":"onViewDetail"},{"b":"dataQa","d":"string","e":"viewMEMDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreateMem"},{"b":"dataQa","d":"string","e":"createModeledEventMeshButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"key","d":"string","e":"viewEventManagementAgentConnections"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => history.push(\"/account-details/private-regions\")"},{"b":"dataQa","d":"string","e":"viewEMAConnections"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"key","d":"string","e":"viewEventManagementAgentConnections"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleViewEventManagementAgentConnections"},{"b":"dataQa","d":"string","e":"viewEMAConnections"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateMemDialogOpen"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","c":[{"b":"onClick","d":"variable","e":"handleGoToMessagingServiceTab"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","c":[{"b":"onClick","d":"variable","e":"handleGoToDesigner"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBack"},{"b":"dataQa","d":"expression","e":"\"backCompareConfigDialog\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onViewConfiguration(isSchemaParent)"},{"b":"dataQa","d":"expression","e":"\"showFullConfiguration\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setOpenCelebratoryDialog(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"auditImport-action"},{"b":"onClick","d":"variable","e":"action"},{"b":"underline","d":"string","e":"none"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClearAll"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setAutoCollectDialogOpen(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"key","d":"string","e":"refreshAllAuditResults"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setRefresh(true)"},{"b":"dataQa","d":"string","e":"refreshAllAuditResults"},{"b":"title","d":"string","e":"Refresh all audit results"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"auditRuntimeData\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"auditRuntimeData\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCompareVersions"},{"b":"dataQa","d":"expression","e":"\"compareVersionsBtn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleUndoTagAction(request)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleOnClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"auditImportJob-close"},{"b":"title","d":"string","e":"Remove"},{"b":"onClick","d":"function","e":"() => handleDismissJob(jobId)"},{"b":"underline","d":"string","e":"none"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => onVersionItemClick(version.id)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => onVersionItemClick(version.id)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleShowMore"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"onClick","d":"variable","e":"onCompare"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"onClick","d":"variable","e":"onCompare"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onDeselectAll"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(eventDetail.parent, eventDetail)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"variant","d":"expression","e":"buttonVariant || \"outline\""},{"b":"isDisabled","d":"variable","e":"disabled"},{"b":"dataQa","d":"string","e":"chooseImportOptionButton"},{"b":"onClick","d":"function","e":"() =>\n\t\t\t\t\t\thandleImport(\n\t\t\t\t\t\t\tauditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent\n\t\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleDeselect"},{"b":"dataQa","d":"string","e":"validationErrorDeselect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"id","d":"string","e":"linkButton"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/ep/runtime/modeled-event-meshes/${eventMeshId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"id","d":"string","e":"linkButton"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"designerLink"},{"b":"dataQa","d":"string","e":"designerLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"id","d":"string","e":"linkButton"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"/ep/catalog\""},{"b":"dataQa","d":"string","e":"catalogLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"applicationDomain\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"isDisabled","d":"expression","e":"isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()"},{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"function","e":"() => onVersionSelection(applicationVersion)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"hideSecondaryPanel"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Go Back"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onCloseDetails"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Go to Selection Panel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleViewEventBrokerConnections"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"underline","d":"string","e":"none"},{"b":"onClick","d":"function","e":"() => handleRefreshAuditResult()"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleMessagingService(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => handleMessagingService(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"openMessagingServiceDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeSidePanelCloseButton"},{"b":"title","d":"string","e":"Close Side Panel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => removeMessagingService(messagingService)"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"string","e":"removeMessagingService"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"latestJarFileLink"},{"b":"href","d":"expression","e":"eventManagementAgentResources.version.needUpgradeLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateRuntimeAgent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"key","d":"string","e":"viewModeledEventMeshes"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleViewModeledEventMeshes"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/account-details/private-regions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceLabs/event-management-agent/blob/main/README.md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"id","d":"variable","e":"downloadButtonId"},{"b":"dataQa","d":"variable","e":"downloadButtonId"},{"b":"onClick","d":"function","e":"(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"id","d":"variable","e":"copyButtonId"},{"b":"dataQa","d":"variable","e":"copyButtonId"},{"b":"onClick","d":"function","e":"(evt) => handleCopyFile(evt, details, emaType, copyButtonId)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceProducts/event-management-agent/releases"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/ep/runtime?sortBy=name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace-sso.solace.cloud/support/error-id-help"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleFinishClick"},{"b":"dataQa","d":"string","e":"finishWalkthroughButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleFinishClick"},{"b":"dataQa","d":"string","e":"finishWalkthroughButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCompleteInstallationSetupClick"},{"b":"dataQa","d":"string","e":"comnpleteInstallationSetupButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSkipButton"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"dataQa","d":"string","e":"connectEventBrokerButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOpenSidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleOpenSidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || !eventManagementAgent?.eventManagementAgentRegionId"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreateAgent"},{"b":"dataQa","d":"string","e":"saveAndCreateConnectionFileButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"discardChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleEditAgent"},{"b":"dataQa","d":"string","e":"saveAndCreateConnectionFileButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"(evt) => handleDownloadFile(evt)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCopyFile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"EMA_PREREQUISITES_LINK"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"agentSidePanelCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => handleDownloadConnectionFile(item.id, item.name)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceLabs/event-management-agent/blob/main/README.md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"linkHref"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"onClick","d":"variable","e":"onCancel"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"cancelTemplate"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"onClick","d":"variable","e":"onSave"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"saveTemplate"},{"b":"isDisabled","d":"expression","e":"createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSetToDefault"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleOpenDeleteTemplateDialog(true, row)"},{"b":"dataQa","d":"string","e":"deleteTemplateButton"},{"b":"title","d":"string","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateTemplate"},{"b":"dataQa","d":"string","e":"createTemplateButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learnMoreTooltipLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learnMoreCardLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/totalUsages.json new file mode 100644 index 000000000..82a1667ba --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +426 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..dead99b5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":426} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/commonProps.json new file mode 100644 index 000000000..573f36426 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/commonProps.json @@ -0,0 +1 @@ +[{"name":"backgroundColor","count":18},{"name":"showCloseButton","count":16},{"name":"onClose","count":15},{"name":"dataQa","count":11},{"name":"title","count":10}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/files.json new file mode 100644 index 000000000..f9934c20a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/instances.json new file mode 100644 index 000000000..1ac6acee9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"string","e":"Want to subscribe to specific values?"},{"b":"onClose","d":"function","e":"() => setShowInfoBlurb(false)"},{"b":"dataQa","d":"string","e":"addSubscriptionInfoBlurb"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"jsx","e":"

{brandableTextValueConverter(\"Environments in PubSub+ Cloud\", \"string\")}

"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"string","e":"What is an Event Management Agent?"},{"b":"onClose","d":"variable","e":"handleCloseInfoBlurb"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleDismissEducationalCard"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"dataQa","d":"string","e":"attractedEventsNoResults"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"title","d":"string","e":"Defining Topic Domains"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"dataQa","d":"string","e":"topicAddressResources"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"dataQa","d":"string","e":"topicAddressResourcesMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\n\t\t\t\t\tReferenced Schema Names Require Manual Updates\n\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"title","d":"expression","e":"reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? \"Conflicting Topic Address\" : \"Conflicting Objects\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.warning.w10"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowRDPInfo(false)"},{"b":"dataQa","d":"string","e":"restDeliveryPointInformation"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"title","d":"expression","e":"\"Upload From JSON File\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseEnumVauesHelp"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"dataQa","d":"expression","e":"\"enumValuesHelp\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"title","d":"expression","e":"\"Tips and Tricks for Topic Addresses\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseTopicAddressHelp"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"dataQa","d":"expression","e":"\"topicAddressHelp\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"dataQa","d":"string","e":"eventBrokers-noBrokers"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"dataQa","d":"string","e":"eventBrokers-noMatchingBrokers"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"title","d":"expression","e":"messages.projectDefinition.help"},{"b":"dataQa","d":"string","e":"projectDefinitionHelp"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.warning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInstructionMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInstructionMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"getCardTitle(selectedAudit.auditEntityType)"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"onClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleDismissReuseIndexInfoCard"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/totalUsages.json new file mode 100644 index 000000000..597975b41 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/totalUsages.json @@ -0,0 +1 @@ +35 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/usagesByMfe.json new file mode 100644 index 000000000..9e7fd5c91 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCard/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":35} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/commonProps.json new file mode 100644 index 000000000..7d047e669 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":6},{"name":"searchValue","count":6},{"name":"onSearchValueChange","count":6},{"name":"selectedCategoryValue","count":6},{"name":"onCategoryChange","count":6},{"name":"categoryOptions","count":6},{"name":"searchInputWidth","count":5},{"name":"equalButtonWidth","count":4},{"name":"categoryOptionsWidth","count":4},{"name":"onSearchInputFocus","count":3},{"name":"onSearchInputBlur","count":3},{"name":"id","count":2},{"name":"dataQa","count":2},{"name":"placeholder","count":2},{"name":"layout","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/files.json new file mode 100644 index 000000000..6b7e167a8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/instances.json new file mode 100644 index 000000000..8636b7767 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"expression","e":"\"iconSearchAndFilter\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChagned"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"onSearchInputFocus","d":"function","e":"() => setAutoFocusItem(false)"},{"b":"onSearchInputBlur","d":"function","e":"() => setAutoFocusItem(true)"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"expression","e":"\"iconSearchAndFilter\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChagned"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"onSearchInputFocus","d":"function","e":"() => setAutoFocusItem(false)"},{"b":"onSearchInputBlur","d":"function","e":"() => setAutoFocusItem(true)"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"name","d":"expression","e":"\"iconSearchAndFilter\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChagned"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"onSearchInputFocus","d":"function","e":"() => setAutoFocusItem(false)"},{"b":"onSearchInputBlur","d":"function","e":"() => setAutoFocusItem(true)"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx","c":[{"b":"name","d":"expression","e":"\"iconCategorizedSearch\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChanged"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"id","d":"string","e":"searchInput"},{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Filter by Name"},{"b":"layout","d":"expression","e":"SolaceCategorizedSearchLayout.horizontal"},{"b":"categoryOptions","d":"variable","e":"tabOptions"},{"b":"selectedCategoryValue","d":"variable","e":"activeTab"},{"b":"onCategoryChange","d":"variable","e":"handleTabChange"},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchTextChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"id","d":"string","e":"searchInput"},{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Filter by Name"},{"b":"layout","d":"expression","e":"SolaceCategorizedSearchLayout.horizontal"},{"b":"categoryOptions","d":"expression","e":"entityFilterOptions.length > 0 ? entityFilterOptions : []"},{"b":"selectedCategoryValue","d":"variable","e":"selectedEntityTypeFilter"},{"b":"onCategoryChange","d":"variable","e":"handleEntityTypeFilterChange"},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchTextChange"},{"b":"searchInputWidth","d":"expression","e":"\"280px\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/usagesByMfe.json new file mode 100644 index 000000000..8d1647796 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCategorizedSearch/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/commonProps.json new file mode 100644 index 000000000..c9e3e1142 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":44},{"name":"checked","count":43},{"name":"label","count":42},{"name":"dataQa","count":39},{"name":"onChange","count":35},{"name":"readOnly","count":12},{"name":"hasErrors","count":10},{"name":"helperText","count":10},{"name":"disabled","count":7},{"name":"key","count":4},{"name":"subTextProps","count":3},{"name":"id","count":2},{"name":"indeterminate","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/files.json new file mode 100644 index 000000000..4a2d52470 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/instances.json new file mode 100644 index 000000000..1e3e27c80 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"key","d":"expression","e":"option.value"},{"b":"name","d":"expression","e":"option.name"},{"b":"checked","d":"expression","e":"checkedItems[option.value]"},{"b":"onChange","d":"variable","e":"handleCheckboxChange"},{"b":"dataQa","d":"expression","e":"option.name"},{"b":"disabled","d":"expression","e":"optionDisabled(option, selectedMessagingService)"},{"b":"label","d":"expression","e":"option.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"key","d":"expression","e":"option.name"},{"b":"name","d":"expression","e":"option.name"},{"b":"checked","d":"expression","e":"namingStrategy[option.name]"},{"b":"onChange","d":"variable","e":"handleCheckboxChange"},{"b":"dataQa","d":"expression","e":"option.name"},{"b":"label","d":"expression","e":"option.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","c":[{"b":"name","d":"expression","e":"\"keepParent\""},{"b":"dataQa","d":"expression","e":"\"keepEntityCheckbox\""},{"b":"onChange","d":"function","e":"(e) => handleKeepParentChange(e.value)"},{"b":"subTextProps","d":"object","e":"{ label: `Creates a new version of the ${entityType}`, light: true }"},{"b":"checked","d":"variable","e":"keepParent"},{"b":"label","d":"expression","e":"`I want to keep the ${entityType}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"name","d":"string","e":"subscribeToEvent"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetSubscribeToEvent(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"subscribeToEvent"},{"b":"readOnly","d":"variable","e":"isSubscribeReadOnly"},{"b":"dataQa","d":"string","e":"addEventToApplicationSubscribeToEvent"},{"b":"label","d":"string","e":"Subscribe to Event"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"name","d":"string","e":"publishEvent"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetPublishEvent(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"publishEvent"},{"b":"readOnly","d":"variable","e":"isPublishReadOnly"},{"b":"dataQa","d":"string","e":"addEventToApplicationPublishEvent"},{"b":"label","d":"string","e":"Publish Event"},{"b":"hasErrors","d":"expression","e":"!!eventFlowError"},{"b":"helperText","d":"variable","e":"eventFlowError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"checked","d":"variable","e":"isTLSChecked"},{"b":"dataQa","d":"string","e":"schemaRegistry[tls]"},{"b":"id","d":"string","e":"schemaRegistry[tls]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.addTLS"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"readOnly || loading || kafkaDelimiterIsNotSet"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"eventBroker[kafka][schemaRegistry][tls]"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"id","d":"string","e":"schemaRegistry[tls]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.addTLS"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx","c":[{"b":"name","d":"expression","e":"checkboxName ?? \"customhookCheckbox\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"variable","e":"label"},{"b":"checked","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.applicationDomain"},{"b":"label","d":"expression","e":"FilterTypeLabel.applicationDomain"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.state"},{"b":"label","d":"expression","e":"FilterTypeLabel.state"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.state"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.shared"},{"b":"label","d":"expression","e":"FilterTypeLabel.shared"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.shared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.brokerType"},{"b":"label","d":"expression","e":"FilterTypeLabel.brokerType"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.brokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.eventMesh"},{"b":"label","d":"expression","e":"FilterTypeLabel.eventMesh"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.eventMesh"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.applicationType"},{"b":"label","d":"expression","e":"FilterTypeLabel.applicationType"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.applicationType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"variable","e":"filterType"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"checked","d":"expression","e":"currentFilters.includes(filterType)"},{"b":"onChange","d":"function","e":"(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + filterType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"variable","e":"filterType"},{"b":"label","d":"expression","e":"renderCheckboxLabel(customAttributes[0].name)"},{"b":"checked","d":"expression","e":"!!selectedFilters.find((filter) => filter.type === filterType)"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + filterType"},{"b":"onChange","d":"function","e":"(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"expression","e":"`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`"},{"b":"dataQa","d":"expression","e":"`${entityType}[shared]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"name","d":"string","e":"onlyShowEventsWithoutSubscription"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetOnlyShowEventsWithoutSubscription(e.value);\n\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"onlyShowEventsWithoutSubscription"},{"b":"label","d":"string","e":"Show events without a consumer subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"name","d":"expression","e":"`checkDomain-${item.id}`"},{"b":"dataQa","d":"expression","e":"`checkDomain-${item.id}`"},{"b":"onChange","d":"function","e":"(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)"},{"b":"checked","d":"variable","e":"checked"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"name","d":"expression","e":"\"selectAllDomains\""},{"b":"dataQa","d":"expression","e":"\"selectAllDomainsCheckbox\""},{"b":"onChange","d":"variable","e":"onAllDomainsCheck"},{"b":"checked","d":"variable","e":"isChecked"},{"b":"indeterminate","d":"expression","e":"isChecked && selectedDomainIds.length !== items.length"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.sharedCheckbox"},{"b":"dataQa","d":"expression","e":"\"eventApiProduct[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"name","d":"expression","e":"\"applicationDomain[uniqueTopicAddressEnforcementEnabled]\""},{"b":"checked","d":"expression","e":"domainValues?.uniqueTopicAddressEnforcementEnabled"},{"b":"dataQa","d":"expression","e":"\"uniqueTopicAddressEnforcementEnabled\""},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t\t"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"name","d":"expression","e":"\"applicationDomain[topicDomainEnforcementEnabled]\""},{"b":"checked","d":"expression","e":"domainValues?.topicDomainEnforcementEnabled"},{"b":"dataQa","d":"string","e":"topicDomainEnforcementEnabled"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t\t"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"name","d":"expression","e":"\"applicationDomain[nonDraftDescriptionsEditable]\""},{"b":"checked","d":"expression","e":"domainValues?.nonDraftDescriptionsEditable"},{"b":"dataQa","d":"string","e":"nonDraftDescriptionsEditable"},{"b":"label","d":"jsx","e":"Allow object descriptions to be editable in all lifecyle states"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"uniqueTopicAddressEnforcementEnabled"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetTopicDomainEnforcement(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"!value && !hasValidTopicDomain"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"topicDomainEnforcementEnabled"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"nonDraftDescriptionsEditable"},{"b":"label","d":"jsx","e":"Allow object descriptions to be editable in all lifecyle states"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"key","d":"expression","e":"option.name"},{"b":"name","d":"expression","e":"option.name"},{"b":"checked","d":"expression","e":"namingStrategy[option.name]"},{"b":"onChange","d":"variable","e":"handleNamingStrategyChange"},{"b":"dataQa","d":"expression","e":"option.name"},{"b":"label","d":"expression","e":"option.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"expression","e":"en.eventApi.labels.sharedCheckbox"},{"b":"dataQa","d":"expression","e":"\"eventApi[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"dataQa","d":"string","e":"enumeration[shared]"},{"b":"label","d":"string","e":"Allow Enumeration to be shared across application domains"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"checked","d":"expression","e":"value || false"},{"b":"disabled","d":"variable","e":"sharedSchema"},{"b":"label","d":"string","e":"Allow schema to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"schema[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"string","e":"Allow event to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"event[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\thandleSharedChanged(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"string","e":"Allow event to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"event[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"dataQa","d":"string","e":"subscribeToEvent"},{"b":"label","d":"string","e":"Subscribe to Event"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"dataQa","d":"string","e":"publishEvent"},{"b":"label","d":"string","e":"Publish Event"},{"b":"hasErrors","d":"expression","e":"!!eventFlowError"},{"b":"helperText","d":"variable","e":"eventFlowError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"key","d":"expression","e":"filter.value"},{"b":"name","d":"expression","e":"filter.name"},{"b":"checked","d":"expression","e":"filtersMap[application?.id]?.[filter.value]"},{"b":"label","d":"expression","e":"filter.name"},{"b":"onChange","d":"function","e":"() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])"},{"b":"dataQa","d":"expression","e":"`environment-filters-${filter.value}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"string","e":"Allow schema to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"schema[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"name","d":"expression","e":"\"doNotShowAgain\""},{"b":"label","d":"expression","e":"\"Do not show this warning again\""},{"b":"onChange","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","c":[{"b":"name","d":"string","e":"broker"},{"b":"label","d":"string","e":"Broker"},{"b":"onChange","d":"variable","e":"handleBrokerOnChange"},{"b":"checked","d":"expression","e":"!!brokerEnabled && !toDisableBrokerScan()"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: \"Discover consumer groups and topics.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"toDisableBrokerScan()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","c":[{"b":"name","d":"string","e":"confluentSchemaRegistry"},{"b":"label","d":"string","e":"Confluent Schema Registry"},{"b":"onChange","d":"variable","e":"handleSchemaRegistryOnChange"},{"b":"checked","d":"expression","e":"!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: \"Discover schemas from Confluent.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"toDisableSchemaRegistryScan()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","c":[{"b":"label","d":"string","e":"Show only the modeled event meshes I can access"},{"b":"name","d":"string","e":"Filter By Access"},{"b":"checked","d":"variable","e":"filterByAccess"},{"b":"onChange","d":"variable","e":"toggleFilterByAccessOnChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"name","d":"expression","e":"\"hideAuditResults\""},{"b":"label","d":"expression","e":"`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`"},{"b":"checked","d":"expression","e":"showHiddenAudits !== \"false\""},{"b":"dataQa","d":"expression","e":"\"hideAuditResults-checkbox\""},{"b":"onChange","d":"function","e":"(event) => handleHideTagCheckbox(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dontShowConfirmBoxCheckbox\""},{"b":"label","d":"expression","e":"`Don't show this message again.`"},{"b":"checked","d":"expression","e":"!showDialogAgain"},{"b":"dataQa","d":"expression","e":"\"dontShowConfirmBox-checkbox\""},{"b":"onChange","d":"function","e":"(event) => setShowDialogAgain(!event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"name","d":"expression","e":"\"requiredConfirmBoxCheckbox\""},{"b":"label","d":"expression","e":"\"Require confirmation\""},{"b":"checked","d":"variable","e":"showConfirmDialogBox"},{"b":"dataQa","d":"expression","e":"\"requiredConfirmBox-checkbox\""},{"b":"onChange","d":"function","e":"(event) => handleRequireConfirmCheckbox(event.value)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/totalUsages.json new file mode 100644 index 000000000..7d3738628 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/totalUsages.json @@ -0,0 +1 @@ +45 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/usagesByMfe.json new file mode 100644 index 000000000..5fc139756 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCheckBox/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":45} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/commonProps.json new file mode 100644 index 000000000..807f77363 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":20},{"name":"variant","count":10},{"name":"maxWidth","count":5},{"name":"clickable","count":3},{"name":"borderRadius","count":3},{"name":"boldLabel","count":3},{"name":"disabled","count":3},{"name":"dataQa","count":3},{"name":"key","count":2},{"name":"onDelete","count":2},{"name":"state","count":1},{"name":"icon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/files.json new file mode 100644 index 000000000..685d10910 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/instances.json new file mode 100644 index 000000000..0c2641f6d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"label","d":"expression","e":"selectedEventMesh.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.OUTLINED"},{"b":"state","d":"expression","e":"selected ? STATES.ACTIVE : STATES.NOT_SELECTED"},{"b":"clickable","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"boldLabel","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"label","d":"expression","e":"protocolName.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","c":[{"b":"label","d":"variable","e":"applicationDomainName"},{"b":"maxWidth","d":"expression","e":"isSidePanel ? 100 : 150"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"expression","e":"messages.configuration.enabled"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"key","d":"expression","e":"messagingService.eventMeshId"},{"b":"label","d":"expression","e":"messagingService.eventMeshName"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"maxWidth","d":"string","e":"200px"},{"b":"disabled","d":"variable","e":"toBeRemoved"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"expression","e":"`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onDelete","d":"variable","e":"onDelete"},{"b":"dataQa","d":"expression","e":"`filterChip-${filterType}`"},{"b":"clickable","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx","c":[{"b":"label","d":"expression","e":"node.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx","c":[{"b":"label","d":"variable","e":"applicationDomainName"},{"b":"icon","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"label","d":"variable","e":"name"},{"b":"maxWidth","d":"number","e":"200"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"label","d":"expression","e":"domainInfoMap[item.id].name"},{"b":"maxWidth","d":"number","e":"150"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[{"b":"label","d":"variable","e":"label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"label","d":"expression","e":"messages.configuration.enabled"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"label","d":"expression","e":"eventMesh.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"label","d":"jsx","e":" 1 ? \"s\" : \"\"}: ${consumersCount}`}>\n\t\t\t\t\t\t{`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`}\n\t\t\t\t\t"},{"b":"maxWidth","d":"number","e":"110"},{"b":"dataQa","d":"expression","e":"`consumerChip-${eventVersionId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx","c":[{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t\t\t\t{isAppDomainLocked && }\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"key","d":"expression","e":"tag.id"},{"b":"label","d":"expression","e":"tag.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"boldLabel","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t {AUDIT_TAGS_LABELS.Hide}\n\t\t\t\t\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"boldLabel","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onDelete","d":"variable","e":"onDelete"},{"b":"dataQa","d":"expression","e":"`filterChip-${filterType}`"},{"b":"clickable","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/totalUsages.json new file mode 100644 index 000000000..2edeafb09 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/totalUsages.json @@ -0,0 +1 @@ +20 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/usagesByMfe.json new file mode 100644 index 000000000..de9ef1dc5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceChip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":20} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..a6a5efd70 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":1},{"name":"variant","count":1},{"name":"size","count":1},{"name":"disableShrink","count":1},{"name":"message","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/files.json new file mode 100644 index 000000000..fa4c885f0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..40ca1bb91 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx","c":[{"b":"dataQa","d":"variable","e":"testId"},{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"variable","e":"size"},{"b":"disableShrink","d":"variable","e":"disableShrink"},{"b":"message","d":"variable","e":"message"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..b404f9339 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/commonProps.json new file mode 100644 index 000000000..37bd7e8f4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":12},{"name":"id","count":12},{"name":"mode","count":12},{"name":"value","count":12},{"name":"readOnly","count":11},{"name":"expandable","count":6},{"name":"onChange","count":4},{"name":"helperText","count":4},{"name":"hasErrors","count":4},{"name":"hasWarnings","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/files.json new file mode 100644 index 000000000..388c3e294 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/instances.json new file mode 100644 index 000000000..ecb081128 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"dataQa","d":"expression","e":"`itemDetail-${item.identifier}`"},{"b":"id","d":"expression","e":"`itemDetail-${item.identifier}`"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"item.value ? JSON.stringify(jsonValue, null, 2) : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]`"},{"b":"value","d":"expression","e":"schemaVersion?.content || \"\""},{"b":"mode","d":"expression","e":"schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"id","d":"expression","e":"`applicationVersion[consumers].${index}.configuration`"},{"b":"value","d":"variable","e":"prettifiedConfiguration"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.configuration`"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"variable","e":"observedConfiguration"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"onChange","d":"function","e":"(editor, data, value) => {\n\t\t\t\t\t\t\t\t// onChange will break this because it will compete with the other debounced error flow\n\t\t\t\t\t\t\t\thandleChangeCustomConfiguration(value);\n\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"expression","e":"mode === Mode.template"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"mode","d":"variable","e":"impliedContentType"},{"b":"onChange","d":"function","e":"(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion.content\");\n\t\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""},{"b":"helperText","d":"expression","e":"error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"hasWarnings","d":"expression","e":"!error && !!editorWarningMsg"},{"b":"expandable","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"id","d":"expression","e":"\"schemaVersion[content]\""},{"b":"value","d":"expression","e":"schemaVersionRefetched.content || \"\""},{"b":"mode","d":"expression","e":"schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"expandable","d":"expression","e":"!shownInCatalogDetailContainer"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"mode","d":"variable","e":"impliedContentType"},{"b":"onChange","d":"function","e":"(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion[content]\");\n\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""},{"b":"helperText","d":"expression","e":"error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"hasWarnings","d":"expression","e":"!error && !!editorWarningMsg"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"variable","e":"isImportedSchemaVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","c":[{"b":"id","d":"expression","e":"`dataCollected[${row.id}]`"},{"b":"value","d":"expression","e":"row.data"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"dataCollected[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"\"auditResultConfig[schemaBody]\""},{"b":"id","d":"expression","e":"\"auditResultConfig[schemaBody]\""},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"schemaBody"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"\"auditResultConfig[schemaReferences]\""},{"b":"id","d":"expression","e":"\"auditResultConfig[schemaReferences]\""},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"schemaReferences"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","c":[{"b":"id","d":"expression","e":"\"auditResultConfig[content]\""},{"b":"value","d":"expression","e":"runtimeAttributes || designerAttributes"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"auditResultConfig[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"value","d":"expression","e":"observedConfiguration.value"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"onChange","d":"function","e":"(editor, data, value) => setObservedConfiguration({ name, value })"},{"b":"dataQa","d":"variable","e":"configurationName"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"hasErrors","d":"expression","e":"!!error?.message"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"false"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/totalUsages.json new file mode 100644 index 000000000..3cacc0b93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/totalUsages.json @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/usagesByMfe.json new file mode 100644 index 000000000..9411c961f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceCodeEditor/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..81f4fbb43 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":112},{"name":"isOpen","count":112},{"name":"actions","count":112},{"name":"maxWidth","count":31},{"name":"linearProgressIndicator","count":30},{"name":"contentText","count":11},{"name":"key","count":6},{"name":"contentLayout","count":2},{"name":"customAction","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..cb757fc6c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx","../../../maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..655941921 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"\"fail-download-async-api\""},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, variant: \"outline\" as const, onClick: action(\"onClose\") }]"},{"b":"linearProgressIndicator","d":"boolean","e":"false"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"confirmationObj.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.cancelLabel,\n\t\t\t\t\t\tdataQa: \"returnToForm\",\n\t\t\t\t\t\tonClick: () => closeModal(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.okLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"leaveAndDiscard\",\n\t\t\t\t\t\tonClick: () => closeModal(true)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"applicationVersionId"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Unable to Delete ${entityTypeToLabel(entityType)}`"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: handleCloseWithErrors }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Delete ${entityTypeLabel}`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Add to Environment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError\n\t\t\t\t}\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.eventApiProduct.headers.deployToEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","c":[{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: onClose }]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"title","d":"expression","e":"en.entities.labels.bulkMove.move(\n\t\t\t\tselectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)\n\t\t\t)"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, onClick: onClose },\n\t\t\t\t{ label: en.common.button.move, variant: \"call-to-action\", onClick: handleSubmit, isDisabled: moveDisabled }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"startMove.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tDetected Event Flow Mismatches\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tEdit Application\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(cancel)"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: () => onClose(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.action,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleOnClick,\n\t\t\t\t\tdataQa: \"updateEntityInEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError\n\t\t\t\t}\n\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"submitting || isDeploymentPreviewLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"messages.add.addToEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"messages.add.addToEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messages.credentials.saveCredentialsAndContinue,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: onSave,\n\t\t\t\t\t\t\tdataQa: \"saveCredentialsAndContinue\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !isValid\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.eventApiProduct.headers.addEventApiProduct"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCancel },\n\t\t\t\t{ label: resetButtonLabel, variant: \"outline\", onClick: handleSave }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Configure Variable"},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteVersionDialogOpen"},{"b":"title","d":"expression","e":"`Delete ${entityTypeLabel} Version`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCancel },\n\t\t\t\t{ label: !isLastVersion || keepParent ? \"Delete Version\" : `Delete Version & ${entityTypeLabel}`, variant: \"outline\", onClick: handleDelete }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"confirmExitDialogOpen"},{"b":"title","d":"expression","e":"`Unable to Close ${entityTypeToLabel(entityType)}`"},{"b":"actions","d":"array","e":"[{ label: \"Return To Form\", variant: \"outline\", onClick: handleCancel }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Duplicate Application Version`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ dataQa: \"save\", label: \"Save\", variant: \"call-to-action\", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"duplicateEntityVersion.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"title ?? \"Warning\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Return to Form\", onClick: onClose },\n\t\t\t\t{ label: \"Reload\", variant: \"outline\", onClick: handleReload }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: refreshGraphRequiredOnClosingErrorDialog ? \"Close & Refresh Graph\" : \"Close\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"title","d":"variable","e":"getTitle"},{"b":"actions","d":"variable","e":"getButtons"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"string","e":"KafkaSampleSuccessDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.selectDialog.title"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.select,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tisDisabled: !value,\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle"},{"b":"actions","d":"variable","e":"getButtons"},{"b":"linearProgressIndicator","d":"variable","e":"showProgressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"title","d":"expression","e":"details.label"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx","c":[{"b":"title","d":"expression","e":"error.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"contentText","d":"expression","e":"error.message"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tsetIsDialogOpen(false);\n\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx","c":[{"b":"title","d":"string","e":"Manage Custom Attributes"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"customAttributes-cancel\", onClick: () => setIsDialogOpen(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tdataQa: \"customAttributes-save\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: disabled || isSaving === true,\n\t\t\t\t\tonClick: () => handleSave()\n\t\t\t\t}\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isSaving"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"contentText","d":"expression","e":"typeof errorObject.message === \"string\" ? errorObject.message : null"},{"b":"actions","d":"array","e":"[{ label: \"Close\", dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"title","d":"expression","e":"generateTitleDialog(mode)"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"title || \"Event Broker Connection Details\""},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Modeled Event Mesh"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"title","d":"string","e":"Add Existing Event Broker"},{"b":"isOpen","d":"expression","e":"open && !openMessagingServiceDialog"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleAddExistingMessagingService();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress || !!submitError?.message\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"addInProgress"},{"b":"maxWidth","d":"string","e":"md"},{"b":"contentLayout","d":"string","e":"contents"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"title ?? defaultTilte"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Remove\", dataQa: \"removeAssociation\", variant: \"outline\", onClick: () => onRemove(idToRemove) }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Publish Graph Layout\""},{"b":"isOpen","d":"variable","e":"layoutConflictDialogOpen"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: `Return to ${entityLabel}`, onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Publish Layout\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: graphUpdating,\n\t\t\t\t\tonClick: handleContinuePublishLayout,\n\t\t\t\t\tdataQa: \"continuePublishLayout\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Changes Partially Published\""},{"b":"isOpen","d":"variable","e":"partialPublishDialogOpen"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Close\", onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ label: \"Refresh\", variant: \"outline\", onClick: handleRefreshGraph, id: \"refreshGraph\", dataQa: \"refreshGraph\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"contentText","d":"expression","e":"typeof errorObject.message === \"string\" ? errorObject.message : null"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"versionStateDialogOpen"},{"b":"title","d":"string","e":"Manage Lifecycle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tonClick: handleLifecycleChanges,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isSaveDisabled()\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"md\""},{"b":"linearProgressIndicator","d":"expression","e":"changeEntityVersionStateHook?.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"title","d":"expression","e":"details.label"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"title","d":"expression","e":"details.label"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"title","d":"string","e":"Select Shared Events"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))"},{"b":"maxWidth","d":"expression","e":"\"lg\""},{"b":"contentLayout","d":"string","e":"contents"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteDialogOpen"},{"b":"title","d":"expression","e":"`Delete Consumer`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteConsumerButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: handleDelete, dataQa: \"deleteConsumerButton\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteDialogOpen"},{"b":"title","d":"expression","e":"`Delete Subscription`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteSubscriptionButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(consumerId, index), dataQa: \"deleteSubscriptionButton\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"contentText","d":"expression","e":"errorObject.message ?? \"\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Delete Application Domain\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onClose }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Delete Application Domain`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t\t\t{ dataQa: \"delete\", label: \"Delete\", variant: \"outline\", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"deleteApplicationDomain.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"title","d":"string","e":"Application Domain Export Preview"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"domainExport-cancel\", onClick: () => onCancel() },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Export\",\n\t\t\t\t\tdataQa: \"domainExport-confirm\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: !!errorMsg,\n\t\t\t\t\tonClick: () => onExport()\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx","c":[{"b":"title","d":"expression","e":"error.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"contentText","d":"expression","e":"error.message"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Kafka Settings\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Save\", variant: \"outline\", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","c":[{"b":"title","d":"expression","e":"customAttributeValidations?.title"},{"b":"isOpen","d":"expression","e":"!!customAttributeValidations"},{"b":"actions","d":"expression","e":"customAttributeValidations?.actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx","c":[{"b":"title","d":"expression","e":"\"Error Importing Application Domains\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetErrorMsg(\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx","c":[{"b":"title","d":"expression","e":"appDomainCount === 1 ? \"Importing Application Domain\" : \"Importing Application Domains\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"contentText","d":"expression","e":"\"The import may take several minutes.\""},{"b":"actions","d":"null","e":"null"},{"b":"linearProgressIndicator","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx","c":[{"b":"title","d":"expression","e":"\"Error Importing Application Domains\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"contentText","d":"variable","e":"errorMsg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.eventApiProduct.labels.availability.dialogTitle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: en.common.button.cancel, onClick: () => setOpen(false) },\n\t\t\t\t\t\t{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"updatePublishState.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"title","d":"expression","e":"error.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"contentText","d":"expression","e":"error.message"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetOpen(false);\n\t\t\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title || \"Error\""},{"b":"contentText","d":"expression","e":"errorObject.message"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ dataQa: \"topicAddressResourcesCancel\", label: \"Cancel\", variant: \"outline\", onClick: onReset },\n\t\t\t\t{ dataQa: \"topicAddressResourcesDone\", label: ctaLabel, variant: \"call-to-action\", onClick: onDone }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"failedTopicDomains?.length > 0\n\t\t\t\t\t? [{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn },\n\t\t\t\t\t\t\t{ label: \"Use Duplicates\", variant: \"outline\", onClick: onContinue }\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"showErrorDialog"},{"b":"title","d":"expression","e":"error.title"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t\t\t
{`${collisionErrors ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"eventApi.id"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"eventApi.id"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"title","d":"expression","e":"modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\tmodeSelectionToConfirm === Mode.custom\n\t\t\t\t\t\t\t\t\t? messagesConfiguration.solaceClientProfileName.customize\n\t\t\t\t\t\t\t\t\t: messagesConfiguration.selectTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.custom) {\n\t\t\t\t\t\t\t\t\tsetValue(FormCustomizedClientProfileName, observedConfiguration ?? \"\");\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\treset(modeSelectionToConfirm === Mode.template);\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"title","d":"expression","e":"modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.template) {\n\t\t\t\t\t\t\t\t\tupdateUserConfigValues({}, true);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"title","d":"expression","e":"en.application.configuration.restDeliveryPoint.addRequestHeader"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\tonClick: () => handleClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tdataQa: \"add-request-header-submit\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tlabel: en.application.configuration.restDeliveryPoint.addRequestHeader,\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleAddRequestHeader();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"\"Topic Address Required\""},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"isEditing\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: () => setOpen(false), dataQa: \"credentialsCancel\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: common.button.save,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tonClick: () => onSave(),\n\t\t\t\t\t\t\t\tisDisabled: isLoading || !isValid || !!error,\n\t\t\t\t\t\t\t\tdataQa: \"credentialsSave\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [{ label: common.button.close, variant: \"call-to-action\", onClick: () => setOpen(false), dataQa: \"credentialsClose\" }]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"isOpen","d":"expression","e":"!!error"},{"b":"title","d":"expression","e":"\"Error Sending Requests\""},{"b":"contentText","d":"expression","e":"error ?? \"\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"messages.action.removeCredentials"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.remove,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {\n\t\t\t\t\t\t\t\t\t\trefreshApplicationDeploymentPreviews.refresh();\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\thandleBackendError(messages.credentials.removeCredentialsErrorTitle, error);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// close the dialog\n\t\t\t\t\t\t\t\tsetRemoveCredentialsData(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Review Event Access Request\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onCancel }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Review Event Access Request"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Send Review\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: sendReviewButtonDisabled,\n\t\t\t\t\t\t\tdataQa: \"sendReviewButton\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"linearProgressIndicator","d":"expression","e":"approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Revoke Event Access\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onCancel }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Revoke Event Access"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Revoke Access\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: declineEventAccessRequest.isLoading\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"linearProgressIndicator","d":"expression","e":"declineEventAccessRequest.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","c":[{"b":"isOpen","d":"variable","e":"userNotFoundDialogOpen"},{"b":"title","d":"string","e":"User No Longer Exist"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: \"Close & Clear Filters\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\t\t\tonClick: handleCloseAndClearFilters\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"title","d":"expression","e":"\"Disclaimer\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: () => setIsDialogOpen(false) }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"variable","e":"isLoading"},{"b":"title","d":"expression","e":"getInProgressTitle(activeStep)"},{"b":"actions","d":"array","e":"[]"},{"b":"linearProgressIndicator","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"expression","e":"errorMessage !== \"\""},{"b":"title","d":"string","e":"Encountered Error while Creating Assets"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: () => setErrorMessage(\"\") }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"expression","e":"genAiErrorMessage !== \"\""},{"b":"title","d":"expression","e":"`Encountered Error while ${getInProgressTitle(activeStep)}`"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"call-to-action\", onClick: () => setGenAiErrorMessage(\"\") }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"variable","e":"isMoreInformationDialogOpen"},{"b":"title","d":"string","e":"More Information Required"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setIsMoreInformationDialogOpen(false)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"expression","e":"activeStepToConfirm !== -1"},{"b":"title","d":"string","e":"Progress Reset Warning"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setActiveStepToConfirm(-1)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Continue\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => handleSetActiveStep(activeStepToConfirm)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: () => setApiError(null) }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx","c":[{"b":"key","d":"expression","e":"\"learningCenterErrorDialog\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"contentText","d":"variable","e":"description"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Run Discovery Scan"},{"b":"actions","d":"expression","e":"renderDialogActionButtons(messagingServicesForDataCollection)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Data Collection Logs\""},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"xl\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Delete Data Collection\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onClose }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Data Collection"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteScan.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Custom Discovery Scan"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Run Discovery Scan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isRunDiscoveryScanButtonDisabled,\n\t\t\t\t\tonClick: initiateCustomScan\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteConfirmationDialogOpen"},{"b":"title","d":"string","e":"Delete Event Broker From Event Portal"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"isOpen","d":"variable","e":"eventManagementAgentNeedsUpdateDialogOpen"},{"b":"title","d":"string","e":"Event Management Agent Needs Update"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseEMAUpdateDialog },\n\t\t\t\t\t\t{ label: \"Open Event Management Agent\", variant: \"outline\", onClick: handleGoToEMA }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"isAddMode ? (\n\t\t\t\t\t
\n\t\t\t\t\t\t setIsAddMode(false)}>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tAdd Environment Association\n\t\t\t\t\t
\n\t\t\t\t) : (\n\t\t\t\t\t<>{showViewOnly ? \"View Environment Associations\" : \"Manage Environment Associations\"}\n\t\t\t\t)"},{"b":"actions","d":"expression","e":"showViewOnly\n\t\t\t\t\t? [{ label: \"Close\", variant: \"call-to-action\", onClick: handleClose }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleClose },\n\t\t\t\t\t\t\t{ label: isAddMode ? \"Add\" : \"Save\", variant: \"call-to-action\", onClick: handleClick }\n\t\t\t\t\t ]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Add Environment Association\""},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(\n\t\t\t\tisLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,\n\t\t\t\tcancel,\n\t\t\t\tupdate\n\t\t\t)"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","c":[{"b":"title","d":"expression","e":"auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? \"Configuration\" : \"Runtime Configuration\""},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeDetailsDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"variable","e":"dialogTitle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"closeConfirmDialog\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"applyConfirmDialog\",\n\t\t\t\t\tonClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),\n\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeCompareDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"renderHeader()"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"variable","e":"title"},{"b":"linearProgressIndicator","d":"expression","e":"!!isLoading"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"cancelAuditButton\" },\n\t\t\t\t{ label: \"Import\", variant: \"call-to-action\", isDisabled: auditInError, onClick: handleImport, dataQa: \"importAuditButton\" }\n\t\t\t]"},{"b":"customAction","d":"variable","e":"customAction"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx","c":[{"b":"title","d":"string","e":"Import Progress"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tdataQa: \"auditImport-close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => setAuditImportProgressDialogOpen(false)\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"title","d":"string","e":"Setting Up Offline Event Management Agent"},{"b":"isOpen","d":"variable","e":"standaloneDialogOpen"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: handleStandaloneClose, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"title","d":"string","e":"Event Management Agent Set Up Complete"},{"b":"isOpen","d":"variable","e":"emaSetupCompleteDialog"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tonClick: handleEmaSetupCompleteDialogClose,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Go to Modeled Event Meshes\",\n\t\t\t\t\t\t\tonClick: handleGotoMEM,\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Unable to Delete ${runtimeAgentName}`"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onClose }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","c":[{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Event Management Agent Connection"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: deleteEventManagementAgent.isLoading,\n\t\t\t\t\t\t\tonClick: handleDelete\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx","c":[{"b":"maxWidth","d":"expression","e":"\"md\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Skip and Install"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Skip\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleSkip\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteConfirmationDialogOpen"},{"b":"title","d":"string","e":"Delete Event Broker From Event Portal"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isOpen","d":"variable","e":"unableToDeleteDialogOpen"},{"b":"title","d":"string","e":"Unable to Delete"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseUnableToDeleteDialog },\n\t\t\t\t\t{ label: \"Open Modeled Event Mesh\", variant: \"outline\", onClick: handleOpenModeledEventMesh }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"maxWidth","d":"expression","e":"\"md\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Connection File Created"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose, dataQa: \"connectionFileDialogCloseButton\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"title","d":"expression","e":"application.configuration.setDefaultTemplate"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: application.configuration.setDefaultTemplate,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetObservedConfiguration({\n\t\t\t\t\t\t\t\t\tname: configurationName,\n\t\t\t\t\t\t\t\t\tvalue: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"defaultTemplateConfirmationDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, onClick: () => onClose() },\n\t\t\t\t{ label: en.common.button.delete, dataQa: \"deleteTemplate\", variant: \"outline\", onClick: handleDeleteTemplate }\n\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..d25720879 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +112 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..bee2f7817 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":112} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/commonProps.json new file mode 100644 index 000000000..274d52c04 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"value","count":1},{"name":"onChange","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/files.json new file mode 100644 index 000000000..788550b9f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/instances.json new file mode 100644 index 000000000..92b6d78ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"value","d":"variable","e":"endOfLifeDate"},{"b":"onChange","d":"variable","e":"handleEndOfLifeDateChange"},{"b":"dataQa","d":"string","e":"endOfLifeDateSelect"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDatePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/commonProps.json new file mode 100644 index 000000000..ffd3edb94 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/commonProps.json @@ -0,0 +1 @@ +[{"name":"details","count":13},{"name":"actions","count":12},{"name":"msgImg","count":10},{"name":"title","count":10}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/files.json new file mode 100644 index 000000000..7822f8237 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/instances.json new file mode 100644 index 000000000..53b4054dc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"actions[0] ?? null"},{"b":"details","d":"expression","e":"details[0] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"actions","d":"expression","e":"actions[1] ?? null"},{"b":"details","d":"expression","e":"details[1] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"actions[0] ?? null"},{"b":"details","d":"expression","e":"details[0] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"actions","d":"expression","e":"actions[1] ?? null"},{"b":"details","d":"expression","e":"details[1] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"actions[0] ?? null"},{"b":"details","d":"expression","e":"details[0] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","c":[{"b":"actions","d":"expression","e":"actions[1] ?? null"},{"b":"details","d":"expression","e":"details[1] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"messages[configType].emptyConfigurationTitle"},{"b":"actions","d":"jsx","e":"\n\t\t\t\t\t\t{messages[configType].emptyLinkToDocumentation}\n\t\t\t\t\t"},{"b":"details","d":"jsx","e":"{messages[configType].emptyConfigurationDetail}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/usagesByMfe.json new file mode 100644 index 000000000..6e7c8ff73 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDetailMessage/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/commonProps.json new file mode 100644 index 000000000..2cf7cc46c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/commonProps.json @@ -0,0 +1 @@ +[{"name":"data","count":1},{"name":"showTooltip","count":1},{"name":"icon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/files.json new file mode 100644 index 000000000..03098c5f8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/instances.json new file mode 100644 index 000000000..e8fddea00 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"data","d":"expression","e":"getPieChartData()"},{"b":"showTooltip","d":"boolean","e":"true"},{"b":"icon","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDonutChart/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/commonProps.json new file mode 100644 index 000000000..dca4fa732 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":15},{"name":"width","count":15},{"name":"top","count":15},{"name":"height","count":15},{"name":"minWidth","count":14},{"name":"maxWidth","count":14},{"name":"resizable","count":14},{"name":"onResizeDone","count":14},{"name":"anchor","count":3},{"name":"offset","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/files.json new file mode 100644 index 000000000..31a07f5b2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/instances.json new file mode 100644 index 000000000..05859d3b7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx","c":[{"b":"open","d":"boolean","e":"true"},{"b":"width","d":"variable","e":"DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL"},{"b":"top","d":"expression","e":"\"50px\""},{"b":"anchor","d":"string","e":"left"},{"b":"offset","d":"expression","e":"\"0px\""},{"b":"height","d":"expression","e":"`calc(100vh - 100px)`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initSearchPanelWidth"},{"b":"minWidth","d":"variable","e":"minWidth"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"variable","e":"resizable"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"expression","e":"`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`"},{"b":"offset","d":"expression","e":"`${leftOffset}px`"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`"},{"b":"anchor","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initSearchPanelWidth"},{"b":"minWidth","d":"variable","e":"SEARCH_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"expression","e":"`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`"},{"b":"offset","d":"expression","e":"`${leftOffset}px`"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`"},{"b":"anchor","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx","c":[{"b":"open","d":"boolean","e":"true"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"minWidth"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/totalUsages.json new file mode 100644 index 000000000..3f10ffe7a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/totalUsages.json @@ -0,0 +1 @@ +15 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/usagesByMfe.json new file mode 100644 index 000000000..4f2291d7e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceDrawer/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":15} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/commonProps.json new file mode 100644 index 000000000..50be6a2d4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":9},{"name":"dataQa","count":5},{"name":"label","count":4},{"name":"maxWidth","count":4},{"name":"onDelete","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/files.json new file mode 100644 index 000000000..5a693106f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/instances.json new file mode 100644 index 000000000..8668972e4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"...","d":"spread","e":"item.environmentOption"},{"b":"label","d":"string","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","c":[{"b":"...","d":"spread","e":"option"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"maxWidth","d":"variable","e":"maxWidth"},{"b":"onDelete","d":"expression","e":"onDelete || null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"...","d":"spread","e":"context.environmentOption"},{"b":"label","d":"string","e":""},{"b":"maxWidth","d":"string","e":"26px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"...","d":"spread","e":"contextOption.environmentOption"},{"b":"label","d":"string","e":""},{"b":"maxWidth","d":"string","e":"26px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"...","d":"spread","e":"environmentOption"},{"b":"label","d":"string","e":""},{"b":"maxWidth","d":"string","e":"26px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/usagesByMfe.json new file mode 100644 index 000000000..f25e04ce7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentChip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/commonProps.json new file mode 100644 index 000000000..742235c56 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":2},{"name":"label","count":1},{"name":"fgColor","count":1},{"name":"bgColor","count":1},{"name":"icon","count":1},{"name":"variant","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/files.json new file mode 100644 index 000000000..94235e4f3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/instances.json new file mode 100644 index 000000000..2b4607268 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx","c":[{"b":"...","d":"spread","e":"item.environmentOption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"variable","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"standard"},{"b":"dataQa","d":"string","e":"eventMesh[environment]"},{"b":"...","d":"spread","e":"environmentOption"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/usagesByMfe.json new file mode 100644 index 000000000..9e08d3ea6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/commonProps.json new file mode 100644 index 000000000..24daf4098 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":1},{"name":"value","count":1},{"name":"onChange","count":1},{"name":"options","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/files.json new file mode 100644 index 000000000..d66c557d7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/instances.json new file mode 100644 index 000000000..f057f90e5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","c":[{"b":"name","d":"string","e":"MEMListEnvironmentSelector"},{"b":"value","d":"expression","e":"selectedEnvironment?.environmentId"},{"b":"onChange","d":"function","e":"({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)"},{"b":"options","d":"variable","e":"environmentOptions"},{"b":"dataQa","d":"string","e":"REMHeaderEnvironmentSelector"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceEnvironmentSelectChip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/commonProps.json new file mode 100644 index 000000000..acb6730e3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":1},{"name":"showCloseButton","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/files.json new file mode 100644 index 000000000..68ace343f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/instances.json new file mode 100644 index 000000000..ea8977707 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceErrorBox/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/commonProps.json new file mode 100644 index 000000000..dca3ebc87 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/commonProps.json @@ -0,0 +1 @@ +[{"name":"item","count":95},{"name":"xs","count":54},{"name":"container","count":25},{"name":"alignItems","count":19},{"name":"className","count":15},{"name":"data-qa","count":14},{"name":"key","count":13},{"name":"style","count":11},{"name":"spacing","count":11},{"name":"width","count":10},{"name":"mt","count":8},{"name":"direction","count":7},{"name":"justifyContent","count":6},{"name":"display","count":6},{"name":"md","count":4},{"name":"color","count":3},{"name":"columnSpacing","count":3},{"name":"pt","count":2},{"name":"columnGap","count":2},{"name":"padding","count":2},{"name":"alignSelf","count":2},{"name":"minWidth","count":2},{"name":"columns","count":1},{"name":"ml","count":1},{"name":"gap","count":1},{"name":"wrap","count":1},{"name":"paddingRight","count":1},{"name":"height","count":1},{"name":"pl","count":1},{"name":"maxHeight","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/files.json new file mode 100644 index 000000000..82210fd26 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/instances.json new file mode 100644 index 000000000..7bc12aedc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"},{"b":"width","d":"expression","e":"\"800px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"grid\", gridTemplateColumns: \"1fr 1fr\", gap: \"8px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"},{"b":"width","d":"expression","e":"\"800px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"pt","d":"number","e":"2"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"style","d":"object","e":"{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"pt","d":"number","e":"2"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"style","d":"object","e":"{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ marginLeft: theme.spacing(4) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"xs","d":"number","e":"2"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"data-qa","d":"expression","e":"`${caKey}-value`"},{"b":"xs","d":"number","e":"10"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"},{"b":"display","d":"string","e":"flex"},{"b":"columnGap","d":"expression","e":"\"8px\""},{"b":"alignItems","d":"expression","e":"\"flex-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"className","d":"string","e":"name edit"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"spacing","d":"number","e":"2"},{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"data-qa","d":"expression","e":"\"attributeName-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"data-qa","d":"expression","e":"\"type-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"data-qa","d":"expression","e":"\"scope-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"expression","e":"isEditable || nameInEditMode ? \"flex-start\" : \"center\""},{"b":"display","d":"expression","e":"\"flex\""},{"b":"data-qa","d":"expression","e":"`${caKey}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"color","d":"function","e":"(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"color","d":"function","e":"(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)"},{"b":"data-qa","d":"expression","e":"`${caKey}-valueType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"color","d":"function","e":"(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)"},{"b":"data-qa","d":"expression","e":"`${caKey}-scope`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"expression","e":"isEditable ? 1 : 2"},{"b":"style","d":"object","e":"{ display: \"flex\", justifyContent: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"expression","e":"\"flex-start\""},{"b":"display","d":"expression","e":"\"flex\""},{"b":"data-qa","d":"expression","e":"`${caErrorKey}-message`"},{"b":"key","d":"expression","e":"`${caErrorKey}-message`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"key","d":"expression","e":"`${caKey}-errorMsg-content`"},{"b":"display","d":"expression","e":"\"flex\""},{"b":"alignItems","d":"expression","e":"\"flex-start\""},{"b":"columnGap","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"key","d":"expression","e":"`${caKey}-errorMsg-action`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columns","d":"number","e":"3"},{"b":"spacing","d":"number","e":"1.5"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem additionalFilter"},{"b":"key","d":"expression","e":"`${filterType}-select`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"key","d":"expression","e":"`${selectedFilter.type}Select`"},{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem customAttribute"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"padding","d":"number","e":"0"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"xs","d":"number","e":"2"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"data-qa","d":"expression","e":"`${caKey}-value`"},{"b":"xs","d":"number","e":"10"},{"b":"mt","d":"number","e":"1"},{"b":"display","d":"string","e":"flex"},{"b":"alignItems","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"className","d":"string","e":"name edit"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2.5"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"ml","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"center"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"center"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ paddingTop: \"24px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"display","d":"expression","e":"\"flex\""},{"b":"gap","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"flex\", flexDirection: \"row\", alignItems: \"center\", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"2"},{"b":"alignSelf","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"2"},{"b":"alignSelf","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"expression","e":"\"0\""},{"b":"direction","d":"expression","e":"\"row\""},{"b":"wrap","d":"string","e":"nowrap"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"minWidth","d":"expression","e":"\"450px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"},{"b":"minWidth","d":"expression","e":"\"538px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"},{"b":"paddingRight","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"},{"b":"padding","d":"number","e":"3"},{"b":"width","d":"string","e":"100%"},{"b":"height","d":"expression","e":"`calc(100% - 65px)`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ width: SIDE_PANEL_WIDTH }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: \"flex\", flexDirection: \"column\" }"},{"b":"pl","d":"number","e":"3"},{"b":"maxHeight","d":"expression","e":"\"100%\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/totalUsages.json new file mode 100644 index 000000000..8bc658371 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/totalUsages.json @@ -0,0 +1 @@ +120 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/usagesByMfe.json new file mode 100644 index 000000000..b96219088 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGrid/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":120} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/commonProps.json new file mode 100644 index 000000000..844180eba --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":9},{"name":"rowMapping","count":9},{"name":"gridTemplate","count":9},{"name":"dataQa","count":7},{"name":"selectedItemId","count":6},{"name":"onSelection","count":6},{"name":"virtualizedListOption","count":4},{"name":"indicatorVariantIdentifier","count":3},{"name":"emphasizedIdentifier","count":3},{"name":"background","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/files.json new file mode 100644 index 000000000..2e362747c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/instances.json new file mode 100644 index 000000000..9d20b16ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","c":[{"b":"items","d":"variable","e":"entityVersions"},{"b":"rowMapping","d":"variable","e":"mapEntity"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"processEntityVersionHighlight"},{"b":"gridTemplate","d":"string","e":"minmax(auto, auto) minmax(auto, auto) 16px"},{"b":"dataQa","d":"expression","e":"\"appDomainGraphSearchResultsGrid_\" + entityType"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\theight: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,\n\t\t\t\t\t\titemHeight: SEARCH_LIST_ITEM_HEIGHT,\n\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"items","d":"variable","e":"eventApiProductVersions"},{"b":"rowMapping","d":"variable","e":"getListRow"},{"b":"gridTemplate","d":"string","e":"auto 0fr"},{"b":"dataQa","d":"string","e":"eventApiProductList"},{"b":"background","d":"string","e":"white"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"items","d":"variable","e":"primitiveSchemaTypeOptions"},{"b":"onSelection","d":"variable","e":"onPrimitiveTypeChange"},{"b":"rowMapping","d":"variable","e":"getPrimitiveTypeRowComponents"},{"b":"selectedItemId","d":"variable","e":"selectedPrimitiveType"},{"b":"gridTemplate","d":"string","e":"auto"},{"b":"dataQa","d":"string","e":"primitiveTypes"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","c":[{"b":"items","d":"variable","e":"filteredAndSortedVersions"},{"b":"rowMapping","d":"variable","e":"getListRow"},{"b":"gridTemplate","d":"string","e":"auto 0fr"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","c":[{"b":"items","d":"variable","e":"sortedRelationshipVersions"},{"b":"rowMapping","d":"variable","e":"getListRow"},{"b":"gridTemplate","d":"string","e":"auto 0fr"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"items","d":"variable","e":"sortedMessagingServiceList"},{"b":"rowMapping","d":"variable","e":"getMessagingServiceRow"},{"b":"selectedItemId","d":"expression","e":"selectedMessagingService?.id"},{"b":"onSelection","d":"variable","e":"handleSelectMessagingService"},{"b":"gridTemplate","d":"expression","e":"\"minmax(10ch,auto) 1fr\""},{"b":"dataQa","d":"string","e":"messagingServiceListOfSelectedMEM"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","c":[{"b":"items","d":"variable","e":"listItems"},{"b":"indicatorVariantIdentifier","d":"expression","e":"\"variant\""},{"b":"emphasizedIdentifier","d":"expression","e":"\"emphasized\""},{"b":"rowMapping","d":"variable","e":"renderEventVersionRow"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"handleEntityVersionHighlight"},{"b":"gridTemplate","d":"expression","e":"\"minmax(auto, auto) minmax(auto, auto) 16px\""},{"b":"dataQa","d":"variable","e":"eventListDataQa"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","c":[{"b":"items","d":"variable","e":"listItems"},{"b":"indicatorVariantIdentifier","d":"expression","e":"\"variant\""},{"b":"emphasizedIdentifier","d":"expression","e":"\"emphasized\""},{"b":"rowMapping","d":"variable","e":"renderSchemaVersionRow"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"handleEntityVersionHighlight"},{"b":"gridTemplate","d":"expression","e":"\"minmax(auto, auto) minmax(auto, auto) 16px\""},{"b":"dataQa","d":"variable","e":"schemaListDataQa"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 52,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","c":[{"b":"items","d":"variable","e":"listItems"},{"b":"indicatorVariantIdentifier","d":"expression","e":"\"variant\""},{"b":"emphasizedIdentifier","d":"expression","e":"\"emphasized\""},{"b":"rowMapping","d":"variable","e":"renderAppVersionRow"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"handleEntityVersionHighlight"},{"b":"gridTemplate","d":"expression","e":"\"minmax(auto, auto) minmax(auto, auto) 16px\""},{"b":"dataQa","d":"variable","e":"appVersionListDataQa"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..f25e04ce7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/commonProps.json new file mode 100644 index 000000000..4808e699f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"formData","count":2},{"name":"formItem","count":2},{"name":"formOptions","count":2},{"name":"onChange","count":2},{"name":"transformError","count":2},{"name":"transformWidget","count":2},{"name":"transformTitle","count":1},{"name":"readOnly","count":1},{"name":"disabled","count":1},{"name":"ajvClass","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/files.json new file mode 100644 index 000000000..cb8c28b01 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/instances.json new file mode 100644 index 000000000..19730a1eb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx","c":[{"b":"formData","d":"variable","e":"formData"},{"b":"formItem","d":"object","e":"{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}"},{"b":"formOptions","d":"object","e":"{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"transformError","d":"function","e":"(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}"},{"b":"transformTitle","d":"function","e":"(props) => transformProps(props, showPropertyNames)"},{"b":"transformWidget","d":"function","e":"(props) => transformProps(props, showPropertyNames)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx","c":[{"b":"formData","d":"variable","e":"formData"},{"b":"formItem","d":"object","e":"{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}"},{"b":"formOptions","d":"object","e":"{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}"},{"b":"readOnly","d":"expression","e":"!onChange"},{"b":"disabled","d":"expression","e":"!enabled"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"transformError","d":"function","e":"(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}"},{"b":"transformWidget","d":"function","e":"(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}"},{"b":"ajvClass","d":"variable","e":"Ajv2019"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceJsonSchemaForm/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/commonProps.json new file mode 100644 index 000000000..01bdc4599 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":246},{"name":"htmlForId","count":62},{"name":"required","count":37},{"name":"noWrap","count":11},{"name":"readOnly","count":6},{"name":"disabled","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/files.json new file mode 100644 index 000000000..edbc1b87d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/instances.json new file mode 100644 index 000000000..9f49a3737 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Name`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Version`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"id","d":"expression","e":"\"bulkMoveCurrentAppDomainLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"eventBrokerConfiguration\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"eventBrokerName\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"applicationName\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"applicationVersion\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"directClients\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"eventQueues\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"kafkaConsumers\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"authenticationType\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"authenticationA\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"authenticationB\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"clientProfile\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"RDPName\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"RESTConsumerType\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"clientProfileLabel\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"queueConsumers\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"nameHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"typeHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"roleHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"expression","e":"\"resourceAssignmentListLoading\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileNameLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileNameLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"defaultClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[version]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[stateName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[stateName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[displayName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"id","d":"expression","e":"\"newVersion-label\""},{"b":"htmlForId","d":"expression","e":"\"newVersion\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"string","e":"linkedApplications-label"},{"b":"htmlForId","d":"variable","e":"htmlForId"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[version]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"required","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[displayName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[state]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[state]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"id","d":"expression","e":"\"attributeName-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"id","d":"expression","e":"\"type-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"id","d":"expression","e":"\"scope-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","c":[{"b":"id","d":"expression","e":"`${version.id}[versionVersion]-label`"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","c":[{"b":"id","d":"expression","e":"`${version.id}[versionDisplayName]-label`"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","c":[{"b":"id","d":"expression","e":"`${version.id}[versionDescription]-label`"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"id","d":"string","e":"version"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"id","d":"string","e":"associateWithEvent"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"id","d":"string","e":"eventDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"id","d":"string","e":"requiresApproval"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","c":[{"b":"id","d":"expression","e":"`messagingServiceDetails[${attribute}]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"id","d":"expression","e":"\"eventMesh[description]-label\""},{"b":"htmlForId","d":"expression","e":"\"eventMesh[description]-label\""},{"b":"disabled","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"id","d":"string","e":"eventMesh[environment]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Domain`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"expression","e":"`accessApproval`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"string","e":"parentShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[endOfLife]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[endOfLife]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[shared]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","c":[{"b":"id","d":"string","e":"env"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showNewEventVersionIndicator-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"snapNodeToGrid-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"id","d":"string","e":"multiSelectKey"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","c":[{"b":"id","d":"expression","e":"`entityVersion-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Preview`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}[customColour]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityType}[customColour]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}[customIconLogo]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityType}[customIconLogo]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityName}[versionState]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityName}[versionState]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityName}[endOfLifeDate]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityName}[endOfLifeDate]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[version]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[displayName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-name`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-consumerType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"id","d":"string","e":"suggested-events"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"attractedEventsLoadingLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"attractedEventsNoPermission\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"attractedEvents\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-name`"},{"b":"htmlForId","d":"expression","e":"`applicationVersion[consumers].${index}.name`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-consumerType`"},{"b":"htmlForId","d":"expression","e":"`applicationVersion[consumers].${index}.consumerType`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"id","d":"string","e":"subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"id","d":"expression","e":"`${consumer.name}-templateLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"id","d":"expression","e":"\"selectAllDomainsLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"id","d":"expression","e":"\"selectedDomainsLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"id","d":"variable","e":"sectionId"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"id","d":"expression","e":"\"filename-label\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"id","d":"string","e":"kafkaDelimiter"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"id","d":"string","e":"approvalType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"id","d":"string","e":"availabilityLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"messageDeliveryMode"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"accessType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"queueType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"maxTTL"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"maxMsgSpoolUsage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"id","d":"string","e":"eventApiProduct[name]-label"},{"b":"htmlForId","d":"string","e":"eventApiProduct[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"id","d":"string","e":"eventApiProduct[brokerType]-label"},{"b":"htmlForId","d":"string","e":"eventApiProduct[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"messageDeliveryMode"},{"b":"required","d":"expression","e":"!isEmpty(getValues(`${versionObjectName}.name`))"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"accessType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"queueType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"maxTTL"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"maxMsgSpoolUsage"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"id","d":"string","e":"planNameLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"id","d":"string","e":"eventApiProductShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[name]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[description]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[description]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"expression","e":"`brokerTypeLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"expression","e":"`topicDomainLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"name-label\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"resource-label\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"description-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"topicAddressResourcesMessageLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"topicAddressResourcesPreview\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`brokerType-${topicDomain.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`topicDomainLabel-${topicDomain.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`brokerTypeLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`topicDomainLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[name]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[description]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[description]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"id","d":"string","e":"eventApiShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"id","d":"string","e":"declaredEAPVersions-label"},{"b":"htmlForId","d":"string","e":"declaredEAPVersions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"id","d":"string","e":"eventApi[name]-label"},{"b":"htmlForId","d":"string","e":"eventApi[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"id","d":"string","e":"eventApi[brokerType]-label"},{"b":"htmlForId","d":"string","e":"eventApi[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"id","d":"string","e":"domainsSearchLabel"},{"b":"htmlForId","d":"string","e":"domainsSearch"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[{"b":"id","d":"expression","e":"\"filter-popup-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"string","e":"template"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"string","e":"customModeNone"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"string","e":"customModeNone"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"id","d":"string","e":"restDeliveryPointConfigurationEmpty"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"id","d":"expression","e":"`restDeliveryPointConfigurationType-label`"},{"b":"htmlForId","d":"expression","e":"`restDeliveryPointConfigurationType`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"id","d":"expression","e":"`restDeliveryPointName-label`"},{"b":"htmlForId","d":"expression","e":"`restDeliveryPointName`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`postRequestTarget-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"\"requestTargetEvaluation-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`${prefix}TypeLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`${prefix}NameLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`${prefix}ValueLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"\"postRequestTarget-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"\"requestTargetEvaluation-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"id","d":"string","e":"enumerationVersion[values]-label"},{"b":"htmlForId","d":"string","e":"enumerationVersion[values]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"id","d":"string","e":"enumShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","c":[{"b":"id","d":"string","e":"enumeration[name]-label"},{"b":"htmlForId","d":"string","e":"enumeration[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"id","d":"string","e":"enumerationVersion[values]-label"},{"b":"htmlForId","d":"string","e":"enumerationVersion[values]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[shared]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[description]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"id","d":"expression","e":"`schemaVersion[version]-label`"},{"b":"htmlForId","d":"expression","e":"`schemaVersion[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"id","d":"string","e":"schemaVersion[content]-label"},{"b":"htmlForId","d":"string","e":"schemaVersion[content]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"},{"b":"id","d":"expression","e":"\"domainsSearch[label]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"string","e":"topicAddressResource"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"expression","e":"\"eventVersion[topicAddressLevels]-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"schemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"keySchemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"id","d":"string","e":"event[name]-label"},{"b":"htmlForId","d":"string","e":"event[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"id","d":"string","e":"event[brokerType]-label"},{"b":"htmlForId","d":"string","e":"event[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"id","d":"string","e":"event[requiresApproval]-label"},{"b":"htmlForId","d":"string","e":"event[requiresApproval]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"expression","e":"\"eventVersion[topicAddressLevels]-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"schemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"keySchemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"string","e":"appearsIn-label"},{"b":"htmlForId","d":"string","e":"appearsIn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"id","d":"string","e":"eventBrokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"id","d":"string","e":"eventShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"id","d":"expression","e":"`eventVersion[version]-label`"},{"b":"htmlForId","d":"expression","e":"`eventVersion[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"id","d":"expression","e":"`eventVersion[topicAddress]-label`"},{"b":"htmlForId","d":"expression","e":"`eventVersion[topicAddress]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"id","d":"string","e":"associateWithEvent"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","c":[{"b":"id","d":"string","e":"selectedMem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"id","d":"string","e":"application[name]-label"},{"b":"htmlForId","d":"string","e":"application[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"id","d":"string","e":"application[brokerType]-label"},{"b":"htmlForId","d":"string","e":"application[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"id","d":"expression","e":"`${eventBroker.id}-noCredentials`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"id","d":"expression","e":"`${eventBroker.id}-noApplicationVersion`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"id","d":"string","e":"not-declared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"id","d":"string","e":"declared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"id","d":"expression","e":"\"subscription\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"id","d":"string","e":"schemaVersion[content]-label"},{"b":"htmlForId","d":"string","e":"schemaVersion[content]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"id","d":"string","e":"schemaVersion[content]-label"},{"b":"htmlForId","d":"string","e":"schemaVersion[content]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","c":[{"b":"id","d":"expression","e":"\"schemaTypeLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"id","d":"string","e":"schema[name]-label"},{"b":"htmlForId","d":"string","e":"schema[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"id","d":"string","e":"schema[schemaType]-label"},{"b":"htmlForId","d":"string","e":"schema[schemaType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"eventTopic"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"subscriptionEvent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"subscriptionEvent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomainLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"id","d":"string","e":"application"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiBrokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiProductBrokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiProductDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiProductShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"id","d":"string","e":"brokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"id","d":"string","e":"schemaDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"requiresApproval"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"eventDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"id","d":"string","e":"enumDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"id","d":"string","e":"enumShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"id","d":"string","e":"runtimeAgentIdLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showSchema-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"layoutOptions-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"levelDepthOptions-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"\"appVersionSummary-applabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"\"appVersionSummary-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","c":[{"b":"id","d":"expression","e":"\"applicationDomainLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"updateLabelObjecs\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"updateLabelAction\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"id","d":"expression","e":"`serviceLabel-${messagingService.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"id","d":"expression","e":"\"connectedMem\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"eventMeshOfMessagingServiceToBeDeleted-none-label"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[name]-label"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[id]-label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[agentMode]-label"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[EventBrokers]-title"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileName"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"environmentListLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"environmentListLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"id","d":"string","e":"detailsNameLabel"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"id","d":"string","e":"detailsDescriptionLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"id","d":"string","e":"detailsEnvironementAssociationLabel"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/totalUsages.json new file mode 100644 index 000000000..d3b981955 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/totalUsages.json @@ -0,0 +1 @@ +246 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/usagesByMfe.json new file mode 100644 index 000000000..8b3fa8713 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":246} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/commonProps.json new file mode 100644 index 000000000..70b56a39b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":7},{"name":"onClick","count":7},{"name":"dataQa","count":5},{"name":"isDisabled","count":4},{"name":"startIcon","count":3},{"name":"endIcon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/files.json new file mode 100644 index 000000000..5ccf98694 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/instances.json new file mode 100644 index 000000000..8b40025cf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"isDisabled","d":"expression","e":"selectedDetails.disabled"},{"b":"variant","d":"expression","e":"\"dark-outline\""},{"b":"dataQa","d":"expression","e":"`${camelCase(selectedDetails.button)}_button}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t}"},{"b":"startIcon","d":"expression","e":"selectedDetails.accessDenied && "}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"isDisabled","d":"expression","e":"selectedDetails.disabled"},{"b":"variant","d":"expression","e":"\"dark-call-to-action\""},{"b":"dataQa","d":"expression","e":"`${camelCase(selectedDetails.button)}_button}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t\t}"},{"b":"startIcon","d":"expression","e":"selectedDetails.accessDenied && "}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleExploreSample"},{"b":"dataQa","d":"string","e":"exploreSampleButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"isDisabled","d":"expression","e":"!showLoadSampleButton"},{"b":"startIcon","d":"expression","e":"!showLoadSampleButton && "},{"b":"onClick","d":"variable","e":"onClickLoadSamples"},{"b":"dataQa","d":"string","e":"loadSampleDataButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"string","e":"dark-call-to-action"},{"b":"dataQa","d":"string","e":"ExploreOnMyOwnLink"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tdismissableCallback();\n\t\t\t\t\t\t\t\t\tMixpanel.track(\"Element Click\", { \"element-id\": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"variant","d":"string","e":"dark-call-to-action"},{"b":"onClick","d":"variable","e":"redirectToVideos"},{"b":"endIcon","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"isDisabled","d":"expression","e":"!email"},{"b":"variant","d":"string","e":"dark-outline"},{"b":"onClick","d":"variable","e":"onClickInviteUsers"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/usagesByMfe.json new file mode 100644 index 000000000..b404f9339 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLearningButton/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/commonProps.json new file mode 100644 index 000000000..ec4f83224 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":1},{"name":"color","count":1},{"name":"height","count":1},{"name":"value","count":1},{"name":"dataQa","count":1},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/files.json new file mode 100644 index 000000000..4c5708163 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/instances.json new file mode 100644 index 000000000..883a27579 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"variant","d":"string","e":"determinate"},{"b":"color","d":"string","e":"learning"},{"b":"height","d":"string","e":"md"},{"b":"value","d":"variable","e":"completionPercentage"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"key","d":"variable","e":"dataQa"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceLinearProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/commonProps.json new file mode 100644 index 000000000..33ca13543 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/commonProps.json @@ -0,0 +1 @@ +[{"name":"disablePadding","count":5},{"name":"sx","count":3},{"name":"dense","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/files.json new file mode 100644 index 000000000..5c32b172e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/instances.json new file mode 100644 index 000000000..639f7fd64 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"disablePadding","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ marginTop: \"-10px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\"&& .Mui-selected\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20,\n\t\t\t\t\t\t\t\tborderRight: \"0\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"&& .Mui-selected:hover\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/usagesByMfe.json new file mode 100644 index 000000000..b404f9339 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceList/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/commonProps.json new file mode 100644 index 000000000..e24539034 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":5},{"name":"key","count":1},{"name":"data-qa","count":1},{"name":"disablePadding","count":1},{"name":"disableGutters","count":1},{"name":"secondaryAction","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/files.json new file mode 100644 index 000000000..e5f5cdbbb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/instances.json new file mode 100644 index 000000000..d772c4383 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"expression","e":"entity.id"},{"b":"data-qa","d":"expression","e":"`entityId-${entity.id}`"},{"b":"sx","d":"object","e":"{ paddingLeft: \"48px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"},{"b":"disableGutters","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ height: theme.spacing(sampleSetup ? 7 : 9) }"},{"b":"secondaryAction","d":"jsx","e":"{getSecondaryAction()}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/usagesByMfe.json new file mode 100644 index 000000000..647cc5937 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItem/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/commonProps.json new file mode 100644 index 000000000..2fa118992 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"selected","count":5},{"name":"onClick","count":5},{"name":"sx","count":3},{"name":"divider","count":2},{"name":"disableGutters","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/files.json new file mode 100644 index 000000000..635ab514d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/instances.json new file mode 100644 index 000000000..3f99b007e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[{"b":"selected","d":"expression","e":"currentTab === \"acme-retail-sample\""},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\thistory.push(TabsPath.acmeRetail);\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[{"b":"selected","d":"expression","e":"!currentTab || currentTab === \"get-started\""},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\thistory.push(TabsPath.getStarted);\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\tbackground: theme.palette.ux.primary.text.w10,\n\t\t\t\t\t\t\theight: \"100%\",\n\t\t\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t\t\t\tpaddingTop: \"0\",\n\t\t\t\t\t\t\tborder: `1px solid ${theme.palette.ux.secondary.w20}`,\n\t\t\t\t\t\t\tborderBottom: index === data.items.length - 1 ? undefined : \"0\"\n\t\t\t\t\t\t}"},{"b":"disableGutters","d":"boolean","e":"true"},{"b":"selected","d":"variable","e":"selected"},{"b":"onClick","d":"function","e":"() => setSelectedIndex(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }"},{"b":"divider","d":"boolean","e":"true"},{"b":"selected","d":"expression","e":"selectedTemplateType === ConfigurationTypeId.solaceQueue"},{"b":"onClick","d":"function","e":"() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }"},{"b":"divider","d":"boolean","e":"true"},{"b":"selected","d":"expression","e":"selectedTemplateType === ConfigurationTypeId.solaceClientProfileName"},{"b":"onClick","d":"function","e":"() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/usagesByMfe.json new file mode 100644 index 000000000..06d8ab14f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceListItemButton/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/commonProps.json new file mode 100644 index 000000000..0e43ea2dc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":42},{"name":"items","count":42},{"name":"anchorOrigin","count":19},{"name":"transformOrigin","count":19},{"name":"dataQa","count":16},{"name":"key","count":9},{"name":"id","count":5},{"name":"closeOnSelect","count":4},{"name":"numOfMenuItemDisplayed","count":1},{"name":"maxWidth","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/files.json new file mode 100644 index 000000000..50a4352b8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/instances.json new file mode 100644 index 000000000..8a107e654 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\tisDisabled: isEmpty(selectedRowIds),\n\t\t\t\t\t\t\tdataQa: \"selectedEntityActions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"moreActionMenuButton\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"expression","e":"getMenuItemsForEntityDetail()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: en.eventPortalResources.labels.deleteSample.actionMenuTitle\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"getMenuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tdataQa: \"eventDetailModalMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Add Protocol\"\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"solaceAddProtocolMenuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tisDisabled: graphEmpty,\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"settingsMenuItemsProps"},{"b":"closeOnSelect","d":"boolean","e":"true"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"settingsMenuItemsProps"},{"b":"closeOnSelect","d":"boolean","e":"true"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tvariant: \"text\",\n\t\t\t\tchildren: \"Add Filters\"\n\t\t\t}"},{"b":"items","d":"variable","e":"filterMenuItems"},{"b":"closeOnSelect","d":"boolean","e":"false"},{"b":"numOfMenuItemDisplayed","d":"number","e":"9"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"versionMoreAction\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}"},{"b":"items","d":"variable","e":"wrappedMenuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tdataQa: `${selectedNode?.type ?? \"\"}NodeSidePanelMoreAction`,\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"actionMenuItems"},{"b":"dataQa","d":"expression","e":"`${selectedNode?.type ?? \"\"}NodeSidePanelMoreActionMenu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"appDomainEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"actionMenuItems"},{"b":"dataQa","d":"string","e":"appDomainEntityVersionDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\tisDisabled: !isChecked,\n\t\t\t\t\t\tdataQa: \"selectedDomainsActions\"\n\t\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"Export\",\n\t\t\t\t\t\t\tonMenuItemClick: () => onExport(selectedDomainIds),\n\t\t\t\t\t\t\tdataQa: \"selectedDomainsExport\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tdataQa: \"designerMoreAction\",\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\tdataQa: \"domainMoreAction\",\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}"},{"b":"dataQa","d":"string","e":"domainMoreActionMenu"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.eventApiProduct.buttons.openEventApiProduct,\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewVersionDetail(e, item, false)\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\ttitle: en.common.button.moreActions,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"memListMoreAction\"\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"moreActionsButton\",\n\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"key","d":"expression","e":"\"createApplication-menu\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: createLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tdataQa: \"createApplication-button\"\n\t\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.standard,\n\t\t\t\t\t\t\tonMenuItemClick: handleCreate,\n\t\t\t\t\t\t\tdataQa: \"createStandardApplication\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.restDeliveryPoint,\n\t\t\t\t\t\t\tonMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),\n\t\t\t\t\t\t\tdataQa: \"createRestDeliveryPointApplication\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa: `${eventBroker.id}-moreOptionMenuButton`,\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\ttitle: common.button.moreActions\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"moreOptions"},{"b":"dataQa","d":"expression","e":"`${eventBroker.id}-moreOptionMenu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"items","d":"expression","e":"getVersionDetailMenuItem(version, mode)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","c":[{"b":"items","d":"expression","e":"getRunDiscoveryScanOptionsItems()"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tvariant: variant,\n\t\t\t\t\t\tchildren: \"Run Discovery Scan\",\n\t\t\t\t\t\tdataQa: \"runDiscoveryScan\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"left\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"left\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: \"messagingServicesDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"messagingServicesDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"key","d":"expression","e":"`messagingService_${entity.id}-moreActions`"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"memMessagingServiceDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"expression","e":"getMoreOptionsItemsForMessagingService(entity, true)"},{"b":"dataQa","d":"string","e":"memMessagingServiceDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"items","d":"variable","e":"items"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"messagingServiceMoreActionsButton\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"View Event Management Agent\",\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),\n\t\t\t\t\t\t\tdataQa: \"viewRuntimeAgentActionMenu\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"runtimeAgentMoreActionsButton\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"key","d":"string","e":"createEventManagementAgent"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Connect to an Event Management Agent\"\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"CREATE_MENU_ITEMS"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"memEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"actionMenuItems"},{"b":"dataQa","d":"string","e":"memEntityVersionDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx","c":[{"b":"id","d":"expression","e":"\"custom-solace-menu\""},{"b":"dataQa","d":"string","e":"actionMenuForEntityVersionList"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: numberOfSelection === 0,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: \"Actions\"\n\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"memDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\tdataQa: dataQa + \"-button\"\n\t\t\t\t}"},{"b":"items","d":"expression","e":"getMenuItemsProps()"},{"b":"closeOnSelect","d":"boolean","e":"false"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${dataQa}-menu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"memMoreActions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"memDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"memDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tvariant: buttonVariant || \"outline\",\n\t\t\t\t\t\t\tchildren: buttonText || \"Import\",\n\t\t\t\t\t\t\tisDisabled: disabled,\n\t\t\t\t\t\t\tdataQa: \"chooseImportOptionButton\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"maxWidth","d":"expression","e":"readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined"},{"b":"dataQa","d":"expression","e":"dataQa ?? \"auditImportMenu\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"key","d":"string","e":"createEventManagementAgent"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tchildren: \"Set Up Event Management Agent\"\n\t\t\t\t}"},{"b":"items","d":"variable","e":"CREATE_MENU_ITEMS"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..f70d7bba4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +42 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..81481c60e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":42} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/commonProps.json new file mode 100644 index 000000000..841e0ab86 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"key","count":1},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/files.json new file mode 100644 index 000000000..e1a6d78d3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/instances.json new file mode 100644 index 000000000..e0f237615 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx","c":[{"b":"key","d":"expression","e":"`graphContextMenu_${menuItem.id ?? index}`"},{"b":"...","d":"spread","e":"menuItem"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMenuItem/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/commonProps.json new file mode 100644 index 000000000..56388e717 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":146},{"name":"variant","count":146},{"name":"showCloseButton","count":57},{"name":"onClose","count":50},{"name":"dataQa","count":35},{"name":"showIcon","count":25},{"name":"details","count":5},{"name":"dense","count":5},{"name":"color","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/files.json new file mode 100644 index 000000000..80d7e4b23 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/instances.json new file mode 100644 index 000000000..024740c87 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","c":[{"b":"message","d":"expression","e":"en.entities.labels.bulkMove.inProgress"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"message","d":"expression","e":"en.entities.labels.bulkMove.bulkMoveInfo[entityType]"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"error.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"},{"b":"dataQa","d":"string","e":"errorMessageBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"eventAccessRequestError"},{"b":"dataQa","d":"string","e":"eventAccessRequestErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"eventAccessRequestError"},{"b":"dataQa","d":"string","e":"eventAccessRequestErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"getErrorMessage(errors)"},{"b":"dataQa","d":"string","e":"previewErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"expression","e":"\"aclProfileMessageBox\""},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t{messages.preview.aclProfileInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{messages.preview.learnMoreAboutACLProfiles}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"onClose","d":"function","e":"() => handleCloseAclProfileInfoMessage()"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"error.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"},{"b":"dataQa","d":"string","e":"errorMessageBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"eventAccessRequestError"},{"b":"dataQa","d":"string","e":"eventAccessRequestErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"message","d":"jsx","e":""},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"message","d":"variable","e":"error"},{"b":"onClose","d":"function","e":"() => setError(null)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"backendErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"enumErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"enumWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"warning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"versionWarningMsg"},{"b":"message","d":"variable","e":"versionWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit.\""},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"\"Any unsaved changes will be lost if you reload the page.\""},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"unsavedWarning\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? \"versions\" : \"version\"} open for editing`"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowUnsavedWarning(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(item.name)"},{"b":"onClose","d":"variable","e":"handleDismissErrorStatus"},{"b":"dataQa","d":"expression","e":"\"deletionErrorMsgBoxSidePanel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"addHelpText"},{"b":"onClose","d":"function","e":"() => onCloseAddHelp()"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"message","d":"variable","e":"deleteHelpText"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\tEvent Portal does not require your authentication passwords. After Event Portal generates the connection file, replace\n\t\t\t\t\tthe environment variables with your passwords in the installation command, so you can keep them secure.{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\tLearn more about authentication passwords\n\t\t\t\t\t\n\t\t\t\t
"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"onClose","d":"variable","e":"onClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"\"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"submitWarning.message"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx","c":[{"b":"dataQa","d":"string","e":"errorReferencedGatewayMessaggingServices"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","c":[{"b":"dataQa","d":"string","e":"errorReferencedVersions"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"message","d":"variable","e":"unsavedChangesWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"\"After an object version is Retired, you cannot associate it to other object versions.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(\n\t\t\t\t\t\t\t\tentityType\n\t\t\t\t\t\t\t)} will be removed from the graph view if all versions are in retired state.`"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"variable","e":"stateChangeErrorMessage"},{"b":"variant","d":"string","e":"error"},{"b":"color","d":"expression","e":"theme.palette.ux.error.w100"},{"b":"details","d":"expression","e":"getDetails()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"\"Objects must be in Draft state to edit most attributes.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"\"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"versionWarningMsg"},{"b":"message","d":"variable","e":"versionWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"message","d":"variable","e":"unsavedChangesWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"message","d":"variable","e":"unsavedChangesWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"kafkaWarningMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"backendValidationErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"message","d":"expression","e":"getEmptyMessageDetails(true)"},{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"EXPORT_MESSAGE"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"message","d":"variable","e":"message"},{"b":"variant","d":"variable","e":"messageType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"message","d":"string","e":"The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices."},{"b":"variant","d":"string","e":"warn"},{"b":"dataQa","d":"string","e":"topicAddressResourcesWarning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"kafkaWarningMessage"},{"b":"dense","d":"variable","e":"userHasEditorAccess"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\tCannot delete the last topic domain when{\" \"}\n\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain is selected.\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"variable","e":"applicationDomainMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"variable","e":"topicDomainSuccessMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"expression","e":"\"One or more topic domains were not created successfully.\""},{"b":"variant","d":"string","e":"error"},{"b":"details","d":"expression","e":"renderTopicDomain(failedTopicDomains, false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"variable","e":"duplicateTopicDomainMessage"},{"b":"variant","d":"string","e":"warn"},{"b":"details","d":"expression","e":"renderTopicDomain(duplicateTopicDomainEntries, true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"message","d":"expression","e":"en.eventApiProduct.labels.downloadInfo"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"expression","e":"\"error\""},{"b":"message","d":"variable","e":"conflictMessage"},{"b":"details","d":"expression","e":"getErrorDetails()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"message","d":"variable","e":"message"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"expression","e":"!!onClose"},{"b":"onClose","d":"variable","e":"onClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"message","d":"expression","e":"action?.label && !!action?.onClick ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{action.label}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)"},{"b":"variant","d":"string","e":"error"},{"b":"dense","d":"variable","e":"dense"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"message","d":"jsx","e":"{error}"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"dataQa","d":"expression","e":"`runtimeConfigurationBanner-${applicationVersion.id}`"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t{application.configuration.warningOutOfSync}\n\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"message","d":"expression","e":"`This ${pageID === PageID.eventSearchSchemas ? \"event\" : \"schema\"} is shared. Only shared schemas can be selected.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tAll versions of a Kafka event use the same topic address and use versions from the same schema object.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{\"Learn more about creating Kafka events\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => handleCloseInfoMessage()"},{"b":"dataQa","d":"string","e":"kafkaEventInfoBanner"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"All versions of an event have the same broker type. It cannot be changed after the event is created\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseBrokerTypeHelp"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"brokerTypeWarning"},{"b":"dense","d":"variable","e":"userHasEditorAccess"},{"b":"dataQa","d":"expression","e":"\"brokerTypeWarning\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"errors.event.shared.message"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"messages.credentials.configurationWarning"},{"b":"dataQa","d":"string","e":"configurationError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"onCloseError"},{"b":"dataQa","d":"string","e":"credentialsError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : \"You do not have access to this event.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? \"s\" : \"\"}. `}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t{renderWarningDetails()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"nonSharedEventWarning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"message","d":"expression","e":"messages.credentials.removeCredentialsWarning"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowUndeployedInformation(false)"},{"b":"message","d":"expression","e":"messages.add.addApplicationDescription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"NO_TOPIC_ADDRESS_MSG"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"NO_PUBLISHER_MSG"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"NO_MATCHED_SUBSCRIPTION"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"subEventVersionsErrorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"errorMessageForPubEvents"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"expression","e":"errorMessageForPubEvents || subEventVersionsErrorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"variable","e":"ADDITIONAL_CONSUMED_EVENTS_INFO"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setDismissAdditionalConsumedEventsInfo(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setDismissAdditionalConsumedEventsWarning(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"errorMessageForAdditionalEvents"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SCHEMA_TYPE_MISMATCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SHARED_VALUE_MISMATCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SCHEMA_VERSION_NOT_FOUND"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t setTriggerVersionDuplication(true)}>\n\t\t\t\t\t\t\t\t\t\tDuplicate Version\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"info"},{"b":"dense","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowImportedSchemaInfoBanner(false)"},{"b":"dataQa","d":"string","e":"editImportedSchemaWarning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"schemaVersionReferencesError.message"},{"b":"dataQa","d":"string","e":"manageReferencedSchemasErrorText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"noOptionSelectedError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messages.info}\n\t\t\t\t\t\t\t{getWizardButton(\"text\", goToWizard, false)}\n\t\t\t\t\t\t"},{"b":"onClose","d":"function","e":"() => setShowMessageBox(false)"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"showIcon","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"messages.projectDefinition.guide"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`Returning to an earlier step will reset your progress. `"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"string","e":"Event management agent not connected to Event Portal. View logs for details."},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
{dataCollectionErrorMessage}
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tYour event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and\n\t\t\t\t\t\t\t\t\t\t\t\tre-add it to the modelled event mesh\n\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t handleDeleteMessagingService(selectedMessagingService)}>\n\t\t\t\t\t\t\t\t\t\t\t\t\tDelete From Event Portal\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
{renderDataCollectionError}
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t\tUnable to delete connection to {selectedMessagingService.name}. It is associated\n\t\t\t\t\t\t\t\t\t\t\twith one or more objects in the environment.\n\t\t\t\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"message"},{"b":"onClose","d":"variable","e":"closeInfoMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\tModeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows\n\t\t\t\t\t\tbetween publishing and subscribing applications.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about modeled event meshes\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"memInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"message","d":"string","e":"No differences found in the compared version configurations."},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t
{`${status} ${subStatus ?? \"\"}`}
\n\t\t\t\t\t\t\t{actionText && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t{actionIcon}\n\t\t\t\t\t\t\t\t\t\t{actionText}\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
"},{"b":"variant","d":"variable","e":"variant"},{"b":"showCloseButton","d":"boolean","e":"false"},{"b":"onClose","d":"variable","e":"onAuditImportDone"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"message","d":"variable","e":"AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","c":[{"b":"message","d":"string","e":"Resolve partial matches caused by runtime configuration changes by updating the event from the audit results."},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t
{errorMessage}
\n\t\t\t\t\t\t\t\t
"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"warningInfoBoxMessage"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t{showServiceWarning && (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tChoose Event Broker\n\t\t\t\t\t\t\t\t\t{renderMessagingServiceSelect()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{showAuditResultTypeWarning ? \"Choose Audit Result Type\" : \"Selected Objects\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{renderSelectionStats()}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Objects that are already in Event Portal do not need to be imported again.\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"matchFoundMessage\""},{"b":"onClose","d":"variable","e":"handleCloseMatchFoundMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\tIf you plan to create objects on the event broker, consider to tag them as \n\t\t\t\t\t\t\tTo Be Created\n\t\t\t\t\t\t\t using the Quick Actions.\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SCHEMA_NAME_DUPLICATION_MESSAGE"},{"b":"dataQa","d":"string","e":"duplicateNamesError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"message","d":"variable","e":"NONDRAFT_WARNING"},{"b":"variant","d":"expression","e":"\"info\""},{"b":"dataQa","d":"string","e":"nonDraftWarning"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"`Selected ${\n\t\t\t\t\tAUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]\n\t\t\t\t} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\tentityType\n\t\t\t\t)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"variable","e":"message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"EVENT_NAME_DUPLICATION_MESSAGE"},{"b":"dataQa","d":"string","e":"duplicateNamesError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tUnable to import \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{invalidAudits.length} of {audits.length} selected {auditEntityType}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeselect\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"dataQa","d":"string","e":"auditValidationErrorWithDeselect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`"},{"b":"dataQa","d":"string","e":"auditValidationError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"submitError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"variable","e":"variantType"},{"b":"message","d":"variable","e":"_message"},{"b":"showCloseButton","d":"variable","e":"dismissible"},{"b":"onClose","d":"function","e":"() => handleMessageBoxOnClose(variantType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t{eventManagementAgentResources.version.needUpgradePrompt}\n\t\t\t\t\t\n\t\t\t\t\t\t{eventManagementAgentResources.version.needUpgradeLinkText}\n\t\t\t\t\t\n\t\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\tYou can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those\n\t\t\t\t\t\t\t\t\t\tdatacenters.\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tView Datacenters\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setViewDatacentersInfoBanner(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"string","e":"One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to."},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"The next steps require you be on the system hosting the connected agent.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"message","d":"string","e":"Event Management Agent installation setup complete"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"message","d":"expression","e":"`Event Management agent ${emsStatus}`"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Connection details updated. Download the file and run it with the Event Management Agent to update the connection.\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Unable to create connections to Event Management Agents."}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"validationError.eventBrokerError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"message","d":"string","e":"The event broker must be in a modeled event mesh to receive runtime data or send configuration data."},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tUnable to delete connection to{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tselectedMessagingServices.filter((service) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted;\n\t\t\t\t\t\t\t\t\t\t\t})[0]?.name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t. It is associated with one or more objects in the environment.\n\t\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\tConnection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that\n\t\t\t\t\t\t\t\tthe agent connects to.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t handleDownloadConnectionFile(item.id, item.name)}>\n\t\t\t\t\t\t\t\t\t\tDownload Connection File\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{ConnectionStatusLabel.connectionIncomplete}\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tInstall the Event Management Agent and run the connection file to connect to Event Portal.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDownload and install the Event Management Agent.\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t"},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.kpiMetricsDashboard.appDomainFilterError"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tsetAppDomainFilterError(false);\n\t\t\t\t\t\t\t\t\tsetSelectedAppDomainId(\"all\");\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.kpiMetricsDashboard.tableFilterError"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\tsetTableFiltersError(false);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedSharedType(null);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedBrokerType(null);\n\t\t\t\t\t\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/totalUsages.json new file mode 100644 index 000000000..bc768da71 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/totalUsages.json @@ -0,0 +1 @@ +146 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/usagesByMfe.json new file mode 100644 index 000000000..472d9194a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceMessageBox/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":146} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..f82a5fb0a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":2},{"name":"title","count":2},{"name":"breadcrumbs","count":2},{"name":"dataQa","count":1},{"name":"release","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/files.json new file mode 100644 index 000000000..d6a65a393 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/home/Home.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/instances.json new file mode 100644 index 000000000..f5e04e169 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx","c":[{"b":"...","d":"spread","e":"overrideProps"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx","c":[{"b":"...","d":"spread","e":"props"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/home/Home.tsx","c":[{"b":"title","d":"string","e":"Event Portal"},{"b":"breadcrumbs","d":"variable","e":"screenPath"},{"b":"dataQa","d":"string","e":"solace-header"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"title","d":"string","e":"Event Portal AI Designer"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]"},{"b":"release","d":"string","e":"EXPERIMENTAL"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..7b7a145fa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/commonProps.json new file mode 100644 index 000000000..ec8996329 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"totalResults","count":17},{"name":"pageSize","count":17},{"name":"activePage","count":17},{"name":"onPageSelection","count":17},{"name":"displayText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/files.json new file mode 100644 index 000000000..c8f414bc8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/instances.json new file mode 100644 index 000000000..58a0d7465 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"totalResults","d":"expression","e":"tableRows.length"},{"b":"pageSize","d":"variable","e":"PAGE_SIZE"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"totalResults","d":"expression","e":"requests.length"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"},{"b":"displayText","d":"expression","e":"\"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"applicationVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"applicationCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setApplicationCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"eventVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"eventCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setEventCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"schemaVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"schemaCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setSchemaCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"eventApiProductVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"eapCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setEapCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityVersionsCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPageNumber"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityVersionsCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPageNumber"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityVersionsCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPageNumber"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","c":[{"b":"activePage","d":"expression","e":"pagination?.pageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"},{"b":"pageSize","d":"expression","e":"pagination?.pageSize"},{"b":"totalResults","d":"expression","e":"pagination?.count"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/totalUsages.json new file mode 100644 index 000000000..8e2afd342 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +17 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..ea3db8278 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":17} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/commonProps.json new file mode 100644 index 000000000..cb21b3e2b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":11},{"name":"dataQa","count":11},{"name":"variant","count":11},{"name":"icons","count":11},{"name":"value","count":11},{"name":"onChange","count":11},{"name":"numOfItemsPerRow","count":11},{"name":"iconKeyOrderedList","count":10},{"name":"label","count":9},{"name":"inlineLabel","count":9},{"name":"getOptionDisplayValue","count":3},{"name":"autoFocusItem","count":3},{"name":"contentControlPanel","count":3},{"name":"emptyStateMessage","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/files.json new file mode 100644 index 000000000..2a301e1ae --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/instances.json new file mode 100644 index 000000000..c676c2008 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"applicationColorPicker"},{"b":"dataQa","d":"string","e":"applicationColorPicker"},{"b":"label","d":"expression","e":"\"Application Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"applicationColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedAppColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedAppColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"eventColorPicker"},{"b":"dataQa","d":"string","e":"eventColorPicker"},{"b":"label","d":"expression","e":"\"Event Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"eventColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedEventColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedEventColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"domainColorPicker"},{"b":"dataQa","d":"string","e":"domainColorPicker"},{"b":"label","d":"expression","e":"\"Domain Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"domainColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedDomainColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedDomainColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"iconPicker"},{"b":"dataQa","d":"string","e":"iconPicker"},{"b":"label","d":"expression","e":"\"Select App Icon\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"filteredIcons"},{"b":"iconKeyOrderedList","d":"expression","e":"selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys"},{"b":"value","d":"variable","e":"selectedIconValue"},{"b":"onChange","d":"function","e":"(event) => setSelectedIconValue(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"6"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"autoFocusItem","d":"variable","e":"autoFocusItem"},{"b":"contentControlPanel","d":"variable","e":"contentControlPanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"themePicker"},{"b":"label","d":"expression","e":"\"Select Color Theme\""},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"applicationColorBlocks"},{"b":"value","d":"variable","e":"selectedAppColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedAppColorVariation(event.value)"},{"b":"dataQa","d":"string","e":"themePicker"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"applicationColorPicker"},{"b":"dataQa","d":"string","e":"applicationColorPicker"},{"b":"label","d":"expression","e":"\"Application Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"applicationColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedAppColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedAppColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"eventColorPicker"},{"b":"dataQa","d":"string","e":"eventColorPicker"},{"b":"label","d":"expression","e":"\"Event Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"eventColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedEventColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedEventColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"domainColorPicker"},{"b":"dataQa","d":"string","e":"domainColorPicker"},{"b":"label","d":"expression","e":"\"Domain Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"domainColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedDomainColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedDomainColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"iconPicker"},{"b":"dataQa","d":"string","e":"iconPicker"},{"b":"label","d":"expression","e":"\"Select App Icon\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"filteredIcons"},{"b":"iconKeyOrderedList","d":"expression","e":"selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys"},{"b":"value","d":"variable","e":"selectedIconValue"},{"b":"onChange","d":"function","e":"(event) => setSelectedIconValue(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"6"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"autoFocusItem","d":"variable","e":"autoFocusItem"},{"b":"contentControlPanel","d":"variable","e":"contentControlPanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"dataQa","d":"expression","e":"`${entityType}-customColour-picker`"},{"b":"name","d":"variable","e":"name"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"icons","d":"variable","e":"entityColourBlocks"},{"b":"numOfItemsPerRow","d":"number","e":"3"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"variant","d":"string","e":"icons"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"dataQa","d":"expression","e":"`${entityType}-customIconLogo-picker`"},{"b":"name","d":"variable","e":"name"},{"b":"icons","d":"variable","e":"filteredIcons"},{"b":"iconKeyOrderedList","d":"expression","e":"selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys"},{"b":"numOfItemsPerRow","d":"number","e":"6"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"variant","d":"string","e":"icons"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"autoFocusItem","d":"variable","e":"autoFocusItem"},{"b":"emptyStateMessage","d":"expression","e":"\"No Results Found\""},{"b":"contentControlPanel","d":"variable","e":"contentControlPanel"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/totalUsages.json new file mode 100644 index 000000000..9d607966b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/totalUsages.json @@ -0,0 +1 @@ +11 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/usagesByMfe.json new file mode 100644 index 000000000..bfeff56b9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolacePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":11} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/commonProps.json new file mode 100644 index 000000000..ecc1ea935 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":13},{"name":"name","count":13},{"name":"value","count":13},{"name":"key","count":7},{"name":"dataQa","count":6},{"name":"disabled","count":3},{"name":"subText","count":1},{"name":"checked","count":1},{"name":"onChange","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/files.json new file mode 100644 index 000000000..27272b9dc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/instances.json new file mode 100644 index 000000000..f81638757 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"label","d":"expression","e":"\"Existing Application\""},{"b":"name","d":"string","e":"existingApplication"},{"b":"value","d":"expression","e":"\"false\""},{"b":"dataQa","d":"string","e":"existingApplication"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"label","d":"expression","e":"\"New Application\""},{"b":"name","d":"string","e":"newApplication"},{"b":"value","d":"expression","e":"\"true\""},{"b":"dataQa","d":"string","e":"newApplication"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","c":[{"b":"key","d":"expression","e":"option.value"},{"b":"name","d":"expression","e":"option.value"},{"b":"value","d":"expression","e":"option.value"},{"b":"label","d":"expression","e":"option.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"name","d":"variable","e":"key"},{"b":"value","d":"variable","e":"key"},{"b":"label","d":"expression","e":"brokerTypeLabel[key]"},{"b":"disabled","d":"expression","e":"!allowChangeBrokerType"},{"b":"dataQa","d":"expression","e":"`brokerType[${key}]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"en.eventApi.labels.json"},{"b":"name","d":"string","e":"json"},{"b":"value","d":"string","e":"json"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"en.eventApi.labels.yaml"},{"b":"name","d":"string","e":"yaml"},{"b":"value","d":"string","e":"yaml"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"key","d":"variable","e":"value"},{"b":"name","d":"variable","e":"value"},{"b":"value","d":"variable","e":"value"},{"b":"label","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`schemaType[${value}]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"label","d":"expression","e":"\"Add to Existing Consumer\""},{"b":"name","d":"string","e":"existingConsumer"},{"b":"value","d":"expression","e":"\"existingConsumer\""},{"b":"dataQa","d":"string","e":"existingConsumer"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"label","d":"expression","e":"\"Create New Consumer\""},{"b":"name","d":"string","e":"newConsumer"},{"b":"value","d":"expression","e":"\"newConsumer\""},{"b":"dataQa","d":"string","e":"newConsumer"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"key","d":"expression","e":"option.value"},{"b":"name","d":"expression","e":"option.value"},{"b":"value","d":"expression","e":"option.value"},{"b":"label","d":"expression","e":"option.label"},{"b":"subText","d":"expression","e":"option.subText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"disabled","d":"variable","e":"disabled"},{"b":"key","d":"expression","e":"`messagingService-${item.id}`"},{"b":"label","d":"jsx","e":" handleServiceAccordionControl(item.id)}\n\t\t\t\t\t\t\t\tdetails={renderAccordionDetail(item)}\n\t\t\t\t\t\t\t\tsummary={\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t/>"},{"b":"name","d":"expression","e":"item.id"},{"b":"value","d":"expression","e":"item.id"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"checked","d":"expression","e":"resultPerPage === pageSize"},{"b":"onChange","d":"function","e":"() => handleResultsPerPageChange(resultPerPage)"},{"b":"key","d":"expression","e":"`resultsPerPage_${resultPerPage}`"},{"b":"name","d":"string","e":"resultsPerPage"},{"b":"value","d":"expression","e":"`${resultPerPage}`"},{"b":"label","d":"expression","e":"`${resultPerPage}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"key","d":"expression","e":"`selectResultTypeOption_${resultType}`"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{auditResultTypeCount}\n\t\t\t\t\t\t\t\t\t{AUDIT_RESULT_CHIPS[resultType]}\n\t\t\t\t\t\t\t\t\t{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}\n\t\t\t\t\t\t\t\t"},{"b":"name","d":"variable","e":"resultType"},{"b":"value","d":"variable","e":"resultType"},{"b":"disabled","d":"expression","e":"auditResultTypeCount === 0 || isLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/usagesByMfe.json new file mode 100644 index 000000000..6e7c8ff73 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadio/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/commonProps.json new file mode 100644 index 000000000..dc38c748b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":9},{"name":"onChange","count":9},{"name":"value","count":8},{"name":"id","count":7},{"name":"inline","count":6},{"name":"label","count":2},{"name":"dataQa","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1},{"name":"required","count":1},{"name":"stackLabel","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/files.json new file mode 100644 index 000000000..1c82f2fd6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/instances.json new file mode 100644 index 000000000..2b05466a3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"applicationRadioGroup"},{"b":"name","d":"string","e":"applicationRadioGroup"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetIsNewApplication(e.value === \"true\");\n\t\t\t\t\t}"},{"b":"value","d":"expression","e":"isNewApplication ? \"true\" : \"false\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","c":[{"b":"name","d":"expression","e":"radioGroupName ?? \"customhookRadioGroup\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"variable","e":"label"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg"},{"b":"helperText","d":"variable","e":"validationErrorMsg"},{"b":"required","d":"boolean","e":"true"},{"b":"inline","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"brokerTypeRadioButtons\""},{"b":"name","d":"expression","e":"\"brokerTypeRadioButtons\""},{"b":"value","d":"variable","e":"brokerType"},{"b":"inline","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tsetBrokerType(e.value);\n\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"id","d":"string","e":"downloadFormatRadioGroup"},{"b":"label","d":"expression","e":"en.eventApi.labels.format"},{"b":"name","d":"string","e":"downloadFormatRadioGroup"},{"b":"inline","d":"boolean","e":"false"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetFormat(e.value as SupportedAsyncApiDownloadFormat);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}"},{"b":"stackLabel","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"format"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"id","d":"expression","e":"\"SchemaTypeRadioButtons\""},{"b":"name","d":"expression","e":"\"SchemaTypeRadioButtons\""},{"b":"value","d":"expression","e":"schemaInfo?.schemaType"},{"b":"inline","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"addSubscriptionRadioGroup"},{"b":"name","d":"string","e":"addSubscriptionRadioGroup"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tsetMode(e.value);\n\t\t\t\t\t\t\tresetField(\"consumerId\");\n\t\t\t\t\t\t\tresetField(\"consumerName\");\n\t\t\t\t\t\t\tresetField(\"consumerType\");\n\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"mode"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"name","d":"string","e":"review"},{"b":"onChange","d":"variable","e":"handleReviewChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"id","d":"string","e":"messagingServiceSelectorRadioGroup"},{"b":"name","d":"string","e":"messagingServiceRadioGroup"},{"b":"value","d":"variable","e":"selectedMessagingService"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tsetSelectedMessagingService(e.value);\n\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"id","d":"string","e":"selectResultTypeRadioGroup"},{"b":"name","d":"string","e":"selectResultTypeRadioGroup"},{"b":"onChange","d":"variable","e":"handleAuditResultTypeChange"},{"b":"value","d":"variable","e":"auditResultTypeToImport"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/usagesByMfe.json new file mode 100644 index 000000000..f25e04ce7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceRadioGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/commonProps.json new file mode 100644 index 000000000..0f48c7aec --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/commonProps.json @@ -0,0 +1 @@ +[{"name":"containerWidth","count":5},{"name":"items","count":5},{"name":"showAll","count":5},{"name":"numOfRowsToShow","count":3},{"name":"onItemsRendered","count":3},{"name":"onItemsOverflow","count":3},{"name":"onItemsOverflowIndicatorClick","count":3},{"name":"dataQa","count":3},{"name":"columnGap","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/files.json new file mode 100644 index 000000000..84b32aa93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/instances.json new file mode 100644 index 000000000..ec012e34d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"containerWidth","d":"variable","e":"filterContainerWidth"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"filterContainerWidth"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"filterContainerWidth"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"items","d":"expression","e":"displayedEnvironments.map((env) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t option.value === env.id)}\n\t\t\t\t\t\t\t\t\thasTooltip={true}\n\t\t\t\t\t\t\t\t\tdataQa={env.id}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t};\n\t\t\t\t\t})"},{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"showAll","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"items","d":"expression","e":"displayedEnvironments.map((env) => {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})"},{"b":"columnGap","d":"number","e":"8"},{"b":"showAll","d":"boolean","e":"false"},{"b":"containerWidth","d":"expression","e":"containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/usagesByMfe.json new file mode 100644 index 000000000..06d8ab14f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceResponsiveItemList/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/commonProps.json new file mode 100644 index 000000000..1d97133a2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":8},{"name":"name","count":8},{"name":"dataQa","count":8},{"name":"placeholder","count":8},{"name":"value","count":8},{"name":"onChange","count":8},{"name":"type","count":8},{"name":"width","count":5},{"name":"onClearAll","count":4},{"name":"onFocus","count":1},{"name":"disabled","count":1},{"name":"label","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/files.json new file mode 100644 index 000000000..6afbd269d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/instances.json new file mode 100644 index 000000000..39f5a2f51 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"string","e":"graphSearchInput"},{"b":"name","d":"string","e":"graphSearchInput"},{"b":"dataQa","d":"string","e":"graphSearchInput"},{"b":"placeholder","d":"expression","e":"searchFieldPlaceholderText || \"Find on Graph\""},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"onFocus","d":"variable","e":"handleOnFocus"},{"b":"onClearAll","d":"variable","e":"handleClearSearchText"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"disabled","d":"expression","e":"graphEmpty || disableActionToChangeGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"id","d":"string","e":"searchInput"},{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"expression","e":"textboxPlaceholderText ?? \"Search\""},{"b":"width","d":"variable","e":"searchTextBoxWidth"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"onClearAll","d":"variable","e":"handleClearSearchText"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","c":[{"b":"id","d":"string","e":"graphSearchInput"},{"b":"name","d":"string","e":"graphSearchInput"},{"b":"dataQa","d":"string","e":"graphSearchInput"},{"b":"placeholder","d":"expression","e":"\"Find on Graph\""},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"onClearAll","d":"variable","e":"handleClearSearchText"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"id","d":"string","e":"domainNameFilter"},{"b":"name","d":"string","e":"domainNameFilter"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"dataQa","d":"string","e":"filterDomainName"},{"b":"placeholder","d":"string","e":"Filter by name"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","c":[{"b":"dataQa","d":"string","e":"filterMeshName"},{"b":"id","d":"string","e":"meshNameFilter"},{"b":"name","d":"string","e":"meshNameFilter"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"placeholder","d":"string","e":"Filter by name"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"value","d":"variable","e":"memNameFilter"},{"b":"width","d":"string","e":"500px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"id","d":"string","e":"applicationFilterByName"},{"b":"name","d":"string","e":"applicationFilterByName"},{"b":"value","d":"variable","e":"filterString"},{"b":"onChange","d":"variable","e":"handleFilterByName"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"dataQa","d":"string","e":"applicationFilterByNameField"},{"b":"placeholder","d":"string","e":"Filter by name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","c":[{"b":"id","d":"string","e":"addToApplicationVersionTextField"},{"b":"name","d":"string","e":"addToApplicationVersionTextField"},{"b":"dataQa","d":"string","e":"addToApplicationVersionTextField"},{"b":"label","d":"variable","e":"selectApplicationVersionLabel"},{"b":"placeholder","d":"string","e":"Filter by application name"},{"b":"value","d":"variable","e":"searchedApplicationName"},{"b":"onChange","d":"function","e":"(e) => setSearchedApplicationName(e.value)"},{"b":"onClearAll","d":"function","e":"() => setSearchedApplicationName(\"\")"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"width","d":"expression","e":"\"480px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"id","d":"string","e":"templateNameFilter"},{"b":"name","d":"string","e":"templateNameFilter"},{"b":"value","d":"variable","e":"filterbyName"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"dataQa","d":"string","e":"templateNameFilter"},{"b":"placeholder","d":"string","e":"Filter by name"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/usagesByMfe.json new file mode 100644 index 000000000..01c30d3f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSearchAndFilter/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/commonProps.json new file mode 100644 index 000000000..ca6242d97 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":72},{"name":"value","count":72},{"name":"onChange","count":70},{"name":"dataQa","count":65},{"name":"label","count":41},{"name":"id","count":38},{"name":"hasErrors","count":32},{"name":"helperText","count":31},{"name":"required","count":26},{"name":"width","count":26},{"name":"disabled","count":25},{"name":"readOnly","count":22},{"name":"getOptionDisplayValue","count":11},{"name":"maxHeight","count":5},{"name":"inlineLabel","count":5},{"name":"onClose","count":4},{"name":"menuAnchorOrigin","count":2},{"name":"menuTransformOrigin","count":2},{"name":"displayEmpty","count":2},{"name":"onOpen","count":2},{"name":"open","count":2},{"name":"aria-label","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/files.json new file mode 100644 index 000000000..6ce4ff5c6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/instances.json new file mode 100644 index 000000000..36072ef8f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx","c":[{"b":"onChange","d":"variable","e":"handleTypeChange"},{"b":"id","d":"string","e":"objectRelationship[type]"},{"b":"name","d":"string","e":"objectRelationship[type]"},{"b":"dataQa","d":"string","e":"objectRelationship[type]"},{"b":"label","d":"expression","e":"\"Graph Type\""},{"b":"value","d":"variable","e":"layoutType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[environment]"},{"b":"name","d":"string","e":"memAssociation[environment]"},{"b":"dataQa","d":"string","e":"memAssociation[environment]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.environment"},{"b":"onChange","d":"variable","e":"handleEnvironmentSelectChange"},{"b":"value","d":"variable","e":"selectedEnvironmentId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.environmentError"},{"b":"helperText","d":"expression","e":"validationError.environmentError"},{"b":"maxHeight","d":"variable","e":"dropdownListMaxHeight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[eventMesh]"},{"b":"name","d":"string","e":"memAssociation[eventMesh]"},{"b":"dataQa","d":"string","e":"memAssociation[eventMesh]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.mem"},{"b":"onChange","d":"variable","e":"handleEventMeshSelectChange"},{"b":"value","d":"variable","e":"selectedEventMeshId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEnvironmentId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventMeshError"},{"b":"helperText","d":"expression","e":"validationError.eventMeshError"},{"b":"maxHeight","d":"variable","e":"dropdownListMaxHeight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[messagingService]"},{"b":"name","d":"string","e":"memAssociation[messagingService]"},{"b":"dataQa","d":"string","e":"memAssociation[messagingService]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.messagingService"},{"b":"onChange","d":"variable","e":"handleMessagingServiceSelectChange"},{"b":"value","d":"variable","e":"selectedMessagingServiceId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEventMeshId"},{"b":"hasErrors","d":"expression","e":"!!validationError.messagingServiceError"},{"b":"helperText","d":"expression","e":"validationError.messagingServiceError"},{"b":"maxHeight","d":"variable","e":"dropdownListMaxHeight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"id","d":"string","e":"id"},{"b":"name","d":"string","e":"name"},{"b":"dataQa","d":"string","e":"environment[select]"},{"b":"label","d":"expression","e":"`Environment`"},{"b":"onChange","d":"variable","e":"onEnvironmantChange"},{"b":"value","d":"variable","e":"selectedEnvironmentId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError.environmentError || !!validationError.environmentError"},{"b":"helperText","d":"expression","e":"selectQueryError.environmentError ?? validationError.environmentError"},{"b":"maxHeight","d":"variable","e":"DROPDOWN_LIST_MAX_HEIGHT"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","c":[{"b":"id","d":"string","e":"id"},{"b":"name","d":"string","e":"name"},{"b":"dataQa","d":"string","e":"applicationVersion[select]"},{"b":"label","d":"expression","e":"`Application version to add`"},{"b":"onChange","d":"variable","e":"onApplicationVersionChange"},{"b":"value","d":"expression","e":"selectedApplicationVersion?.id"},{"b":"required","d":"boolean","e":"true"},{"b":"maxHeight","d":"variable","e":"DROPDOWN_LIST_MAX_HEIGHT"},{"b":"helperText","d":"variable","e":"helperText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[domain]"},{"b":"name","d":"string","e":"eapAssociation[domain]"},{"b":"dataQa","d":"string","e":"eapAssociation[domain]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.applicationDomain"},{"b":"onChange","d":"variable","e":"handleApplicationDomainChange"},{"b":"value","d":"variable","e":"selectedApplicationDomainId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.applicationDomainError"},{"b":"helperText","d":"expression","e":"validationError.applicationDomainError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[eventApiProduct]"},{"b":"name","d":"string","e":"eapAssociation[eventApiProduct]"},{"b":"dataQa","d":"string","e":"eapAssociation[eventApiProduct]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.eventApiProduct"},{"b":"onChange","d":"variable","e":"handleEventApiProductSelectChange"},{"b":"value","d":"variable","e":"selectedEventApiProductId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedApplicationDomainId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventApiProductError"},{"b":"helperText","d":"expression","e":"validationError.eventApiProductError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[eventApiProductVersion]"},{"b":"name","d":"string","e":"eapAssociation[eventApiProductVersion]"},{"b":"dataQa","d":"string","e":"eapAssociation[eventApiProductVersion]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.eventApiProductVersion"},{"b":"onChange","d":"variable","e":"handleEventApiProductVersionSelectChange"},{"b":"value","d":"variable","e":"selectedEventApiProductVersionId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEventApiProductId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventApiProductVersionError"},{"b":"helperText","d":"expression","e":"validationError.eventApiProductVersionError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceRoleSelect"},{"b":"name","d":"string","e":"resourceRoleSelect"},{"b":"dataQa","d":"string","e":"resourceRoleSelect"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"value","d":"variable","e":"role"},{"b":"onChange","d":"function","e":"(event) => onResourceRoleChange(resourceAssignment, event.value)"},{"b":"getOptionDisplayValue","d":"function","e":"(value: string) => RESOURCE_LABEL_BY_ROLE[value]"},{"b":"menuAnchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"left\" }"},{"b":"menuTransformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"left\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"name","d":"string","e":"enumerationVersion"},{"b":"label","d":"string","e":"Version"},{"b":"dataQa","d":"string","e":"enumerationVersionName"},{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"value","d":"variable","e":"selectedEnumVersionId"},{"b":"disabled","d":"expression","e":"!selectedEnumOption || getEnumVersions.isLoading"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => valueToMenuItemMap.get(value) || \"\""},{"b":"width","d":"string","e":"35%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"envDialog-select-environment"},{"b":"name","d":"string","e":"envDialog-select-environment"},{"b":"dataQa","d":"string","e":"envDialog-select-environment"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"valueType\");\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-type-select`"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"hasErrors","d":"expression","e":"!nameErrorMsg && !!attributeErrorMsg"},{"b":"menuAnchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"left\" }"},{"b":"menuTransformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"left\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"scope\");\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`${caKey}-scope-select`"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"readOnly","d":"variable","e":"isDomainManager"},{"b":"hasErrors","d":"expression","e":"!nameErrorMsg && !!attributeErrorMsg && !isDomainManager"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"value","d":"expression","e":"version.id"},{"b":"name","d":"string","e":"Entity List"},{"b":"onChange","d":"variable","e":"onChangeVersion"},{"b":"dataQa","d":"string","e":"entityVersionSelect"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleTypeChange"},{"b":"id","d":"string","e":"eventMesh[type]"},{"b":"name","d":"string","e":"eventMesh[type]"},{"b":"dataQa","d":"string","e":"eventMesh[type]"},{"b":"label","d":"variable","e":"LABEL_TYPE"},{"b":"value","d":"expression","e":"memContent.brokerType"},{"b":"required","d":"expression","e":"mode === \"create\""},{"b":"readOnly","d":"expression","e":"mode !== \"create\""},{"b":"disabled","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","c":[{"b":"dataQa","d":"string","e":"schemaRegistry[type]"},{"b":"id","d":"string","e":"schemaRegistry[type]"},{"b":"label","d":"string","e":"Type"},{"b":"name","d":"string","e":"schemaRegistry[type]"},{"b":"onChange","d":"function","e":"() => undefined"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"content.type"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][authentication][${authKey}][${inputField}]`"},{"b":"disabled","d":"expression","e":"kafkaDelimiterIsNotSet || loading"},{"b":"id","d":"expression","e":"`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels[inputField]"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"isJaasConfigPassword || readOnly"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onClose","d":"variable","e":"onBlur"},{"b":"helperText","d":"expression","e":"error?.message ? en.common.error.selectValueRequired : \"\""},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][authentication][authType]"},{"b":"disabled","d":"expression","e":"kafkaDelimiterIsNotSet || loading"},{"b":"id","d":"string","e":"eventBroker[kafka][authentication][authType]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.authentication"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.authentication.auth.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][authentication][saslscram][saslMechanism]`"},{"b":"disabled","d":"expression","e":"kafkaDelimiterIsNotSet || loading"},{"b":"id","d":"string","e":"eventBroker[kafka][authentication][saslscram][saslMechanism]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.saslMechanism"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"id","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels[inputField]"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onClose","d":"variable","e":"onBlur"},{"b":"helperText","d":"expression","e":"error?.message ? en.common.error.selectValueRequired : \"\""},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][schemaRegistry][authType]"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"id","d":"string","e":"eventBroker[kafka][schemaRegistry][authType]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.authentication"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][messaging][type]"},{"b":"disabled","d":"variable","e":"readOnly"},{"b":"id","d":"string","e":"eventBroker[type]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.transport"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => handleTransportChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[type]"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"id","d":"string","e":"eventBroker[type]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.type"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","c":[{"b":"label","d":"expression","e":"`${entityTypeToLabel(entityType)} Version`"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedEntityVersionId"},{"b":"name","d":"string","e":"Entity List"},{"b":"onChange","d":"variable","e":"handleEntityVersionChange"},{"b":"dataQa","d":"string","e":"entityVersionSelect"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx","c":[{"b":"name","d":"string","e":"versionIncrementStrategySelect"},{"b":"onChange","d":"variable","e":"handleStateSelectionChange"},{"b":"value","d":"variable","e":"selectedVersionIncrementStrategy"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa ?? \"versionIncrementStrategySelect\""},{"b":"label","d":"string","e":"Version Incrementing"},{"b":"width","d":"expression","e":"width ?? \"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","c":[{"b":"name","d":"string","e":"applicationDomainSelect-readOnly"},{"b":"label","d":"expression","e":"title ? title : \"Application Domain\""},{"b":"inlineLabel","d":"variable","e":"inlineLabel"},{"b":"value","d":"expression","e":"selectedApplicationDomain?.value"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"onChange","d":"variable","e":"handleSharedTypeChange"},{"b":"value","d":"variable","e":"selectedValue"},{"b":"displayEmpty","d":"boolean","e":"true"},{"b":"onOpen","d":"variable","e":"handleOpen"},{"b":"onClose","d":"variable","e":"handleClose"},{"b":"open","d":"variable","e":"openDropdown"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"name","d":"expression","e":"`${entityName}[versionState]`"},{"b":"onChange","d":"variable","e":"handleStateSelectionChange"},{"b":"value","d":"variable","e":"versionStateId"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"stateSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"memSelect\""},{"b":"name","d":"expression","e":"\"memSelect\""},{"b":"label","d":"expression","e":"`Modeled Event Mesh`"},{"b":"onChange","d":"variable","e":"onChangeHandler"},{"b":"value","d":"variable","e":"selectedEventMeshId"},{"b":"dataQa","d":"string","e":"memSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"readOnly","d":"expression","e":"!isNew || consumerTypeMenuItems?.length === 1"},{"b":"disabled","d":"expression","e":"consumerIdInSidepanel === id && sidePanelOpen"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\t\t\t// clear any configuration when changing consumer type\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configuration`, undefined);\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configurations`, []);\n\n\t\t\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.consumerType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"name","d":"string","e":"kafkaDelimiter"},{"b":"dataQa","d":"string","e":"kafkaDelimiter"},{"b":"onChange","d":"variable","e":"handleDelimiterChange"},{"b":"value","d":"variable","e":"delimiter"},{"b":"disabled","d":"variable","e":"hasFetchError"},{"b":"width","d":"string","e":"150px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[approvalType]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"expression","e":"value || brokerTypes[0].value"},{"b":"readOnly","d":"variable","e":"isEdit"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => brokerTypes.find((type) => type.value === value)?.name || \"\""},{"b":"dataQa","d":"string","e":"eventApiProduct[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`messagingSelect-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"width","d":"expression","e":"\"556px\""},{"b":"value","d":"expression","e":"`${value}`"},{"b":"dataQa","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`accessTypeSelect-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"width","d":"expression","e":"\"556px\""},{"b":"dataQa","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"mode === \"view\""},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`queueTypeSelect-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"width","d":"expression","e":"\"556px\""},{"b":"dataQa","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"mode === \"view\""},{"b":"value","d":"expression","e":"`${value}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"name","d":"expression","e":"`brokerType-${topicDomain.id}`"},{"b":"dataQa","d":"string","e":"brokerType"},{"b":"onChange","d":"function","e":"(e) => updateBrokerType(e.value, index)"},{"b":"value","d":"expression","e":"topicDomain.brokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"name","d":"expression","e":"`brokerType-${topicDomain.id}`"},{"b":"dataQa","d":"string","e":"brokerType"},{"b":"value","d":"expression","e":"topicDomain.brokerType"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"\"AsyncAPI Version\""},{"b":"name","d":"string","e":"AsyncAPI Version"},{"b":"value","d":"variable","e":"version"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetVersion(e.value as EPSupportedAsyncApiVersion);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"\"Document Extensions\""},{"b":"name","d":"string","e":"documentExtensions"},{"b":"value","d":"variable","e":"extension"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetExtension(e.value as SupportedAsyncApiExtensionOptions);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\tconst match = documentExtensionOptions.find((props) => props.value === value);\n\n\t\t\t\treturn match ? match.name : \"\";\n\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? en.eventApi.error.requiredPlan : null"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.plan"},{"b":"width","d":"string","e":"621px"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t// borkerType is used in the parent, pass the value back.\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"readOnly","d":"variable","e":"isEdit"},{"b":"dataQa","d":"string","e":"eventApi[brokerType]"},{"b":"width","d":"expression","e":"\"526px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"value","d":"expression","e":"context.value"},{"b":"name","d":"string","e":"contextSelector"},{"b":"dataQa","d":"string","e":"contextSelector"},{"b":"onChange","d":"variable","e":"handleContextOptionChange"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!!isDisabled"},{"b":"width","d":"string","e":"400px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\thandleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"restDeliveryPointConfigurationType-selector"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"async (e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\ttrigger(`${configurationName}-postRequestTarget`);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"!getValues(`${configurationName}-postRequestTarget`)"},{"b":"dataQa","d":"expression","e":"`${configurationName}-requestTargetEvaluation`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.requestHeaderType"},{"b":"name","d":"expression","e":"`${configurationName}-request`"},{"b":"value","d":"variable","e":"requestHeaderType"},{"b":"onChange","d":"function","e":"(e) => setRequestHeaderType(e.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"name","d":"string","e":"schemaVersionSelect"},{"b":"onChange","d":"variable","e":"handleChangeSchemaVersion"},{"b":"value","d":"expression","e":"viewedSchemaVersion?.id"},{"b":"dataQa","d":"string","e":"schemaVersionSelect"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"label","d":"expression","e":"\"Schema Type\""},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"expression","e":"value || schemaTypes[0]?.value"},{"b":"dataQa","d":"expression","e":"\"schema[schemaType]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\thandleBrokerTypeChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"\"event[brokerType]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"\"event[requiresApproval]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"id","d":"string","e":"configurationTypeId"},{"b":"name","d":"string","e":"configurationTypeId"},{"b":"dataQa","d":"string","e":"configurationTypeId"},{"b":"label","d":"expression","e":"messages.credentials.configurationTypeId"},{"b":"onChange","d":"variable","e":"onChangeConfigurationType"},{"b":"value","d":"expression","e":"configuration.typeId"},{"b":"required","d":"variable","e":"isEditing"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"readOnly","d":"expression","e":"!isEditing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"label","d":"expression","e":"\"Access Approval\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"\"event[accessApproval]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","c":[{"b":"name","d":"string","e":"selectedMem"},{"b":"value","d":"expression","e":"memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tconst memId = e.value === designedEventFlowOption.value ? \"\" : e.value;\n\n\t\t\t\t\t\tsetSelectedMemId(memId);\n\t\t\t\t\t}"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"width","d":"string","e":"100%"},{"b":"dataQa","d":"expression","e":"`appVersionDetailMemFilter`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"readOnly","d":"expression","e":"isEdit || !onBrokerTypeChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.application.consumer.consumerType"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`consumerType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx","c":[{"b":"label","d":"expression","e":"en.application.consumer.label"},{"b":"value","d":"variable","e":"value"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\ttrigger(\"subscriptions\"); // trigger validation\n\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"dataQa","d":"string","e":"consumerSelect"},{"b":"width","d":"string","e":"100%"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetSelectedSchemaType(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"expression","e":"value || schemaTypes[0]?.value"},{"b":"dataQa","d":"expression","e":"\"schema[schemaType]\""},{"b":"readOnly","d":"variable","e":"isEdit"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleEnvironmentChange"},{"b":"id","d":"string","e":"addToAppVersions[environmentSelect]"},{"b":"name","d":"string","e":"addToAppVersions[environmentSelect]"},{"b":"dataQa","d":"string","e":"addToAppVersionsBulkPromotion[environmentSelect]"},{"b":"label","d":"expression","e":"\"Environment\""},{"b":"value","d":"variable","e":"selectedEnvironmentId"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!validationError.environmentInputError"},{"b":"helperText","d":"expression","e":"validationError.environmentInputError"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleEventMeshChange"},{"b":"id","d":"string","e":"addToAppVersions[eventMeshSelect]"},{"b":"name","d":"string","e":"addToAppVersions[eventMeshSelect]"},{"b":"dataQa","d":"string","e":"addToAppVersionsBulkPromotion[eventMeshSelect]"},{"b":"label","d":"expression","e":"\"Modeled Event Mesh\""},{"b":"disabled","d":"expression","e":"isLoading || selectedEnvironmentId === \"\" || eventMeshSelectOptions.length === 0"},{"b":"value","d":"variable","e":"selectedEventMeshId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventMeshInputError"},{"b":"helperText","d":"expression","e":"validationError.eventMeshInputError"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleMessagingServiceChange"},{"b":"id","d":"string","e":"addToAppVersions[messagingServiceSelect]"},{"b":"name","d":"string","e":"addToAppVersions[messagingServiceSelect]"},{"b":"dataQa","d":"string","e":"addToAppVersionsBulkPromotion[messagingServiceSelect]"},{"b":"label","d":"expression","e":"\"Event Broker\""},{"b":"disabled","d":"expression","e":"isLoading || selectedEventMeshId === \"\" || messagingServiceOptions.length === 0"},{"b":"value","d":"variable","e":"selectedMessagingServiceId"},{"b":"hasErrors","d":"expression","e":"!!validationError.messagingServiceInputError"},{"b":"helperText","d":"expression","e":"validationError.messagingServiceInputError"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"onChange","d":"variable","e":"handleEventFlowFilterChange"},{"b":"id","d":"string","e":"eventFlowSelect"},{"b":"name","d":"string","e":"eventFlowSelect"},{"b":"dataQa","d":"string","e":"eventFlowSelect"},{"b":"value","d":"variable","e":"eventFlowOption"},{"b":"disabled","d":"expression","e":"graphLoading || graphUpdating || drawInProgress || graphNodeExceeded"},{"b":"width","d":"string","e":"280px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"layoutOptions\""},{"b":"name","d":"expression","e":"\"layoutOptions\""},{"b":"dataQa","d":"expression","e":"\"layoutOptions\""},{"b":"value","d":"variable","e":"layoutType"},{"b":"onChange","d":"variable","e":"handleLayoutTypeChange"},{"b":"width","d":"expression","e":"\"90px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"levelDepthOptions\""},{"b":"name","d":"expression","e":"\"levelDepthOptions\""},{"b":"dataQa","d":"expression","e":"\"levelDepthOptions\""},{"b":"value","d":"variable","e":"levelDepthString"},{"b":"onChange","d":"variable","e":"handleLevelDepthChange"},{"b":"width","d":"expression","e":"\"55px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"id","d":"string","e":"version-selector-runtime"},{"b":"name","d":"string","e":"version-selector-runtime"},{"b":"dataQa","d":"string","e":"versionSelectorRuntime"},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"selectedVersionId"},{"b":"width","d":"string","e":"315px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleSecondVersionChange"},{"b":"id","d":"string","e":"version-selector-runtime"},{"b":"name","d":"string","e":"version-selector-runtime"},{"b":"dataQa","d":"string","e":"versionSelectorRuntime"},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"selectedSecondVersionId"},{"b":"width","d":"string","e":"315px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"id","d":"string","e":"version-selector-runtime"},{"b":"name","d":"string","e":"version-selector-runtime"},{"b":"dataQa","d":"string","e":"versionSelectorRuntime"},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"selectedVersionId"},{"b":"width","d":"string","e":"350px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"filterLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"value","d":"variable","e":"selectedValue"},{"b":"displayEmpty","d":"boolean","e":"true"},{"b":"onOpen","d":"variable","e":"handleOpen"},{"b":"onClose","d":"variable","e":"handleClose"},{"b":"open","d":"variable","e":"openDropdown"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"name","d":"expression","e":"\"configurationVersionSelect\""},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"value","d":"expression","e":"audits[0].id"},{"b":"dataQa","d":"expression","e":"\"configurationVersionSelect\""},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"id","d":"string","e":"selectMessagingService"},{"b":"name","d":"string","e":"selectMessagingService"},{"b":"dataQa","d":"string","e":"selectMessagingService"},{"b":"onChange","d":"variable","e":"handleSelectMessagingServiceChange"},{"b":"value","d":"variable","e":"selectedMessagingServiceId"},{"b":"disabled","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"id","d":"string","e":"messagingServiceTypeSelect"},{"b":"name","d":"string","e":"messagingServiceTypeSelect"},{"b":"dataQa","d":"string","e":"messagingServiceTypeSelect"},{"b":"label","d":"string","e":"Type"},{"b":"onChange","d":"variable","e":"handleMessagingServiceTypeChange"},{"b":"value","d":"variable","e":"selectedMessagingServiceType"},{"b":"width","d":"string","e":"30%"},{"b":"inlineLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"aria-label","d":"string","e":"Agent Mode"},{"b":"disabled","d":"variable","e":"loading"},{"b":"getOptionDisplayValue","d":"function","e":"(value: string) => EMA_MODES_LABELS[value]"},{"b":"hasErrors","d":"expression","e":"!!getRuntimeAgentModeErrorMessage"},{"b":"helperText","d":"variable","e":"getRuntimeAgentModeErrorMessage"},{"b":"name","d":"string","e":"agent mode"},{"b":"onChange","d":"variable","e":"handleDiscoveryScanModeChange"},{"b":"readOnly","d":"expression","e":"!!agentId"},{"b":"width","d":"string","e":"620px"},{"b":"value","d":"expression","e":"eventManagementAgent.runtimeAgentMode"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..9cd72aa94 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +72 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..ada00087c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":72} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..e4bc80cbf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":28},{"name":"dataQa","count":28},{"name":"value","count":28},{"name":"options","count":28},{"name":"itemComponent","count":28},{"name":"itemMappingCallback","count":28},{"name":"optionsLabelCallback","count":28},{"name":"onChange","count":28},{"name":"fetchOptionsCallback","count":28},{"name":"isOptionEqualToValueCallback","count":26},{"name":"id","count":22},{"name":"multiple","count":19},{"name":"label","count":17},{"name":"helperText","count":14},{"name":"hasErrors","count":13},{"name":"required","count":11},{"name":"placeholder","count":11},{"name":"renderTags","count":9},{"name":"disabled","count":8},{"name":"openOnFocus","count":8},{"name":"inputRef","count":7},{"name":"getOptionDisabledCallback","count":6},{"name":"getShowOptionDividerCallback","count":3},{"name":"minWidth","count":3},{"name":"groupByCallback","count":2},{"name":"showGroupDivider","count":2},{"name":"width","count":2},{"name":"maxHeight","count":2},{"name":"readOnly","count":2},{"name":"fullWidth","count":2},{"name":"key","count":2},{"name":"shouldClearSearchOnSelectCallback","count":1},{"name":"validateInputCallback","count":1},{"name":"disableCloseOnSelect","count":1},{"name":"inlineLabel","count":1},{"name":"limitTags","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..749f2e2dd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..c5901c56d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"id","d":"string","e":"messagingService"},{"b":"name","d":"string","e":"messagingServiceAutocomplete"},{"b":"dataQa","d":"string","e":"messagingService"},{"b":"label","d":"string","e":"Event Broker Context (optional)"},{"b":"helperText","d":"expression","e":"selectQueryError.messagingServiceError ?? validationError.messagingServiceError"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError"},{"b":"value","d":"variable","e":"selectedMessagingService"},{"b":"options","d":"variable","e":"matchingMessagingServices"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleMessagingServiceSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchMessagingServiceOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[protocols]"},{"b":"name","d":"string","e":"memAssociation[protocols]"},{"b":"dataQa","d":"string","e":"memAssociation[protocols]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.supportedProtocols"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.protocolsError"},{"b":"helperText","d":"expression","e":"validationError.protocolsError"},{"b":"multiple","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedMessagingServiceId"},{"b":"value","d":"variable","e":"selectedProtocols"},{"b":"options","d":"variable","e":"matchingProtocols"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleProtocolSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"id","d":"string","e":"modeledEventMesh[select]"},{"b":"name","d":"string","e":"modeledEventMesh[select]"},{"b":"dataQa","d":"string","e":"modeledEventMesh[select]"},{"b":"label","d":"string","e":"Modeled Event Mesh"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEnvironmentId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventMeshError"},{"b":"helperText","d":"expression","e":"validationError.eventMeshError"},{"b":"multiple","d":"boolean","e":"false"},{"b":"value","d":"expression","e":"selectedEventMeshes[0]"},{"b":"options","d":"variable","e":"matchingEventMeshes"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleEventMeshSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEventMeshOptionsCallback"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabled"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"id","d":"string","e":"messagingService[select]"},{"b":"name","d":"string","e":"messagingService[select]"},{"b":"dataQa","d":"string","e":"messagingService[select]"},{"b":"label","d":"expression","e":"\"Event Broker\""},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"selectedEventMeshes.length === 0"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError"},{"b":"helperText","d":"expression","e":"selectQueryError.messagingServiceError ?? validationError.messagingServiceError"},{"b":"multiple","d":"boolean","e":"false"},{"b":"value","d":"expression","e":"selectedMessagingServices[0]"},{"b":"options","d":"variable","e":"matchingMessagingServices"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleMessagingServiceSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchMessagingServiceOptionsCallback"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabled"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[protocols]"},{"b":"name","d":"string","e":"eapAssociation[protocols]"},{"b":"dataQa","d":"string","e":"eapAssociation[protocols]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.supportedProtocols"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.protocolsError"},{"b":"helperText","d":"expression","e":"validationError.protocolsError"},{"b":"multiple","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEventApiProductVersionId"},{"b":"value","d":"variable","e":"selectedProtocols"},{"b":"options","d":"variable","e":"matchingProtocols"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleProtocolSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[{"b":"name","d":"string","e":"userAccessSelect-search"},{"b":"dataQa","d":"expression","e":"`userAccessSelect-${resourceAssignment.userId}`"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option?.value === value?.value"},{"b":"itemMappingCallback","d":"function","e":"(option) => option ?? { name: \"\", value: \"\" }"},{"b":"fetchOptionsCallback","d":"function","e":"(searchTerm) => setSearchTerm(searchTerm)"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]"},{"b":"options","d":"variable","e":"userOptions"},{"b":"value","d":"variable","e":"selectedOption"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"hasErrors","d":"expression","e":"!!resourceAssignment.error"},{"b":"helperText","d":"expression","e":"resourceAssignment.error"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"name","d":"string","e":"enumeration"},{"b":"dataQa","d":"string","e":"enumerationName"},{"b":"label","d":"string","e":"Enumeration"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"searchLocalEnums"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingEnumOptions"},{"b":"onChange","d":"variable","e":"handleEnumChange"},{"b":"value","d":"variable","e":"selectedEnumOption"},{"b":"getOptionDisabledCallback","d":"expression","e":"sharedSearchCriteria ? handleOptionDisabled : undefined"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"showGroupDivider","d":"boolean","e":"true"},{"b":"helperText","d":"expression","e":"sharedSearchCriteria ? \"You can associate only shared enumerations with shared events.\" : null"},{"b":"width","d":"string","e":"65%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"values"},{"b":"options","d":"variable","e":"matchingValues"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabledCallback"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"debouncedFetchOptionsCallback"},{"b":"shouldClearSearchOnSelectCallback","d":"variable","e":"shouldClearSearchOnSelectCallback"},{"b":"maxHeight","d":"string","e":"400px"},{"b":"validateInputCallback","d":"variable","e":"validateInputValue"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"helperText"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"name","d":"string","e":"applicationVersionSelect-search"},{"b":"label","d":"expression","e":"title ?? \"Application Version\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"handleApplicationVersionChange"},{"b":"value","d":"variable","e":"selectedApplicationVersions"},{"b":"options","d":"variable","e":"applicationVersionOptions"},{"b":"itemComponent","d":"variable","e":"getApplicationVersionSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"renderTags","d":"function","e":"() =>\n\t\t\t\tselectedApplicationVersions?.[0] && (\n\t\t\t\t\t{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}\n\t\t\t\t)"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchApplicationVersionOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isApplicationVersionSelectAutocompleteOptionEqual"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"groupByCallback","d":"expression","e":"applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined"},{"b":"showGroupDivider","d":"expression","e":"applicationVersionOptions.some((option) => option.divider) ? true : false"},{"b":"disableCloseOnSelect","d":"boolean","e":"false"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError"},{"b":"helperText","d":"expression","e":"selectQueryError || helperText || \"\""},{"b":"dataQa","d":"string","e":"applicationVersionSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","c":[{"b":"name","d":"string","e":"applicationDomainSelect-search"},{"b":"label","d":"expression","e":"title ? title : \"Application Domain\""},{"b":"inlineLabel","d":"variable","e":"inlineLabel"},{"b":"multiple","d":"boolean","e":"false"},{"b":"onChange","d":"variable","e":"handleApplicationDomainChange"},{"b":"value","d":"variable","e":"selectedApplicationDomain"},{"b":"options","d":"variable","e":"matchingApplicationDomains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchApplicationDomainOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"required","d":"variable","e":"required"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"disabled","d":"boolean","e":"false"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError"},{"b":"helperText","d":"variable","e":"showHelperText"},{"b":"maxHeight","d":"string","e":"370px"},{"b":"dataQa","d":"string","e":"applicationDomainSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","c":[{"b":"id","d":"expression","e":"`${FilterType.eventMesh}Select`"},{"b":"name","d":"expression","e":"`${FilterType.eventMesh}Select`"},{"b":"dataQa","d":"expression","e":"`${FilterType.eventMesh}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel.eventMesh"},{"b":"placeholder","d":"expression","e":"selectedEventMeshes?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedEventMeshes"},{"b":"options","d":"variable","e":"matchingEventMeshes"},{"b":"itemComponent","d":"variable","e":"getEventMeshSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getEventMeshSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChangeEventMeshes"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEventMeshOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isEventMeshSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"id","d":"expression","e":"`${customAttributeFilterType}Select`"},{"b":"name","d":"expression","e":"`${customAttributeFilterType}Select`"},{"b":"dataQa","d":"expression","e":"`${customAttributeFilterType}Select`"},{"b":"label","d":"jsx","e":""},{"b":"placeholder","d":"expression","e":"selectedOptions.length > 0 ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedOptions"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"CustomAttributeValueAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getCustomAttributeValueOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowCustomAttributeValueOptionDivider"},{"b":"onChange","d":"variable","e":"handleChangeCustomAttributeValues"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchCustomAttributeValueOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isCustomAttributeValueOptionEqual"},{"b":"renderTags","d":"function","e":"() =>\n\t\t\t\t\t\tdebouncedSelectedOptions &&\n\t\t\t\t\t\tdebouncedSelectedOptions.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[customAttributeFilterType] = input;\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[filterType] = input;\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"placeholder","d":"string","e":"All Domains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"multiple","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.messagingService"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchMems"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? en.eventApi.error.requiredGatewayMessagingService : null"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"621px"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"},{"b":"fullWidth","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"multiple","d":"boolean","e":"true"},{"b":"options","d":"expression","e":"getAutoCompleteOptions(level)"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"filterValues"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"value","d":"expression","e":"getAutoCompleteValue(value, level, name)"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"622px"},{"b":"limitTags","d":"number","e":"2"},{"b":"dataQa","d":"variable","e":"name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"key","d":"variable","e":"FormNameClientProfileName"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"variable","e":"templateOptionSelected"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"updateTemplateOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"templateOptions"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t// template selected\n\t\t\t\t\t\t\t\t\t\t\t\tconst template = templates.find((template) => template.id === e.value?.value);\n\t\t\t\t\t\t\t\t\t\t\t\tconst clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tsetTemplateOptionSelected({\n\t\t\t\t\t\t\t\t\t\t\t\t\tname: template.name,\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalue: template.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdescription: template.description,\n\t\t\t\t\t\t\t\t\t\t\t\t\tclientProfileName: clientProfileName\n\t\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(clientProfileName);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t// template cleared\n\t\t\t\t\t\t\t\t\t\t\t\treset(true);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"disabled","d":"expression","e":"templates.length === 0"},{"b":"required","d":"boolean","e":"true"},{"b":"multiple","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"key","d":"variable","e":"FormNameTemplate"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"variable","e":"templateOptionSelected"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"updateTemplateOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"templateOptions"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\tselectTemplate(templates.find((template) => template.id === e.value.value));\n\t\t\t\t\t\t\t\t\t\t\t\t// template changed - keep queue name, clear other properties\n\t\t\t\t\t\t\t\t\t\t\t\tupdateUserConfigValues({ queueName: queueName }, true);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"disabled","d":"expression","e":"isTemplateSelectionDisabled(templates, templateOutOfSync)"},{"b":"required","d":"boolean","e":"true"},{"b":"multiple","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"placeholder","d":"string","e":"All Domains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"searchLocalDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"placeholder","d":"string","e":"All Domains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"id","d":"string","e":"eventMeshSearch"},{"b":"name","d":"string","e":"eventMeshSearch"},{"b":"dataQa","d":"string","e":"eventMeshSearch"},{"b":"placeholder","d":"expression","e":"selectedEventMeshes?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedEventMeshes"},{"b":"options","d":"variable","e":"matchingEventMeshes"},{"b":"itemComponent","d":"variable","e":"getEventMeshSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getEventMeshSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChangeEventMeshes"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEventMeshOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isEventMeshSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{selectedEventMeshes?.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"id","d":"string","e":"requestorSelect"},{"b":"name","d":"string","e":"requestorSelect"},{"b":"dataQa","d":"string","e":"requestorSelect"},{"b":"label","d":"string","e":"Requestor"},{"b":"placeholder","d":"expression","e":"selectedRequestors?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedRequestors"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"function","e":"(option) => option.name"},{"b":"onChange","d":"variable","e":"handleRequestorChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option.value === value.value"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\t\t\t\t\t\t\t\trequestorInputRef.current = input;\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"filterLabel"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"id","d":"string","e":"templateEnvironmentAssociation"},{"b":"name","d":"string","e":"templateEnvironmentAssociation"},{"b":"dataQa","d":"string","e":"templateEnvironmentAssociation"},{"b":"placeholder","d":"expression","e":"displayedEnvironments?.length ? \"\" : \"Select environments\""},{"b":"required","d":"expression","e":"!!isRequired"},{"b":"readOnly","d":"expression","e":"!!isReadOnly"},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"displayedEnvironments"},{"b":"options","d":"variable","e":"matchingEnvironments"},{"b":"onChange","d":"variable","e":"handleChangeEnvironments"},{"b":"itemComponent","d":"variable","e":"EnvironmentMultiSelectOption"},{"b":"itemMappingCallback","d":"function","e":"(option) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...option,\n\t\t\t\t\t\tenvironmentOption: getEnvironmentChipObject(environmentOptions, option.id)\n\t\t\t\t\t};\n\t\t\t\t}"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEnvironmentsOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isEnvironmentSelectAutocompleteOptionEqual"},{"b":"hasErrors","d":"expression","e":"!!hasErrors"},{"b":"helperText","d":"variable","e":"helperText"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tautocompleteRef.current = input;\n\t\t\t\t}"},{"b":"renderTags","d":"function","e":"() =>\n\t\t\t\t\tdisplayedEnvironments?.length > 0 && (\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tcolumnGap={8}\n\t\t\t\t\t\t\tshowAll={false}\n\t\t\t\t\t\t\tcontainerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"id","d":"string","e":"shareFilterSelect"},{"b":"name","d":"string","e":"shareFilterSelect"},{"b":"dataQa","d":"string","e":"shareFilterSelect"},{"b":"label","d":"expression","e":"en.kpiMetricsDashboard.sharedFilter"},{"b":"value","d":"variable","e":"selectedSharedType"},{"b":"options","d":"variable","e":"filteredSharedTypeOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleShareFilterChange"},{"b":"fetchOptionsCallback","d":"variable","e":"filterSharedTypeOptions"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"175px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"id","d":"string","e":"brokerFilterSelect"},{"b":"name","d":"string","e":"brokerFilterSelect"},{"b":"dataQa","d":"string","e":"brokerFilterSelect"},{"b":"label","d":"expression","e":"en.kpiMetricsDashboard.brokerTypeFilter"},{"b":"value","d":"variable","e":"selectedBrokerType"},{"b":"options","d":"variable","e":"filteredBrokerTypeOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleBrokerTypeFilterChange"},{"b":"fetchOptionsCallback","d":"variable","e":"filterBrokerTypeOptions"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"175px"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..368f89cee --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +28 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..a5e4d66f3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":28} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..536dc85f3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":10},{"name":"name","count":5},{"name":"value","count":5},{"name":"subText","count":3},{"name":"supplementalText","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..6d9bdf711 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..0ec3851fa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"name","d":"expression","e":"RESOURCE_LABEL_BY_ROLE[role]"},{"b":"value","d":"variable","e":"role"},{"b":"subText","d":"expression","e":"RESOURCE_DESCRIPTION_BY_ROLE[role]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"messages.credentials.solaceClientUsername.label"},{"b":"value","d":"expression","e":"CONFIGURATION_TYPES.solaceClientUsername"},{"b":"supplementalText","d":"expression","e":"isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"messages.credentials.solaceAuthorizationGroup.label"},{"b":"value","d":"expression","e":"CONFIGURATION_TYPES.solaceAuthorizationGroup"},{"b":"supplementalText","d":"expression","e":"isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"...","d":"spread","e":"eventMesh"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"...","d":"spread","e":"version"},{"b":"supplementalText","d":"expression","e":"isSecondVersionOptions && selectedVersionId === version.id ? \"No Difference\" : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"name","d":"expression","e":"EMA_MODES_LABELS.scanWithEventPortal"},{"b":"value","d":"expression","e":"EMA_MODES.scanFromEventPortal"},{"b":"subText","d":"string","e":"Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal."}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"name","d":"expression","e":"EMA_MODES_LABELS.uploadScanFile"},{"b":"value","d":"expression","e":"EMA_MODES.uploadScanFile"},{"b":"subText","d":"string","e":"Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode."}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..597975b41 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +35 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..9e7fd5c91 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":35} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/commonProps.json new file mode 100644 index 000000000..cb8560aff --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/commonProps.json @@ -0,0 +1 @@ +[{"name":"containerWidth","count":7},{"name":"tags","count":7},{"name":"tagMaxWidth","count":7},{"name":"overflowIndicatorLabel","count":7},{"name":"overflowIndicatorLabelSingular","count":7},{"name":"onDelete","count":7},{"name":"dataQa","count":7},{"name":"numOfRowsToShow","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/files.json new file mode 100644 index 000000000..d6162cc39 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/instances.json new file mode 100644 index 000000000..db10d994c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${FilterType.eventMesh}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 190}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${customAttributeFilterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 190}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"containerWidth","d":"expression","e":"filtersWidth[FilterType.eventMesh]"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"tagMaxWidth","d":"expression","e":"filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null"},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"dataQa","d":"expression","e":"\"eventMeshSearchSelect-tags\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"containerWidth","d":"expression","e":"filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${FilterType.requestor}-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json new file mode 100644 index 000000000..b404f9339 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/commonProps.json new file mode 100644 index 000000000..ee77040b8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/commonProps.json @@ -0,0 +1 @@ +[{"name":"showSidePanel","count":18},{"name":"sidePanelContent","count":18},{"name":"sidePanelWidth","count":18},{"name":"sidePanelPosition","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/files.json new file mode 100644 index 000000000..2995f8f1b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/instances.json new file mode 100644 index 000000000..c7cc25b3b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedDomain"},{"b":"sidePanelContent","d":"expression","e":"renderSidePanel()"},{"b":"sidePanelWidth","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!highlightedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEventApi"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEventApiProduct"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedApplication"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEvent"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEnum"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedSchema"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedMem"},{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"sidePanelContent","d":"expression","e":"selectedMem ? (\n\t\t\t\t\t\t undefined}\n\t\t\t\t\t\t\tuserMap={entityCreateUpdateUsersMap}\n\t\t\t\t\t\t/>\n\t\t\t\t\t) : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"showSidePanel","d":"boolean","e":"true"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"sidePanelContent","d":"variable","e":"sidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"showSidePanel","d":"boolean","e":"true"},{"b":"sidePanelWidth","d":"number","e":"394"},{"b":"sidePanelPosition","d":"expression","e":"SolacePanelPosition.LEFT"},{"b":"sidePanelContent","d":"expression","e":"renderSidePanelContent()"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/totalUsages.json new file mode 100644 index 000000000..25bf17fc5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/totalUsages.json @@ -0,0 +1 @@ +18 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/usagesByMfe.json new file mode 100644 index 000000000..7052cc84e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSidePanelLayout/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":18} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/commonProps.json new file mode 100644 index 000000000..bc3845be4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/commonProps.json @@ -0,0 +1 @@ +[{"name":"minSize","count":2},{"name":"defaultSize","count":2},{"name":"maxSize","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/files.json new file mode 100644 index 000000000..78a44cfde --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/instances.json new file mode 100644 index 000000000..859fa24a1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"minSize","d":"number","e":"500"},{"b":"defaultSize","d":"number","e":"500"},{"b":"maxSize","d":"expression","e":"-700"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"minSize","d":"number","e":"500"},{"b":"defaultSize","d":"number","e":"500"},{"b":"maxSize","d":"expression","e":"Math.max(500, leftPanelMaxWidth)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceSplitPane/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/commonProps.json new file mode 100644 index 000000000..665ec0159 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"spacing","count":29},{"name":"direction","count":12},{"name":"width","count":9},{"name":"alignItems","count":4},{"name":"paddingLeft","count":3},{"name":"justifyContent","count":1},{"name":"marginTop","count":1},{"name":"gap","count":1},{"name":"marginBottom","count":1},{"name":"data-qa","count":1},{"name":"mb","count":1},{"name":"maxHeight","count":1},{"name":"p","count":1},{"name":"paddingTop","count":1},{"name":"m","count":1},{"name":"textAlign","count":1},{"name":"my","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/files.json new file mode 100644 index 000000000..a9d83aac7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/instances.json new file mode 100644 index 000000000..677c41879 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"width","d":"number","e":"600"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"space-between"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"paddingLeft","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"paddingLeft","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"paddingLeft","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"flex-start"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"marginTop","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"gap","d":"number","e":"1"},{"b":"marginBottom","d":"number","e":"1"},{"b":"data-qa","d":"string","e":"manageCredentialsEditor"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"4"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"mb","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"maxHeight","d":"expression","e":"\"360px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"spacing","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"p","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"},{"b":"paddingTop","d":"expression","e":"theme.spacing(3)"},{"b":"spacing","d":"number","e":"1.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"spacing","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"spacing","d":"number","e":"3"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"direction","d":"string","e":"row"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"spacing","d":"number","e":"0.25"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"m","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"my","d":"number","e":"2.5"},{"b":"width","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"spacing","d":"number","e":"2.5"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/totalUsages.json new file mode 100644 index 000000000..4b6f9c39e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +64 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..bf79a74f3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":64} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/commonProps.json new file mode 100644 index 000000000..23dcaade3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/commonProps.json @@ -0,0 +1 @@ +[{"name":"steps","count":1},{"name":"activeStep","count":1},{"name":"setActiveStep","count":1},{"name":"onClose","count":1},{"name":"onSubmit","count":1},{"name":"submitLabel","count":1},{"name":"disableSubmit","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/files.json new file mode 100644 index 000000000..6b9c92748 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/instances.json new file mode 100644 index 000000000..914a4b152 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"steps","d":"variable","e":"steps"},{"b":"activeStep","d":"variable","e":"activeStep"},{"b":"setActiveStep","d":"variable","e":"handleSetActiveStepRequest"},{"b":"onClose","d":"function","e":"() => history.push(\"/ep/designer\")"},{"b":"onSubmit","d":"variable","e":"handleSubmit"},{"b":"submitLabel","d":"expression","e":"messages.aiWizardButton.submit"},{"b":"disableSubmit","d":"variable","e":"isLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceStepper/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/commonProps.json new file mode 100644 index 000000000..06f250b79 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/commonProps.json @@ -0,0 +1 @@ +[{"name":"rows","count":19},{"name":"columns","count":19},{"name":"selectionType","count":19},{"name":"sortCallback","count":19},{"name":"renderCustomRowCells","count":17},{"name":"showEmptyState","count":15},{"name":"id","count":14},{"name":"sortedColumn","count":12},{"name":"hasColumnHiding","count":12},{"name":"expandableRowOptions","count":11},{"name":"displayedColumns","count":10},{"name":"displayedColumnsChangedCallback","count":10},{"name":"selectedRowIds","count":9},{"name":"selectionChangedCallback","count":9},{"name":"renderCustomEmptyState","count":9},{"name":"emptyStateMessage","count":8},{"name":"renderCustomRowActionItem","count":6},{"name":"rowActionMenuItems","count":5},{"name":"independentRowHighlight","count":4},{"name":"highlightedRowId","count":4},{"name":"rowHighlightChangedCallback","count":4},{"name":"disabledRowIds","count":2},{"name":"loading","count":2},{"name":"maxHeight","count":1},{"name":"customContentDefinitions","count":1},{"name":"displayedCustomContent","count":1},{"name":"customContentDisplayChangeCallback","count":1},{"name":"customMenuActions","count":1},{"name":"crossPageRowSelectionSupported","count":1},{"name":"totalObjectCount","count":1},{"name":"deselectedRowIds","count":1},{"name":"allPagesSelectedByDefault","count":1},{"name":"crossPageSelectionChangedCallback","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/files.json new file mode 100644 index 000000000..5255778ce --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/instances.json new file mode 100644 index 000000000..e5443885a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"selectionType ?? SolaceTableSelectionType.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"renderCustomEmptyState","d":"expression","e":"renderCustomEmptyState ?? defaultEmptyState"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.MULTI"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"renderCustomEmptyState","d":"expression","e":"renderCustomEmptyState ?? defaultEmptyState"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"variable","e":"highlightedRowId"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"id","d":"string","e":"event-flow-discrepancy-preview-table"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"paginatedRows"},{"b":"columns","d":"variable","e":"columns"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItems"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"renderCustomEmptyState","d":"variable","e":"customEmptyState"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"renderCustomRowActionItem","d":"expression","e":"renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No ${entityTypeToLabelLowercase(entityType)}s have been created`"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"variable","e":"highlightedRowId"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"},{"b":"disabledRowIds","d":"variable","e":"disabledRowIds"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","c":[{"b":"id","d":"expression","e":"\"metricsDashboardTable\""},{"b":"rows","d":"expression","e":"handleProcessEntities(entities)"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"hasColumnHiding","d":"boolean","e":"false"},{"b":"rowActionMenuItems","d":"null","e":"null"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\treturn renderRowCells(row);\n\t\t\t}"},{"b":"renderCustomEmptyState","d":"variable","e":"customEmptyState"},{"b":"showEmptyState","d":"expression","e":"!entities || entities.length === 0"},{"b":"sortCallback","d":"null","e":"null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"id","d":"expression","e":"`parentEventsTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"false"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"disabledRowIds","d":"variable","e":"existingSharedEventIds"},{"b":"emptyStateMessage","d":"expression","e":"`No matching events have been found`"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: false,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"id","d":"expression","e":"`parentEventsTable`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\t\treturn renderRowCells(row, columnsHiddenInfo);\n\t\t\t\t\t}"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"en.eventApi.labels.emptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\trenderChildren: renderExpandedRowContent,\n\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\tsetExpandedRowIds: setExpandedRowIds,\n\t\t\t\t\t\tselectRowWhenClickOnChildren: false\n\t\t\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowCells","d":"variable","e":"renderCustomRowCells"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"id","d":"expression","e":"`parentSchemasTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No matching schemas have been found`"},{"b":"renderCustomEmptyState","d":"expression","e":"hasFilter && clearFilterEmptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"id","d":"expression","e":"`parentApplicationsTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No matching applications have been found`"},{"b":"renderCustomEmptyState","d":"expression","e":"hasFilter && clearFilterEmptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"id","d":"expression","e":"`parentEventsTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No matching events have been found`"},{"b":"renderCustomEmptyState","d":"expression","e":"hasFilter && clearFilterEmptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"id","d":"expression","e":"`eventAccessRequestTable`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"renderCustomEmptyState","d":"variable","e":"renderEmptyState"},{"b":"showEmptyState","d":"expression","e":"tableDataAvailable && !loading"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"expression","e":"highlightedRow?.id"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\t\t\tallowToggle: false,\n\t\t\t\t\t\trenderChildren: (row) => renderExpandedRowContent(row),\n\t\t\t\t\t\texpandedRowIds: [],\n\t\t\t\t\t\tsetExpandedRowIds: () => {\n\t\t\t\t\t\t\tvoid 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"loading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"id","d":"string","e":"remTable"},{"b":"renderCustomRowCells","d":"variable","e":"renderCustomRow"},{"b":"maxHeight","d":"expression","e":"`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`"},{"b":"renderCustomRowActionItem","d":"variable","e":"actions"},{"b":"rows","d":"variable","e":"remEntities"},{"b":"selectedRowIds","d":"array","e":"[selectedMem?.id]"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelection"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx","c":[{"b":"loading","d":"variable","e":"isLoading"},{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.MULTI"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"variable","e":"highlightedRowId"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No ${entityTypeToLabelLowercase(entityType)}s have been created`"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"renderCustomEmptyState","d":"variable","e":"renderCustomEmptyState"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"},{"b":"customContentDefinitions","d":"variable","e":"customContentDefinitions"},{"b":"displayedCustomContent","d":"variable","e":"displayedCustomContent"},{"b":"customContentDisplayChangeCallback","d":"variable","e":"customContentDisplayChangeCallback"},{"b":"customMenuActions","d":"variable","e":"customMenuActions"},{"b":"crossPageRowSelectionSupported","d":"expression","e":"auditEntityType === null ? false : true"},{"b":"totalObjectCount","d":"variable","e":"entityCount"},{"b":"deselectedRowIds","d":"variable","e":"deselectedRowIds"},{"b":"allPagesSelectedByDefault","d":"variable","e":"allPagesSelectedByDefault"},{"b":"crossPageSelectionChangedCallback","d":"variable","e":"handleCrossPageRowSelectionsChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowCells","d":"variable","e":"renderCustomRowCells"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"sortCallback","d":"function","e":"() => null"},{"b":"rows","d":"expression","e":"getFilteredRows()"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"columns","d":"expression","e":"TEMPLATE_TYPES[type].tableColumns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"emptyStateMessage","d":"expression","e":"messages[type].emptyTableMessage"},{"b":"showEmptyState","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/totalUsages.json new file mode 100644 index 000000000..dec2bf5d6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/totalUsages.json @@ -0,0 +1 @@ +19 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/usagesByMfe.json new file mode 100644 index 000000000..5a68fdaf8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTable/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":19} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/commonProps.json new file mode 100644 index 000000000..53f5fc99b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"tabs","count":20},{"name":"activeTabValue","count":20},{"name":"onTabClick","count":17},{"name":"size","count":9},{"name":"variant","count":3},{"name":"...","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/files.json new file mode 100644 index 000000000..9fe5a8f91 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/instances.json new file mode 100644 index 000000000..b174781b6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","c":[{"b":"...","d":"spread","e":"tabProps"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","c":[{"b":"tabs","d":"variable","e":"brokerTypeOptions"},{"b":"activeTabValue","d":"variable","e":"addObjectsActiveTab"},{"b":"onTabClick","d":"variable","e":"handleAddObjectTabClick"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"size","d":"string","e":"md"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"size","d":"string","e":"md"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeEntityType"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => handleTabClick(tab)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","c":[{"b":"tabs","d":"variable","e":"actionTabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleActionTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeEntityType"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"size","d":"string","e":"md"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"...","d":"spread","e":"tabProps"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx","c":[{"b":"tabs","d":"variable","e":"tabArray"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"activeTabValue","d":"variable","e":"selectedTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: \"mostUsed\" },\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: \"leastused\" }\n\t\t\t\t\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..8fdd954df --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +22 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..5a936e55e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":22} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/commonProps.json new file mode 100644 index 000000000..f89450ae2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":4},{"name":"fillColor","count":2},{"name":"labelColor","count":2},{"name":"variant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/files.json new file mode 100644 index 000000000..86c8f98c3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/instances.json new file mode 100644 index 000000000..fad8e1089 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.OUTLINED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.infoBgBlue"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.infoBgBlue"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/usagesByMfe.json new file mode 100644 index 000000000..7b7a145fa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTag/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/commonProps.json new file mode 100644 index 000000000..2700f7904 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":10},{"name":"value","count":10},{"name":"dataQa","count":9},{"name":"maxLength","count":8},{"name":"onChange","count":8},{"name":"hasErrors","count":6},{"name":"helperText","count":6},{"name":"label","count":5},{"name":"onBlur","count":4},{"name":"minRows","count":3},{"name":"maxRows","count":3},{"name":"resizable","count":3},{"name":"readOnly","count":2},{"name":"width","count":2},{"name":"onKeyDown","count":1},{"name":"autoFocus","count":1},{"name":"required","count":1},{"name":"aria-label","count":1},{"name":"disabled","count":1},{"name":"placeholder","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/files.json new file mode 100644 index 000000000..94637a634 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/instances.json new file mode 100644 index 000000000..d2ded4707 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)"},{"b":"minRows","d":"number","e":"3"},{"b":"maxRows","d":"number","e":"3"},{"b":"maxLength","d":"variable","e":"complexValueTypeCharLimit"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"resizable","d":"expression","e":"\"vertical\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${entityType}[name]`"},{"b":"autoFocus","d":"expression","e":"!isDuplicateVersion"},{"b":"maxLength","d":"expression","e":"nameMaxLength + 1"},{"b":"minRows","d":"number","e":"1"},{"b":"maxRows","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)"},{"b":"minRows","d":"number","e":"3"},{"b":"maxRows","d":"number","e":"3"},{"b":"maxLength","d":"variable","e":"complexValueTypeCharLimit"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"resizable","d":"expression","e":"\"vertical\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"expression","e":"`postRequestTargetValue`"},{"b":"value","d":"expression","e":"queueBindingConfiguration.postRequestTarget"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"`postRequestTargetValue`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"expression","e":"`${prefix}Value`"},{"b":"value","d":"variable","e":"displayedHeaderValue"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"`${prefix}Value`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.requestHeaderValue"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"required","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2001"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"variable","e":"configurationNameRequestHeaderValue"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"aria-label","d":"string","e":"Comment"},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"comment"},{"b":"value","d":"expression","e":"item?.comments"},{"b":"onChange","d":"function","e":"(e) => handleOnCommentChange(e, item)"},{"b":"label","d":"expression","e":"\"Comment\""},{"b":"maxLength","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"name","d":"string","e":"declineReason"},{"b":"value","d":"variable","e":"declineReason"},{"b":"onChange","d":"variable","e":"handleReasonChange"},{"b":"label","d":"expression","e":"\"Reason for Decline\""},{"b":"hasErrors","d":"expression","e":"!!declineReasonError"},{"b":"helperText","d":"variable","e":"declineReasonError"},{"b":"maxLength","d":"variable","e":"MAX_REASON_LENGTH"},{"b":"disabled","d":"expression","e":"reviewDecision !== ReviewDecision.declined"},{"b":"dataQa","d":"string","e":"declineReason"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"width","d":"string","e":"550px"},{"b":"name","d":"string","e":"declineReason"},{"b":"value","d":"variable","e":"declineReason"},{"b":"onChange","d":"variable","e":"handleReasonChange"},{"b":"label","d":"expression","e":"\"Reason for Revocation\""},{"b":"hasErrors","d":"expression","e":"!!declineReasonError"},{"b":"helperText","d":"variable","e":"declineReasonError"},{"b":"maxLength","d":"variable","e":"MAX_REASON_LENGTH"},{"b":"dataQa","d":"string","e":"declineReason"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"name","d":"expression","e":"description ?? \"emptyDescription\""},{"b":"label","d":"expression","e":"label ?? \"Description\""},{"b":"value","d":"variable","e":"description"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetDescription(e.value ?? \"\");\n\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\tsetDescription(description.trim());\n\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"description\""},{"b":"maxLength","d":"number","e":"10000"},{"b":"placeholder","d":"expression","e":"placeholder ?? \"\""},{"b":"resizable","d":"variable","e":"resizable"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/usagesByMfe.json new file mode 100644 index 000000000..647cc5937 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/commonProps.json new file mode 100644 index 000000000..5c69bc14a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/commonProps.json @@ -0,0 +1 @@ +[{"name":"text1","count":2},{"name":"text2","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/files.json new file mode 100644 index 000000000..6177793e3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/instances.json new file mode 100644 index 000000000..51d30d431 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"text1","d":"variable","e":"schemaBody"},{"b":"text2","d":"variable","e":"secondSchemaBody"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"text1","d":"variable","e":"runtimeAttributes"},{"b":"text2","d":"variable","e":"designerAttributes"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextDiff/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/commonProps.json new file mode 100644 index 000000000..fe05320b7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":71},{"name":"value","count":71},{"name":"dataQa","count":67},{"name":"onChange","count":66},{"name":"hasErrors","count":57},{"name":"helperText","count":57},{"name":"onBlur","count":36},{"name":"required","count":28},{"name":"label","count":28},{"name":"readOnly","count":22},{"name":"maxLength","count":18},{"name":"id","count":18},{"name":"disabled","count":15},{"name":"autoFocus","count":15},{"name":"onKeyDown","count":10},{"name":"endAdornment","count":8},{"name":"width","count":7},{"name":"fullWidth","count":7},{"name":"type","count":5},{"name":"placeholder","count":4},{"name":"dataTags","count":2},{"name":"inlineLabel","count":2},{"name":"onFocus","count":1},{"name":"minWidth","count":1},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/files.json new file mode 100644 index 000000000..899908226 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/instances.json new file mode 100644 index 000000000..70b27abdb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"name","d":"expression","e":"\"authenticationB\""},{"b":"dataQa","d":"expression","e":"\"authenticationB\""},{"b":"value","d":"expression","e":"getCredentialsFieldValue(credentials, \"inputB\")"},{"b":"type","d":"variable","e":"inputBType"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"name","d":"string","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Name"},{"b":"value","d":"variable","e":"variableName"},{"b":"onChange","d":"variable","e":"handleNameChange"},{"b":"onBlur","d":"function","e":"() => handleNameValidate()"},{"b":"hasErrors","d":"expression","e":"!!nameErrorMsg"},{"b":"helperText","d":"variable","e":"nameErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getVersionErrorMessage(value, error) : \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"autoFocus","d":"expression","e":"mode === \"edit\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getVersionErrorMessage(value, error) : \"\""},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\t\t\t\t\t\t\t\t\t\tconst validVersion = semverValid(newValue) ?? newValue;\n\n\t\t\t\t\t\t\t\t\t\tonChange(validVersion);\n\t\t\t\t\t\t\t\t\t\tcheckVersionAndSetWarning(validVersion);\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"DuplicateEntityVersion[version]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"maxLength","d":"number","e":"251"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!nameErrorMsg || !!attributeErrorMsg"},{"b":"helperText","d":"expression","e":"nameErrorMsg || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-input`"},{"b":"dataTags","d":"expression","e":"`hasFocus=${customAttribute.hasFocus}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!nameErrorMsg || !!attributeErrorMsg"},{"b":"helperText","d":"expression","e":"nameErrorMsg || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-input`"},{"b":"dataTags","d":"expression","e":"`hasFocus=${customAttribute.hasFocus}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","c":[{"b":"id","d":"expression","e":"`messagingServiceDetails[${attribute}]`"},{"b":"name","d":"expression","e":"`messagingServiceDetails[${attribute}]`"},{"b":"dataQa","d":"expression","e":"`messagingServiceDetails[${attribute}]`"},{"b":"value","d":"variable","e":"attributeValue"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleNameChange"},{"b":"onBlur","d":"variable","e":"handleNameOnBlur"},{"b":"id","d":"string","e":"eventMesh[name]"},{"b":"name","d":"string","e":"eventMesh[name]"},{"b":"dataQa","d":"string","e":"eventMesh[name]"},{"b":"label","d":"variable","e":"LABEL_NAME"},{"b":"value","d":"expression","e":"memContent.name"},{"b":"required","d":"expression","e":"mode === \"create\" || mode === \"edit\""},{"b":"readOnly","d":"expression","e":"mode === \"view\""},{"b":"hasErrors","d":"expression","e":"!!getNameErrorMessage"},{"b":"helperText","d":"variable","e":"getNameErrorMessage"},{"b":"disabled","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][schemaRegistry][registryUrl]"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? renderKafkaAuthHelperText(\"registryUrl\") : \"\""},{"b":"id","d":"string","e":"schemaRegistry[registryUrl]"},{"b":"label","d":"string","e":"Registry URL"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][management][sempUsername]"},{"b":"disabled","d":"variable","e":"loading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"id","d":"string","e":"eventBroker[solace][management][sempUsername]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.sempUsername"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][management][sempUrl]"},{"b":"disabled","d":"variable","e":"loading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"id","d":"string","e":"eventBroker[solace][management][sempUrl]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.sempUrl"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][messaging][host]"},{"b":"disabled","d":"variable","e":"loading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? \"e.g. ########.messaging.solace.cloud or 123.89.40.72\" : \"\""},{"b":"id","d":"string","e":"eventBroker[solace][messaging][host]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.host"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][authentication][${authKey}][${inputField}]`"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? helperText : \"\""},{"b":"id","d":"expression","e":"`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels[inputField]"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"isRequired"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][authentication][bootstrapServers]"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? \"Use a comma (,) to separate the messaging services in the Kafka cluster.\" : \"\""},{"b":"id","d":"string","e":"eventBroker[kafka][authentication][bootstrapServers]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.bootstrapServers"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"},{"b":"disabled","d":"expression","e":"loading || kafkaDelimiterIsNotSet"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? helperText : \"\""},{"b":"id","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"label"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tsetValue(name, value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"expression","e":"!readOnly && isRequired"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","c":[{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.port"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"selectedMode === \"view\""},{"b":"type","d":"string","e":"number"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"250px"},{"b":"dataQa","d":"expression","e":"`eventBroker[solace][messaging][protocol][${index}][port]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[name]"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.name"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"readOnly || !!content.solaceCloudMessagingServiceId"},{"b":"required","d":"expression","e":"!readOnly"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][messageVpn]"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"id","d":"string","e":"eventBroker[solace][messageVpn]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.messageVPN"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Filter by Name"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"width","d":"string","e":"50%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","c":[{"b":"name","d":"expression","e":"textFieldName ?? \"entityVersionTextField\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"version"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg"},{"b":"helperText","d":"expression","e":"validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText"},{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx","c":[{"b":"name","d":"string","e":"createInlineApplication"},{"b":"dataQa","d":"string","e":"createInlineApplication"},{"b":"label","d":"string","e":"New Application Name"},{"b":"value","d":"variable","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg || !!backendErrorMsg"},{"b":"helperText","d":"expression","e":"validationErrorMsg || backendErrorMsg || \"\""},{"b":"onChange","d":"variable","e":"handleEntityNameChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"},{"b":"disabled","d":"expression","e":"!domainId"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx","c":[{"b":"name","d":"string","e":"createInlineApplicationDomain"},{"b":"dataQa","d":"string","e":"createInlineApplicationDomain"},{"b":"label","d":"string","e":"New Application Domain Name"},{"b":"value","d":"variable","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg || !!backendErrorMsg"},{"b":"helperText","d":"expression","e":"validationErrorMsg || backendErrorMsg || SHARE_WARNING"},{"b":"onChange","d":"variable","e":"handleEntityNameChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx","c":[{"b":"name","d":"expression","e":"textFieldName ?? \"entityNameTextField\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"variable","e":"label"},{"b":"value","d":"variable","e":"entityName"},{"b":"required","d":"boolean","e":"true"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"maxLength","d":"expression","e":"maxLength + 1"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg"},{"b":"helperText","d":"variable","e":"validationErrorMsg"},{"b":"onChange","d":"variable","e":"handleEntityNameChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getVersionErrorMessage(value, error) : \"\""},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (semverValid(newValue) !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tcheckIfVersionStillLatestAfterUpdate(newValue, versionId);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(semverValid(newValue) ?? newValue);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"autoFocus","d":"variable","e":"isDuplicateVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"maxLength","d":"number","e":"251"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"name","d":"string","e":"eventSearchInput"},{"b":"dataQa","d":"string","e":"eventSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","c":[{"b":"name","d":"string","e":"nodeNameTextField"},{"b":"dataQa","d":"string","e":"appDomain-graph-object-name-field"},{"b":"value","d":"variable","e":"nodeName"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"onKeyDown","d":"variable","e":"handleKeyDown"},{"b":"onFocus","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetTimeout(() => e.target.select(), 100); // Delay to ensure select() works\n\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!errorMessage"},{"b":"helperText","d":"variable","e":"errorMessage"},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"`${nameEditorWidth}px`"},{"b":"maxLength","d":"expression","e":"maxNameLength + 1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"autoFocus","d":"expression","e":"value === \"\""},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.name`"},{"b":"maxLength","d":"number","e":"256"},{"b":"readOnly","d":"expression","e":"!isGlobal"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsg"},{"b":"helperText","d":"expression","e":"errorMsg || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\thandleFilenameUpdate(e.value);\n\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\thandleFilenameUpdate(value.trim());\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`filenameInput`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"eventApiProduct[name]\""},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`maxTTLTextField-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value.trim())"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"readOnly","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`maxMsgSpoolUsageTextField-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value.trim())"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"readOnly","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"id","d":"expression","e":"`planNameTextField-${index}`"},{"b":"dataQa","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"topicAddressResourcesDisplayName"},{"b":"required","d":"boolean","e":"true"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"topicAddressResourcesLink"},{"b":"required","d":"boolean","e":"true"},{"b":"type","d":"string","e":"url"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"applicationDomain[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"eventApi[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"526px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"name","d":"string","e":"eventApiSearchInput"},{"b":"dataQa","d":"string","e":"eventApiSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"id","d":"expression","e":"`${level.name}-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error && \"Invalid Format\""},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value.trim())"},{"b":"dataQa","d":"variable","e":"name"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"622px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"key","d":"variable","e":"FormCustomizedClientProfileName"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"label","d":"expression","e":"messagesConfiguration.solaceClientProfileName.clientProfileName"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (e.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"required","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"33"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value ? value.trim() : \"\");\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`restDeliveryPointName-editor`"},{"b":"readOnly","d":"expression","e":"!getValues(`${formName}.configurationTypeId`)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonChange(value?.trim());\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${configurationName}-postRequestTarget`"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message || \"\""},{"b":"maxLength","d":"number","e":"2001"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.requestHeaderName"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"required","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"variable","e":"configurationNameRequestHeaderName"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"enumeration[name]\""},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"label","d":"expression","e":"\"Name\""},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"schema[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"getVersionErrorMessage(value, error)"},{"b":"onChange","d":"function","e":"(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[version]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Search"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"width","d":"string","e":"100%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"name","d":"string","e":"schemaSearchInput"},{"b":"dataQa","d":"string","e":"schemaSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"event[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"\"configurationInputA\""},{"b":"dataQa","d":"expression","e":"\"configurationInputA\""},{"b":"label","d":"expression","e":"messages.credentials[configuration.typeId].inputA"},{"b":"value","d":"expression","e":"inputA ?? \"\""},{"b":"required","d":"variable","e":"isEditing"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!inputAValidationError"},{"b":"helperText","d":"variable","e":"inputAValidationError"},{"b":"onChange","d":"variable","e":"onChangeInputA"},{"b":"readOnly","d":"expression","e":"!isEditing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"\"configurationInputB\""},{"b":"dataQa","d":"expression","e":"\"configurationInputB\""},{"b":"label","d":"expression","e":"messages.credentials[configuration.typeId].inputB"},{"b":"value","d":"expression","e":"inputB || \"\""},{"b":"type","d":"variable","e":"inputBType"},{"b":"required","d":"variable","e":"isEditing"},{"b":"disabled","d":"expression","e":"isLoading || (configuration.inputB.type === \"password\" && !isEditing)"},{"b":"hasErrors","d":"expression","e":"!!inputBValidationError"},{"b":"helperText","d":"expression","e":"inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext"},{"b":"onChange","d":"variable","e":"onChangeInputB"},{"b":"readOnly","d":"expression","e":"configuration.inputB.type !== \"password\" && !isEditing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"label","d":"expression","e":"\"Name\""},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"event[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"getVersionErrorMessage(value, error)"},{"b":"onChange","d":"function","e":"(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())"},{"b":"dataQa","d":"expression","e":"\"eventVersion[version]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"name","d":"string","e":"eventSearchInput"},{"b":"dataQa","d":"string","e":"eventSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"application[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.common.labels.name"},{"b":"autoFocus","d":"expression","e":"value === \"\""},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"dataQa","d":"expression","e":"`consumerName`"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","c":[{"b":"name","d":"string","e":"applicationSearchInput"},{"b":"dataQa","d":"string","e":"applicationSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"schema[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"name","d":"expression","e":"name ?? \"emptyName\""},{"b":"label","d":"expression","e":"label ?? \"Name\""},{"b":"value","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tconst newName = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\tconst newName = name.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!errorMsg"},{"b":"helperText","d":"variable","e":"errorMsg"},{"b":"dataQa","d":"expression","e":"\"name\""},{"b":"maxLength","d":"number","e":"256"},{"b":"required","d":"boolean","e":"true"},{"b":"placeholder","d":"variable","e":"placeholder"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"name","d":"expression","e":"topic ?? \"emptyTopic\""},{"b":"label","d":"variable","e":"label"},{"b":"value","d":"variable","e":"topic"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tconst newTopic = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\tconst newTopic = topic.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!errorMsg"},{"b":"helperText","d":"variable","e":"errorMsg"},{"b":"dataQa","d":"variable","e":"label"},{"b":"maxLength","d":"variable","e":"maxLength"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"id","d":"string","e":"email-input"},{"b":"name","d":"string","e":"email-input"},{"b":"type","d":"string","e":"email"},{"b":"label","d":"expression","e":"en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress"},{"b":"helperText","d":"expression","e":"!isValid ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.eventPortalResources.labels.startJourney.inviteUsers.helperTextError\n\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t)"},{"b":"hasErrors","d":"expression","e":"!isValid"},{"b":"onChange","d":"variable","e":"handleEmailInput"},{"b":"value","d":"variable","e":"email"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"onBlur","d":"variable","e":"validateEmail"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"name","d":"expression","e":"\"Event Broker\""},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Event Broker\""},{"b":"value","d":"expression","e":"scan.messagingServiceName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx","c":[{"b":"name","d":"string","e":"topicAddress"},{"b":"label","d":"string","e":"Topic Address"},{"b":"value","d":"expression","e":"selectedAudits[0].identifier"},{"b":"required","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Search"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"width","d":"string","e":"100%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"onChange","d":"variable","e":"handleNameChange"},{"b":"onBlur","d":"variable","e":"handleNameOnBlur"},{"b":"id","d":"string","e":"runtimeAgent[name]"},{"b":"name","d":"string","e":"runtimeAgent[name]"},{"b":"dataQa","d":"string","e":"runtimeAgent[name]"},{"b":"value","d":"expression","e":"eventManagementAgent.name"},{"b":"hasErrors","d":"expression","e":"!!getNameErrorMessage"},{"b":"helperText","d":"variable","e":"getNameErrorMessage"},{"b":"disabled","d":"variable","e":"loading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[id]"},{"b":"name","d":"string","e":"runtimeAgent[id]"},{"b":"dataQa","d":"string","e":"runtimeAgent[id]"},{"b":"value","d":"variable","e":"agentId"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"clientProfileName"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tsetClientProfileName(e.value);\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`clientProfileName`"},{"b":"maxLength","d":"number","e":"33"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"`detailsName`"},{"b":"maxLength","d":"number","e":"256"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/totalUsages.json new file mode 100644 index 000000000..2fb681e3f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/totalUsages.json @@ -0,0 +1 @@ +71 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/usagesByMfe.json new file mode 100644 index 000000000..eba50e7e2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTextField/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":71} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/commonProps.json new file mode 100644 index 000000000..ecd0c596c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":1},{"name":"open","count":1},{"name":"action","count":1},{"name":"severity","count":1},{"name":"autoDismiss","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/files.json new file mode 100644 index 000000000..090bd4735 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/instances.json new file mode 100644 index 000000000..474f226d2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx","c":[{"b":"message","d":"expression","e":"toast.message"},{"b":"open","d":"expression","e":"toast.open"},{"b":"action","d":"expression","e":"toast.action"},{"b":"severity","d":"expression","e":"toast.severity"},{"b":"autoDismiss","d":"expression","e":"toast.autoDismiss"},{"b":"onClose","d":"variable","e":"removeToast"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToasts/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/commonProps.json new file mode 100644 index 000000000..e57363816 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":25},{"name":"isOn","count":25},{"name":"onChange","count":25},{"name":"id","count":17},{"name":"dataQa","count":15},{"name":"label","count":14},{"name":"disabled","count":2},{"name":"helperText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/files.json new file mode 100644 index 000000000..4f661ab60 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/instances.json new file mode 100644 index 000000000..5fe0d3df5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","c":[{"b":"id","d":"string","e":"showWarnings"},{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","c":[{"b":"name","d":"string","e":"disableMultiSelect"},{"b":"label","d":"expression","e":"\"Disable Multi Select\""},{"b":"isOn","d":"variable","e":"disableMultiSelect"},{"b":"onChange","d":"function","e":"(event) => setDisableMultiSelect(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","c":[{"b":"name","d":"string","e":"disableMoveNodes"},{"b":"label","d":"expression","e":"\"Disable Move Nodes\""},{"b":"isOn","d":"variable","e":"disableMoveNodes"},{"b":"onChange","d":"function","e":"(event) => setDisableMoveNodes(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"id","d":"string","e":"showWarnings"},{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"id","d":"string","e":"showWarnings"},{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges\""},{"b":"name","d":"expression","e":"\"shouldGroupEdges\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`"},{"b":"onChange","d":"function","e":"(event) => setShouldGroupEdges?.(event.value)"},{"b":"isOn","d":"variable","e":"shouldGroupEdges"},{"b":"disabled","d":"variable","e":"disableActionToChangeGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings\""},{"b":"name","d":"expression","e":"\"showWarnings\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`"},{"b":"onChange","d":"function","e":"(event) => setShowWarnings?.(event.value)"},{"b":"isOn","d":"variable","e":"showWarnings"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showFullName\""},{"b":"name","d":"expression","e":"\"showFullName\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showFullName`"},{"b":"onChange","d":"function","e":"(event) => setShowFullNames?.(event.value)"},{"b":"isOn","d":"variable","e":"showFullNames"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showNewEventVersionIndicator\""},{"b":"name","d":"expression","e":"\"showNewEventVersionIndicator\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showNewEventVersionIndicator`"},{"b":"onChange","d":"function","e":"(event) => setShowNewEventVersionIndicator?.(event.value)"},{"b":"isOn","d":"variable","e":"showNewEventVersionIndicator"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"snapNodeToGrid\""},{"b":"name","d":"expression","e":"\"snapNodeToGrid\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}snapNodeToGrid`"},{"b":"onChange","d":"function","e":"(event) => setSnapNodeToGrid?.(event.value)"},{"b":"isOn","d":"variable","e":"snapNodeToGrid"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges\""},{"b":"name","d":"expression","e":"\"shouldGroupEdges\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`"},{"b":"onChange","d":"function","e":"(event) => setShouldGroupEdges?.(event.value)"},{"b":"isOn","d":"variable","e":"shouldGroupEdges"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings\""},{"b":"name","d":"expression","e":"\"showWarnings\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`"},{"b":"onChange","d":"function","e":"(event) => setShowWarnings?.(event.value)"},{"b":"isOn","d":"variable","e":"showWarnings"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showFullName\""},{"b":"name","d":"expression","e":"\"showFullName\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showFullName`"},{"b":"onChange","d":"function","e":"(event) => setShowFullNames?.(event.value)"},{"b":"isOn","d":"variable","e":"showFullNames"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","c":[{"b":"id","d":"expression","e":"\"showAdvancedProperties\""},{"b":"name","d":"expression","e":"\"showAdvancedProperties\""},{"b":"label","d":"expression","e":"\"Show Advanced Properties\""},{"b":"dataQa","d":"expression","e":"\"showAdvancedPropertiesToggle\""},{"b":"onChange","d":"function","e":"() => setShowAdvancedProperties((prevValue) => !prevValue)"},{"b":"isOn","d":"variable","e":"showAdvancedProperties"},{"b":"disabled","d":"expression","e":"!restDeliveryPoint?.restConsumerConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","c":[{"b":"id","d":"expression","e":"\"showAdvancedProperties\""},{"b":"name","d":"expression","e":"\"showAdvancedProperties\""},{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.showAdvancedProperties"},{"b":"dataQa","d":"expression","e":"`showAdvancedProperties`"},{"b":"onChange","d":"function","e":"() => setShowAdvancedProperties((prevValue) => !prevValue)"},{"b":"isOn","d":"variable","e":"showAdvancedProperties"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings\""},{"b":"name","d":"expression","e":"\"showWarnings\""},{"b":"dataQa","d":"expression","e":"\"showWarnings\""},{"b":"onChange","d":"function","e":"(event) => setShowWarnings?.(event.value)"},{"b":"isOn","d":"variable","e":"showWarnings"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames\""},{"b":"name","d":"expression","e":"\"showFullNames\""},{"b":"dataQa","d":"expression","e":"\"showFullNames\""},{"b":"onChange","d":"function","e":"(event) => setShowFullNames?.(event.value)"},{"b":"isOn","d":"variable","e":"showFullNames"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showSchema\""},{"b":"name","d":"expression","e":"\"showSchema\""},{"b":"dataQa","d":"expression","e":"\"showSchema\""},{"b":"onChange","d":"function","e":"(event) => setShowSchema?.(event.value)"},{"b":"isOn","d":"variable","e":"showSchema"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","c":[{"b":"id","d":"string","e":"show_all_resources"},{"b":"isOn","d":"expression","e":"selectedEnvironment?.showAllResources"},{"b":"onChange","d":"function","e":"({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"messages.header.showAllResources"},{"b":"helperText","d":"expression","e":"messages.header.helperText"},{"b":"dataQa","d":"string","e":"REMHeaderShowAllResources"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"isOn","d":"variable","e":"hideMatches"},{"b":"name","d":"string","e":"hide-match"},{"b":"label","d":"string","e":"Hide Matches"},{"b":"onChange","d":"variable","e":"handleHideMatch"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"isOn","d":"variable","e":"hideSubRelationshipsMatches"},{"b":"name","d":"string","e":"hide-match"},{"b":"label","d":"string","e":"Hide Matches"},{"b":"onChange","d":"variable","e":"handleSubjectRelationshipHideMatch"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"name","d":"string","e":"showPropertyNames"},{"b":"label","d":"expression","e":"application.configuration.showPropertyNames"},{"b":"isOn","d":"variable","e":"showPropertyNames"},{"b":"onChange","d":"function","e":"() => setShowPropertyNames(!showPropertyNames)"},{"b":"dataQa","d":"string","e":"showPropertyNamesToggle"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/totalUsages.json new file mode 100644 index 000000000..410b14d2c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/totalUsages.json @@ -0,0 +1 @@ +25 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/usagesByMfe.json new file mode 100644 index 000000000..6a54adc57 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggle/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":25} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/commonProps.json new file mode 100644 index 000000000..4951cc9e7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"options","count":7},{"name":"activeValue","count":7},{"name":"onChange","count":7}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/files.json new file mode 100644 index 000000000..2a9050553 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/instances.json new file mode 100644 index 000000000..e4a05c764 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"options","d":"expression","e":"getFilterOptions()"},{"b":"activeValue","d":"variable","e":"activeTab"},{"b":"onChange","d":"variable","e":"onChangeTabHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"options","d":"variable","e":"getFilterOptions"},{"b":"activeValue","d":"variable","e":"activeTab"},{"b":"onChange","d":"variable","e":"onChangeTabHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx","c":[{"b":"options","d":"variable","e":"FILTER_OPTIONS"},{"b":"activeValue","d":"variable","e":"filter"},{"b":"onChange","d":"variable","e":"onChangeHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","c":[{"b":"options","d":"variable","e":"getFilterOptions"},{"b":"activeValue","d":"variable","e":"activeTabInApplicationFlow"},{"b":"onChange","d":"variable","e":"handleApplicationFlowTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","c":[{"b":"options","d":"variable","e":"getFilterOptions"},{"b":"activeValue","d":"variable","e":"activeTabInApplicationFlow"},{"b":"onChange","d":"variable","e":"handleApplicationFlowTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"options","d":"variable","e":"filterOptions"},{"b":"activeValue","d":"variable","e":"filter"},{"b":"onChange","d":"variable","e":"onChangeHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx","c":[{"b":"options","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Docker\",\n\t\t\t\t\tvalue: EmaInstallationTypes.docker,\n\t\t\t\t\tdataQa: \"ema-installation-type-docker\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Java\",\n\t\t\t\t\tvalue: EmaInstallationTypes.java,\n\t\t\t\t\tdataQa: \"ema-installation-type-java\"\n\t\t\t\t}\n\t\t\t]"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"activeValue","d":"variable","e":"activeValue"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/usagesByMfe.json new file mode 100644 index 000000000..b404f9339 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceToggleButtonGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..97b0e50ad --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":244},{"name":"variant","count":217},{"name":"placement","count":138},{"name":"maxWidth","count":76},{"name":"dataQa","count":23},{"name":"key","count":11},{"name":"open","count":8},{"name":"onOpen","count":8},{"name":"onClose","count":8},{"name":"disableHoverListener","count":6},{"name":"disableFocusListener","count":2},{"name":"data-qa","count":1},{"name":"enterDelay","count":1},{"name":"enterNextDelay","count":1},{"name":"id","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/files.json new file mode 100644 index 000000000..ab0c519b1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","../../../maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx","../../../maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx","../../../maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/instances.json new file mode 100644 index 000000000..4b311bd37 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"title ?? \"Configuring\""},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"getTitle(title, description)"},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"string","e":"Update event broker to configure recent changes to this application"},{"b":"placement","d":"string","e":"top-start"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"title","d":"variable","e":"tooltipTitle"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"eventVersion?.displayName || eventVersion?.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"subscriptions[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"subscriptions[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"key","d":"expression","e":"`${id}-subscriptions`"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{subscriptions.slice(1).map((sub, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{sub}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"discrepancies[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"discrepancies[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"key","d":"expression","e":"`${id}-discrepancies`"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{discrepancies.slice(1).map((discrepancy, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{discrepancy}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"getHelpTooltipContent()"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"messages.preview.aclProfile"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"string","e":"aclProfileConfig"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"messages.credentials.clientCredentials"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"string","e":"clientCredentialConfig"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"identifier"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"expression","e":"`queueConfig-${identifier}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"queueBindingTitle"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"expression","e":"`queueBindingConfig-${queueBindingTitle}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"identifier"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"expression","e":"`rdpConfig-${identifier}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"POPOVER_CONTENT"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}\n\t\t\t\t\t\t\t"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"{messages.add.applicationVersionRemovalWarning}"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"{messages.add.noConfigurationWarning}"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"{messages.add.noConfigurationWarning}"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"userName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"resourceName"},{"b":"data-qa","d":"string","e":"resourceNameTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx","c":[{"b":"title","d":"expression","e":"role.title"},{"b":"placement","d":"variable","e":"placement"},{"b":"dataQa","d":"expression","e":"`roleIcon-${resourceRole || \"none\"}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"disableHoverListener","d":"expression","e":"addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"enterDelay","d":"number","e":"800"},{"b":"enterNextDelay","d":"number","e":"800"},{"b":"disableFocusListener","d":"boolean","e":"true"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\tLink applications to show an organizational relationship in the graph view.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about linked applications\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"right-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx","c":[{"b":"key","d":"string","e":"graphViewToggle"},{"b":"title","d":"string","e":"Graph View"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"disableHoverListener","d":"expression","e":"selected === \"graph\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx","c":[{"b":"key","d":"string","e":"listViewToggle"},{"b":"disableHoverListener","d":"variable","e":"disableHoverOnListView"},{"b":"title","d":"expression","e":"entityName ? : \"Components\""},{"b":"variant","d":"expression","e":"entityName ? \"html\" : \"text\""},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"title","d":"expression","e":"selectedDetails.accessDenied && selectedDetails?.tooltip"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttribute.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttributeValue?.value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"getStringValuesTooltipContent(customAttributeValue?.stringValues)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"getCustomAttributesHelpTooltipContent()"},{"b":"placement","d":"expression","e":"\"right\""},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"caName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttribute.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"title","d":"expression","e":"\"Add the custom attribute to All application domains or only the Current application domain.\""},{"b":"variant","d":"string","e":"html"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"customAttributeScopeTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"selectedEntity.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"entityName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.displayName || version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"isSubscribeReadOnly ? \"Already subscribing to event\" : \"\""},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"isPublishReadOnly ? \"Already publishing event\" : \"\""},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t{searchText && {`Matching text for '${searchText}'`}}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"entityName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.displayName || version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"title","d":"expression","e":"environmentOption.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","c":[{"b":"title","d":"string","e":"Remove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","c":[{"b":"title","d":"expression","e":"`Remove`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"eventManagementAgent?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody(memName)"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"eventApiProductName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"itemName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.displayName || item.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"},{"b":"dataQa","d":"expression","e":"`domainIcon-${applicationDomainName}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"},{"b":"dataQa","d":"expression","e":"`domainChip-${applicationDomainName}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"messages.configuration.description"},{"b":"placement","d":"string","e":"top"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"renderProtocolPopover(messagingService.supportedProtocols ?? [])"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"title","d":"expression","e":"item.parent?.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"title","d":"expression","e":"item.displayName || item.version"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx","c":[{"b":"title","d":"string","e":"Zoom Out"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx","c":[{"b":"title","d":"string","e":"Zoom In"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"removedNode.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"removedNode.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx","c":[{"b":"title","d":"string","e":"Zoom Out"},{"b":"disableHoverListener","d":"variable","e":"disabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx","c":[{"b":"title","d":"string","e":"Zoom In"},{"b":"disableHoverListener","d":"variable","e":"disabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.parentName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.versionName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx","c":[{"b":"title","d":"expression","e":"item.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"customAttributeName"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"\"Filters relevant only to other object types\""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":" 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />"},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"onVersionHover ? onVersionHover(version.id) : \"\""},{"b":"placement","d":"string","e":"left-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"key","d":"expression","e":"`${version.id}-${index}`"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`Matching text for '${searchText}'`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"handleVersionListHover()"},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.latestVersion"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx","c":[{"b":"title","d":"variable","e":"children"},{"b":"open","d":"variable","e":"open"},{"b":"onOpen","d":"variable","e":"handleOnOpen"},{"b":"onClose","d":"variable","e":"handleOnClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx","c":[{"b":"title","d":"expression","e":"value.label"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx","c":[{"b":"title","d":"expression","e":"value.label"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx","c":[{"b":"title","d":"expression","e":"value.label"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"string","e":"Unable to edit when custom attributes have unsaved changes"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"dataQa","d":"string","e":"version"},{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionInfo?.displayName || versionInfo?.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"title","d":"expression","e":"getVersionValues()?.[versionObjectName][\"version\"]"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"title","d":"expression","e":"getVersionValues()?.[versionObjectName][\"displayName\"]"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttributeValue.customAttributeDefinitionName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"getCustomAttributesHelpTooltipContent()"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-end\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"`Unable to edit when ${entityType} has unsaved changes`"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"variable","e":"unsavedChangesWarningMsg"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltip"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"node.displayName || node.versionSemver"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"title","d":"expression","e":"nodeWarningTypeDescription[warnings?.[0]]"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"SecondaryTextHoverContent()"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"topicName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\tEvent version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"title","d":"variable","e":"warning"},{"b":"placement","d":"string","e":"right"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"title","d":"expression","e":"consumer.name"},{"b":"placement","d":"string","e":"top"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"title","d":"expression","e":"eventMesh.environmentName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"domain.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltipContent"},{"b":"maxWidth","d":"expression","e":"\"small\""},{"b":"placement","d":"expression","e":"\"top-start\""},{"b":"dataQa","d":"expression","e":"\"approvalTypes-Tooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltipContent"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"top-start\""},{"b":"dataQa","d":"expression","e":"\"availability-Tooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-end\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"key","d":"expression","e":"`tooltip-${name}`"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"applicatonDomainPopoverContent(name)"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tAll object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn about downloading AsyncAPI documents\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tPrepend Application Domain Name\n\t\t\t\t\t\t\tUse this option when the file contains objects with the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tAppend Major Version Number\n\t\t\t\t\t\t\tUse this option when the file contains more than one version of the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t
"},{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"namingStrategyTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.parent?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionData.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"level.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"level.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"title","d":"expression","e":"getTooltipContent()"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"right"},{"b":"dataQa","d":"string","e":"queueBindingHelpTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"bottom-end\""},{"b":"maxWidth","d":"expression","e":"\"full\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityConfigSidePanelProps.title"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"displayName ? displayName : version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"viewedSchema.name"},{"b":"placement","d":"string","e":"bottom-end"},{"b":"dataQa","d":"string","e":"viewedSchemaName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"sharedSchema ? \"This event is shared. Only shared schemas can be created\" : \"\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"applicationDomainsMap[schemaParent.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${schemaVersionSelectedMap[row.id].length} Added`"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"\"Selected\""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"\"Application Domain\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltip"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"expression","e":"\"full\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"consumerName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"handleVersionListHover()"},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"eventName ? \"Event is not shared across application domains\" : \"You do not have access to view this event because it is not shared\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"request.subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","c":[{"b":"title","d":"expression","e":"item.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltip"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.approved"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.pending"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.declined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.toBeRequested"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"consumerName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"\"Event Access Requests\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":""},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"messages.configuration.description"},{"b":"placement","d":"string","e":"top"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"messages.action.addApplication"},{"b":"placement","d":"string","e":"top"},{"b":"disableHoverListener","d":"expression","e":"!!applicationVersion?.id"},{"b":"disableFocusListener","d":"expression","e":"!!applicationVersion?.id"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionData.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionData.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"id","d":"expression","e":"item.id"},{"b":"title","d":"expression","e":"\"Event is not the latest version\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"ADDITIONAL_CONSUMED_EVENTS_INFO"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"applicationName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.displayName || version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"request.eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap[request.applicationDomainId]?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"request.subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.requestor"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"formatISOTimeFromNow(row.createdTime)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"messages.info"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"title","d":"expression","e":"secondaryAction?.tooltip"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"title","d":"expression","e":"selectedDetails.accessDenied && selectedDetails?.tooltip"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"eventApi.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"eventApiProduct.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"application.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"en.application.applicationType[application.applicationType]"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(application.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"event.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"title","d":"expression","e":"\"You do not have access to this Application Domain\""},{"b":"placement","d":"expression","e":"\"left\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(event.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"enumEntity.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"title","d":"expression","e":"\"You do not have access to this Application Domain\""},{"b":"placement","d":"expression","e":"\"left\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"schema.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"title","d":"expression","e":"\"You do not have access to this Application Domain\""},{"b":"placement","d":"expression","e":"\"left\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"(runtimeAgent as EventManagementAgent)?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"getSempUrlFromEPCore(messagingService)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"getMsgVpnFromEPCore(messagingService)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"bottom"},{"b":"title","d":"jsx","e":"{renderUnavailableMessagingServices()}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"timeMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","c":[{"b":"title","d":"expression","e":"STATUS_DESC_DISPLAY_MAP[status]"},{"b":"placement","d":"expression","e":"\"right\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityVersion.parent.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityVersion.displayName || entityVersion.version"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityVersion.displayName || entityVersion.version"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"variant","d":"expression","e":"getTooltipVariant(item)"},{"b":"title","d":"expression","e":"item.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"left-start"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverContent"},{"b":"dataQa","d":"expression","e":"`appVersionSummaryPopover-${application.id}`"},{"b":"placement","d":"string","e":"left-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","c":[{"b":"key","d":"expression","e":"`domainName-${domain.id}`"},{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"domain.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverTitle"},{"b":"placement","d":"string","e":"left"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverTitle"},{"b":"placement","d":"string","e":"left"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"rowIdentifierValue"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"parentName"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${row.designObjects.parentName}`"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${row.designObjects.parentName} ${numAdditionalParents}`"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"title","d":"expression","e":"`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\t\t\t\tAUDIT_ENTITY_TYPE_MAP[auditEntityType]\n\t\t\t\t\t\t\t)}.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverContent"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"`auditImportPopover-${jobId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverContent"},{"b":"dataQa","d":"expression","e":"`auditImportPopover-${createdTime}`"},{"b":"placement","d":"string","e":"bottom-end"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"title","d":"jsx","e":"
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"entityName"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltipBody"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"name"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"topicAddress"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationVersion.displayName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"title","d":"expression","e":"applicationVersion.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"secondaryPanelTitle"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getSidePanelTitle()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"renderSubjectRelationshipHelp()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"key","d":"expression","e":"tag.id"},{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"getTooltipMessage(tag)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"getTooltipMessage(hideAuditTag)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"\"The event broker must be in a modeled event mesh to receive runtime data or send configuration data.\""},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"title","d":"variable","e":"brokerType"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"title","d":"expression","e":"row.modeledEventMesh.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"title","d":"expression","e":"item.name"},{"b":"variant","d":"expression","e":"TooltipVariant.overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"left-start"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"dataQa","d":"string","e":"reuseIndexTooltip"},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t÷\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..8d0003f46 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +245 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..2ad36a76e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":245} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/commonProps.json new file mode 100644 index 000000000..7bc569de4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":46},{"name":"text","count":46},{"name":"onClick","count":30},{"name":"dataQa","count":6},{"name":"href","count":2},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/files.json new file mode 100644 index 000000000..d5b04cc4b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/instances.json new file mode 100644 index 000000000..c1c5d6c14 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}NameValue`"},{"b":"text","d":"expression","e":"entity.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"eventBrokerNameValue"},{"b":"text","d":"expression","e":"selectedEventBroker.name"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"applicationNameValue"},{"b":"text","d":"expression","e":"selectedApplication.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"authenticationTypeValue"},{"b":"text","d":"expression","e":"getCredentialsLabel(credentials)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"authenticationTypeAValue"},{"b":"text","d":"expression","e":"getCredentialsFieldValue(credentials, \"inputA\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"authenticationTypeBValue"},{"b":"text","d":"expression","e":"getCredentialsFieldValue(credentials, \"inputB\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"clientProfile"},{"b":"text","d":"expression","e":"selectedClientProfileName ?? \"default\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"restDeliveryPointNameValue"},{"b":"text","d":"variable","e":"rdpName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"clientProfileValue"},{"b":"text","d":"expression","e":"selectedClientProfileName ?? \"default\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx","c":[{"b":"id","d":"expression","e":"applicationVersion.id"},{"b":"text","d":"jsx","e":"{`${applicationVersion.parent.name} `}"},{"b":"onClick","d":"function","e":"(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx","c":[{"b":"id","d":"expression","e":"applicationVersion.id"},{"b":"text","d":"jsx","e":"{applicationVersion.displayName || applicationVersion.version}"},{"b":"onClick","d":"function","e":"(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"id","d":"expression","e":"eventApiProductVersion.id"},{"b":"text","d":"variable","e":"eventApiProductName"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"id","d":"expression","e":"item.id"},{"b":"text","d":"variable","e":"itemName"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"id","d":"expression","e":"version.id"},{"b":"text","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"id","d":"expression","e":"version.id"},{"b":"text","d":"expression","e":"onVersionNameClick ? version.display || version.semver : {version.display || version.semver}"},{"b":"onClick","d":"expression","e":"onVersionNameClick ? () => onVersionNameClick(version) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","c":[{"b":"id","d":"expression","e":"event.id"},{"b":"text","d":"expression","e":"event.name"},{"b":"onClick","d":"function","e":"() => eventSelectionCallback(event)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"id","d":"expression","e":"node.versionId"},{"b":"text","d":"expression","e":"node.name"},{"b":"onClick","d":"expression","e":"handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"id","d":"expression","e":"item.id"},{"b":"text","d":"expression","e":"item.name"},{"b":"onClick","d":"expression","e":"canOpen ? () => onOpen(item) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"id","d":"expression","e":"\"contextSelector-title\""},{"b":"text","d":"expression","e":"`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion.id}-link`"},{"b":"text","d":"expression","e":"schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version"},{"b":"onClick","d":"function","e":"() => onViewSchemaVersionDetails(schema, schemaVersion)"},{"b":"dataQa","d":"expression","e":"`${schemaVersion.id}-viewDetails`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"onClick","d":"expression","e":"environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined"},{"b":"id","d":"expression","e":"eventBroker.id"},{"b":"text","d":"expression","e":"eventBroker.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"dataQa","d":"expression","e":"`${applicationVersion.id}-applicationVersion-link`"},{"b":"href","d":"expression","e":"`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`"},{"b":"id","d":"expression","e":"applicationVersion.id"},{"b":"text","d":"expression","e":"applicationVersion.displayName || applicationVersion.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"id","d":"expression","e":"request.applicationId"},{"b":"text","d":"expression","e":"request.application.name"},{"b":"onClick","d":"expression","e":"applicationDomainLocked ? null : () => onApplicationClick(request.application)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"id","d":"expression","e":"row.eventId"},{"b":"text","d":"expression","e":"row.eventName"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"id","d":"expression","e":"row.applicationId"},{"b":"text","d":"expression","e":"row.application?.name ?? \"-\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","c":[{"b":"id","d":"expression","e":"`${entityVersion.parent.id}-${entityVersion.id}`"},{"b":"text","d":"expression","e":"entityVersion.parent.name"},{"b":"onClick","d":"expression","e":"handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","c":[{"b":"id","d":"expression","e":"row.id + \"_name\""},{"b":"text","d":"expression","e":"row.eventMeshName"},{"b":"onClick","d":"expression","e":"hasAccess ? () => handleViewDetail(row) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"`appVersionSummaryPopoverText=${applicationVersion.id}`"},{"b":"text","d":"expression","e":"applicationVersion.displayName || applicationVersion.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"`appVersionName-${applicationVersion.id}`"},{"b":"text","d":"expression","e":"applicationVersion.displayName || applicationVersion.version"},{"b":"onClick","d":"function","e":"() => openApplicationDetails(applicationVersion.parent, applicationVersion)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"`appName-${application.id}`"},{"b":"text","d":"expression","e":"application.name"},{"b":"onClick","d":"function","e":"() => openApplicationDetails(application)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"id","d":"expression","e":"event?.name"},{"b":"text","d":"expression","e":"event?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(event)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx","c":[{"b":"id","d":"expression","e":"associatedEventParents?.[0]?.name"},{"b":"text","d":"expression","e":"associatedEventParents?.[0]?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(associatedEventParents?.[0])"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","c":[{"b":"id","d":"expression","e":"`${versionNumber}`"},{"b":"text","d":"expression","e":"`Version ${versionNumber}`"},{"b":"onClick","d":"function","e":"() => handleVersionLinkClick(relation)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"id","d":"expression","e":"`${associatedEvents?.[0]?.id}`"},{"b":"text","d":"expression","e":"associatedEvents?.[0]?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(associatedEvents?.[0])"},{"b":"dataQa","d":"expression","e":"`${associatedEvents?.[0]?.name}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"id","d":"expression","e":"`${schemaDetail?.name}`"},{"b":"text","d":"expression","e":"schemaDetail?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(null)"},{"b":"dataQa","d":"expression","e":"`${schemaDetail?.name}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"id","d":"expression","e":"`${applicationDetail?.parent?.name}-${applicationDetail?.version}`"},{"b":"text","d":"expression","e":"applicationDetail?.parent?.name ?? \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"id","d":"expression","e":"`${eventDetail?.parent?.name}-${eventDetail?.version}`"},{"b":"text","d":"expression","e":"eventDetail?.parent?.name ?? \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"href","d":"expression","e":"`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"id","d":"expression","e":"messagingService.id"},{"b":"text","d":"expression","e":"messagingService.name"},{"b":"onClick","d":"function","e":"() => onTitleLinkClick(messagingService)"},{"b":"dataQa","d":"string","e":"messagingService[Accordion][Title]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"dataQa","d":"expression","e":"`${row.id}-templateLink`"},{"b":"onClick","d":"function","e":"() => handleSelectTemplate(row.id)"},{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.templateName"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/totalUsages.json new file mode 100644 index 000000000..abc4eff6a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/totalUsages.json @@ -0,0 +1 @@ +46 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/usagesByMfe.json new file mode 100644 index 000000000..fe35e69bc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTruncatableLink/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":46} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/commonProps.json new file mode 100644 index 000000000..2daad57e9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":168},{"name":"sx","count":20},{"name":"fontWeight","count":7},{"name":"id","count":6},{"name":"pl","count":5},{"name":"key","count":4},{"name":"fontSize","count":4},{"name":"noWrap","count":4},{"name":"width","count":4},{"name":"data-qa","count":4},{"name":"color","count":3},{"name":"align","count":2},{"name":"ml","count":2},{"name":"paddingTop","count":2},{"name":"paddingLeft","count":2},{"name":"mb","count":2},{"name":"marginTop","count":1},{"name":"marginBottom","count":1},{"name":"component","count":1},{"name":"paddingBottom","count":1},{"name":"style","count":1},{"name":"pr","count":1},{"name":"mr","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/files.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/files.json new file mode 100644 index 000000000..fc7d92d1e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/instances.json new file mode 100644 index 000000000..2c4ec5a15 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"align","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"expression","e":"\"h3\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"expression","e":"\"h5\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"expression","e":"\"h5\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"ml","d":"number","e":"1"},{"b":"color","d":"expression","e":"bulkMoveLimitExceeded ? \"error\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"marginTop","d":"number","e":"0.5"},{"b":"marginBottom","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"string","e":"role"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"component","d":"string","e":"span"},{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"expression","e":"`roles-${label}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileNameValue"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontSize","d":"number","e":"12"},{"b":"paddingTop","d":"number","e":"1"},{"b":"paddingLeft","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"paddingBottom","d":"number","e":"1.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[{"b":"pl","d":"number","e":"3"},{"b":"fontWeight","d":"number","e":"400"},{"b":"fontSize","d":"number","e":"14"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ color: \"primary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: \"primary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontSize","d":"number","e":"12"},{"b":"paddingTop","d":"number","e":"1"},{"b":"paddingLeft","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"mb","d":"number","e":"2"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"mb","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"sx","d":"expression","e":"fromGraphView ? { color: \"text.secondary\" } : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"color","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"expression","e":"\"h3\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"body1\""},{"b":"sx","d":"object","e":"{ marginBottom: 1, color: ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"width","d":"expression","e":"\"max-content\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"key","d":"string","e":"messageDetailsAddEvents"},{"b":"width","d":"expression","e":"\"max-content\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"style","d":"object","e":"{ marginBottom: \"16px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"id","d":"expression","e":"`${consumer.name}-template`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"align","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[{"b":"key","d":"expression","e":"`filtername-${index}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"color","d":"expression","e":"\"warning\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"id","d":"string","e":"applicationDomainName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"id","d":"string","e":"applicationDomainName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.deprecated.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"fontWeight","d":"expression","e":"selected && 500"},{"b":"pl","d":"expression","e":"imageComponent ? 2 : 5.25"},{"b":"pr","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"mr","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"sx","d":"object","e":"{ fontSize: \"1.5rem\", color: `${theme.palette.ux.primary.text.w10}` }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ color: `${theme.palette.ux.primary.text.w10}` }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"fontWeight","d":"number","e":"600"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.brand.w30 }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"width","d":"number","e":"600"},{"b":"sx","d":"object","e":"{ fontSize: \"1.5rem\", color: invertTextColor }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"width","d":"expression","e":"showGraphic ? 500 : \"100%\""},{"b":"sx","d":"object","e":"{ color: invertTextColor }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"variant","d":"expression","e":"\"h3\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"updateLabel\""},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"fontSize","d":"expression","e":"`24px`"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"data-qa","d":"string","e":"reuseIndexPurposeQuestionTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"data-qa","d":"string","e":"reuseIndexPurposeDescriptionTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"data-qa","d":"string","e":"reuseIndexPurposeQuestionPopup"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"data-qa","d":"string","e":"reuseIndexPurposeDescriptionPopup"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..e21ad0e4f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +273 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..8f24faeec --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":273} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/ep/total_stats.json b/mrc-usage-report-data/per-application/maas-ui/ep/total_stats.json new file mode 100644 index 000000000..6ff606084 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/ep/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":273,"SolaceButton":426,"SolaceGrid":120,"SolaceTooltip":245,"SolaceLabel":246,"SolaceMessageBox":146,"SolaceConfirmationDialog":112,"SolaceTextField":71,"SolaceStack":64,"SolaceSelect":72,"SolaceCheckBox":45,"SolaceAccordion":52,"SolaceMenu":42,"SolaceTable":19,"SolaceAttributeBadge":36,"SolaceSelectAutocompleteItem":35,"SolaceCard":35,"SolaceSelectAutocomplete":28,"SolaceTruncatableLink":46,"SolacePagination":17,"SolaceChip":20,"SolaceTabs":22,"SolaceCircularProgress":7,"SolaceToggle":25,"SolaceDetailMessage":13,"SolaceGridList":9,"SolaceRadio":13,"SolaceListItem":10,"SolaceSidePanelLayout":18,"SolaceTextArea":10,"SolacePageHeader":4,"SolaceCodeEditor":12,"SolaceList":7,"SolaceEnvironmentChip":9,"SolaceEnvironmentLabel":3,"SolaceDrawer":15,"SolaceRadioGroup":9,"SolacePicker":11,"SolaceErrorBox":1,"SolaceSearchAndFilter":8,"SolaceToggleButtonGroup":7,"SolaceTag":4,"SolaceSelectAutocompleteResponsiveTags":7,"SolaceLearningButton":7,"SolaceResponsiveItemList":5,"SolaceCategorizedSearch":6,"SolaceToasts":1,"SolaceListItemButton":5,"SolaceLinearProgress":1,"SolaceDatePicker":1,"SolaceAttributeValuePairForm":2,"SolaceEnvironmentSelectChip":1,"SolaceStepper":1,"SolaceJsonSchemaForm":2,"SolaceSplitPane":2,"SolaceTextDiff":2,"SolaceMenuItem":1,"SolaceDonutChart":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/commonProps.json new file mode 100644 index 000000000..ca5d10bc1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/commonProps.json @@ -0,0 +1 @@ +[{"name":"summary","count":4},{"name":"border","count":4},{"name":"details","count":4},{"name":"expanded","count":4},{"name":"onChange","count":4},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/files.json new file mode 100644 index 000000000..49a6d0711 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/instances.json new file mode 100644 index 000000000..9df5be412 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"summary","d":"expression","e":"connectorTypeDetails?.name ?? \"\""},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":"{renderVendorConfigurationDetails()}"},{"b":"expanded","d":"variable","e":"showSourceDetails"},{"b":"onChange","d":"function","e":"() => setShowSourceDetails(!showSourceDetails)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"summary","d":"expression","e":"\"Solace\""},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.eventBrokerService}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{(serviceDetails?.name && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{serviceDetails.name}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)) || {\"-\"}}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.bindingDestination}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{getConnectorSummaryValue(solaceDestination)}\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"showTargetDetails"},{"b":"onChange","d":"function","e":"() => setShowTargetDetails(!showTargetDetails)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"summary","d":"expression","e":"en.connectors.labels.advancedAuthenticationProperties"},{"b":"dataQa","d":"string","e":"advancedAuthenticationPropsAccordion"},{"b":"border","d":"boolean","e":"false"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"summary","d":"expression","e":"en.connectors.labels.advancedAuthenticationProperties"},{"b":"dataQa","d":"string","e":"advancedAuthenticationPropsAccordion"},{"b":"border","d":"boolean","e":"false"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tvalue={clientCertValues.sslKeyStoreFormat}\n\t\t\t\t\t\t\treadOnly={readOnly}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sslKeyStoreFormatTypes.map((option, index) => {\n\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{option}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslKeyStorePassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslPrivateKeyPassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonBlur={() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\thasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}\n\t\t\t\t\t\t\thelperText={\n\t\t\t\t\t\t\t\t!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t/>\n\t\t\t\t\t"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAccordion/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..fea6d7c93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":2},{"name":"label","count":2},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..4a790c4bf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..1f8f66089 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"t({ id: \"id_default\", message: \"Default\" })"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"label","d":"expression","e":"ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]"},{"b":"dataQa","d":"expression","e":"dataQa ?? \"connector_status_badge\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/commonProps.json new file mode 100644 index 000000000..55cb4623c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":1},{"name":"avpList","count":1},{"name":"labelForValues","count":1},{"name":"labelForKeys","count":1},{"name":"onAVPListUpdate","count":1},{"name":"disableReorder","count":1},{"name":"keyRequired","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/files.json new file mode 100644 index 000000000..dd119405c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/instances.json new file mode 100644 index 000000000..24a759039 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"name","d":"string","e":"targetHeaderMapping"},{"b":"avpList","d":"variable","e":"values"},{"b":"labelForValues","d":"expression","e":"() as unknown as string"},{"b":"labelForKeys","d":"expression","e":"en.connectors.targetHeaderMapping.targetHeader"},{"b":"onAVPListUpdate","d":"function","e":"(avpList) => setValues([...avpList])"},{"b":"disableReorder","d":"boolean","e":"true"},{"b":"keyRequired","d":"boolean","e":"false"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceAttributeValuePairForm/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/commonProps.json new file mode 100644 index 000000000..50305d856 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/files.json new file mode 100644 index 000000000..16e9ddf11 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/instances.json new file mode 100644 index 000000000..98525b2cf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"open","d":"expression","e":"connectorDetailsLoading || connectorMetricsLoading"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"open","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx","c":[{"b":"open","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBackDrop/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/commonProps.json new file mode 100644 index 000000000..fa90f0021 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/commonProps.json @@ -0,0 +1 @@ +[{"name":"paths","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/files.json new file mode 100644 index 000000000..da2e1a448 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/instances.json new file mode 100644 index 000000000..219a143be --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","c":[{"b":"paths","d":"variable","e":"breadcrumbs"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: \"Micro-Integrations\", link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: `/${id}`,\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"paths","d":"expression","e":"breadcrumbsPaths2()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: en.connectors.connectorFlows, link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: \"editV2\",\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceBreadcrumb/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/commonProps.json new file mode 100644 index 000000000..b6856b1c2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":67},{"name":"onClick","count":53},{"name":"dataQa","count":39},{"name":"href","count":14},{"name":"id","count":11},{"name":"key","count":9},{"name":"isDisabled","count":5},{"name":"title","count":2},{"name":"dataTags","count":1},{"name":"startIcon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/files.json new file mode 100644 index 000000000..0205c6120 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/components/ToastAction.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/instances.json new file mode 100644 index 000000000..8891209a6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_environments"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`solace-header-action-${getDataQaValue(action.title)}`"},{"b":"dataTags","d":"expression","e":"action.title"},{"b":"onClick","d":"variable","e":"handleAction"},{"b":"isDisabled","d":"expression","e":"action.disabled"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.targetHeaderMapping.learnMore.href"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.targetHeaderMapping.learnMore.href"},{"b":"dataQa","d":"string","e":"headerLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"goToDocumentationButtonLink"},{"b":"href","d":"expression","e":"connectorType.integrationHubUrl"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"dataQa","d":"string","e":"deployButton"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleDeployState"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"dataQa","d":"string","e":"openConnectorFlowButton"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleViewDetails"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/services/${serviceDetails?.id}`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setSelectedRowIds([])"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"expression","e":"en.connectors.buttons.close"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace-sso.solace.cloud/support/question"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleViewErrorLogs"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"goToDocumentationButtonLink"},{"b":"href","d":"expression","e":"connectorType.integrationHubUrl"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => history.push(CONNECTOR_AVAILABLE)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"title","d":"string","e":"Delete"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"expression","e":"onDropPropertyClick(label)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"key","d":"expression","e":"showSensitiveField ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showSensitiveField ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowSensitiveField(!showSensitiveField)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"(e: any) => onClick && onClick(e)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","c":[{"b":"key","d":"expression","e":"showPassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showPassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowPassword(!showPassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"key","d":"expression","e":"showClientSecret ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showClientSecret ? \"showClientSecretButton\" : \"hideClientSecretButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowClientSecret(!showClientSecret)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"key","d":"expression","e":"showSslKeyStorePassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showSslKeyStorePassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowSslKeyStorePassword(!showSslKeyStorePassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"key","d":"expression","e":"showSslPrivateKeyPassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showSslPrivateKeyPassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onAdd"},{"b":"dataQa","d":"expression","e":"`add_${inputOrOutput}_button`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => onRemove(handle)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.buttons.transformationsLink.hrefLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"id","d":"string","e":"viewTransformationButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleAddTransformation(ShowTransformation.READ_ONLY)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"id","d":"string","e":"addTransformationButton"},{"b":"dataQa","d":"string","e":"addTransformationButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleAddTransformation(ShowTransformation.CREATE)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"id","d":"string","e":"editTransformationButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleAddTransformation(ShowTransformation.EDIT)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"removeRelation"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setSelectedRelation(relation)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"maxTargetHeaderCountReached()"},{"b":"dataQa","d":"expression","e":"`add-header-button-${direction}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetAddHeaderDialog(true);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"openUploadModal"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetReImport(true);\n\t\t\t\t\t\t\t\topenUploadModal();\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"startIcon","d":"jsx","e":""},{"b":"onClick","d":"variable","e":"handleMapWithAI"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"expression","e":"`edit-${fieldType}-button`"},{"b":"onClick","d":"variable","e":"handleEdit"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"expression","e":"`delete-${fieldType}-button`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetIdToDelete(id);\n\t\t\t\t\t\t\tsetShowDeleteDialog(true);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-add-header-dialog"},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"expression","e":"`add-custom-header-button-${direction}`"},{"b":"onClick","d":"variable","e":"handleAddHeader"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-add-header-dialog"},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"add-constant-button"},{"b":"onClick","d":"variable","e":"handleAddConstant"},{"b":"isDisabled","d":"expression","e":"!!constantNameError"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-add-header-dialog"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetCustomHeaderField({});\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"id","d":"string","e":"edit-custom-header-button"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"expression","e":"`edit-custom-header-button-${direction}`"},{"b":"onClick","d":"variable","e":"applyHeaderEdit"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-edit-constant-dialog"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetConstantField({});\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"id","d":"string","e":"edit-constant-button"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"edit-constant-button"},{"b":"onClick","d":"variable","e":"applyConstantEdit"},{"b":"isDisabled","d":"expression","e":"!!constantNameError"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.buttons.transformationsLink.hrefLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"maxTargetHeaderCountReached()"},{"b":"dataQa","d":"expression","e":"`add-constant-button-${direction}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetAddConstantDialog(true);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"dataQa","d":"string","e":"zeroStateDocLink"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"key","d":"expression","e":"showPassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showPassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowPassword(!showPassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t? connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t: en.connectors.buttons.integrationHub.hrefLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onClearFilterClick"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"href"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"onClick","d":"variable","e":"handleFilterToggle"},{"b":"dataQa","d":"string","e":"filterToggleButton"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"onClick","d":"variable","e":"handleFilterToggle"},{"b":"dataQa","d":"expression","e":"`${id}_filterToggleButton`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/ToastAction.tsx","c":[{"b":"dataQa","d":"string","e":"intg-toast-action"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRedirect"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[{"b":"href","d":"variable","e":"href"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"key","d":"string","e":"editButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleEditButton"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace-sso.solace.cloud/support/question"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleViewErrorLogs"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"id","d":"string","e":"discard"},{"b":"dataQa","d":"string","e":"discard"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onDiscard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"id","d":"string","e":"cloneButton"},{"b":"dataQa","d":"string","e":"cloneButton"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => onSubmit(false)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"id","d":"string","e":"cloneAndDeployButton"},{"b":"dataQa","d":"string","e":"cloneAndDeployButton"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => onSubmit(true)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"onClick","d":"variable","e":"handleDownloadLog"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"key","d":"string","e":"createconnector"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"id","d":"string","e":"discard"},{"b":"dataQa","d":"string","e":"discard"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onDiscard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"id","d":"string","e":"save"},{"b":"dataQa","d":"string","e":"save"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => onSubmit(false)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"id","d":"string","e":"saveDeploy"},{"b":"dataQa","d":"string","e":"saveDeploy"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => onSubmit(true)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"key","d":"string","e":"createAgent"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/totalUsages.json new file mode 100644 index 000000000..832332893 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +67 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..17e1c5b21 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":67} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/commonProps.json new file mode 100644 index 000000000..0fe95dda4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/commonProps.json @@ -0,0 +1 @@ +[{"name":"showCloseButton","count":4},{"name":"onClose","count":4},{"name":"backgroundColor","count":3},{"name":"title","count":2},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/files.json new file mode 100644 index 000000000..587600e71 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/instances.json new file mode 100644 index 000000000..d44aaf490 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"dataQa","d":"expression","e":"popover ? \"popoverInfo\" : \"infoCard\""},{"b":"showCloseButton","d":"expression","e":"!popover"},{"b":"onClose","d":"function","e":"() => (popover ? undefined : onClose && onClose)"},{"b":"title","d":"string","e":"Setting Values for Target Headers"},{"b":"backgroundColor","d":"expression","e":"popover ? \"inherit\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => handleCloseDisplayMessage()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"onClose","d":"function","e":"() => setTranformationBlurbDismissedAtom(true)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"onClose","d":"function","e":"() => {\n\t\t\t\t\t\tsetShowEducationBlurb(false);\n\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/usagesByMfe.json new file mode 100644 index 000000000..a02300e74 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCard/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/commonProps.json new file mode 100644 index 000000000..b8d9c6149 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":1},{"name":"label","count":1},{"name":"onChange","count":1},{"name":"readOnly","count":1},{"name":"required","count":1},{"name":"disabled","count":1},{"name":"checked","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/files.json new file mode 100644 index 000000000..640fb0e5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/instances.json new file mode 100644 index 000000000..ea78eaf97 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"name","d":"expression","e":"props.name"},{"b":"label","d":"expression","e":"props.label"},{"b":"onChange","d":"function","e":"(e) => props.onChange(e.value)"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"checked","d":"expression","e":"props.value"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCheckBox/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/commonProps.json new file mode 100644 index 000000000..027099df9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":1},{"name":"disabled","count":1},{"name":"onDelete","count":1},{"name":"dataQa","count":1},{"name":"clickable","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/files.json new file mode 100644 index 000000000..17fc3edf2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/instances.json new file mode 100644 index 000000000..facc49407 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onDelete","d":"variable","e":"onDelete"},{"b":"dataQa","d":"expression","e":"`filterChip-${filterType}`"},{"b":"clickable","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceChip/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..652abbb43 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"size","count":2},{"name":"variant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/files.json new file mode 100644 index 000000000..543787ee9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..f3127ead2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"size","d":"string","e":"lg"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/commonProps.json new file mode 100644 index 000000000..91b358fa6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":1},{"name":"id","count":1},{"name":"mode","count":1},{"name":"readOnly","count":1},{"name":"value","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/files.json new file mode 100644 index 000000000..96629061b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/instances.json new file mode 100644 index 000000000..4b97cb881 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"dataQa","d":"string","e":"errorlog-stackTrace"},{"b":"id","d":"string","e":"errorlog-stackTrace"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceCodeEditor/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..ef5b1bdb3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":12},{"name":"isOpen","count":12},{"name":"actions","count":12},{"name":"maxWidth","count":5},{"name":"contentText","count":3},{"name":"contentLayout","count":2},{"name":"key","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..61faa23fa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..c5185eb97 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx","c":[{"b":"title","d":"expression","e":"\"An error occurred\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Open Support Ticket\",\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.connectors.labels.mapWithAI}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiDialogClose(false),\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.map,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"confirm-ai-mapping\",\n\t\t\t\t\t\tonClick: handleAiMapping,\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.errorAiMap"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.close,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-error-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_environments\", message: \"Environments\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"contentLayout","d":"string","e":"contents"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"connectorStateChange-cancel\", onClick: () => setShowDeployDialog(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: action === \"deploy\" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,\n\t\t\t\t\tdataQa: \"connectorStateChange-deploy\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleStateChange\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"expression","e":"action === \"deploy\" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.connectors.labels.deleteDialogTitle"},{"b":"contentText","d":"expression","e":"en.connectors.deleteConfirmationMsg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.connectors.buttons.close, onClick: onClose },\n\t\t\t\t{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: \"outline\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.errorDeploymentTitle"},{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: connectors.buttons.close,\n\t\t\t\t\t\tdataQa: \"connectordeployerror-close\",\n\t\t\t\t\t\tonClick: () => setDeployErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"deleteEdgeDialog-cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\tdataQa: \"deleteEdgeDialog-delete\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: removeRelation\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.transformations.labels.deleteMapping"},{"b":"contentText","d":"expression","e":"!isEmpty(affectedTransformations) && affectedTransformations.length > 1\n\t\t\t\t\t? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)\n\t\t\t\t\t: en.transformations.labels.deleteDialogText"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"showTransformationDialog !== ShowTransformation.NONE"},{"b":"maxWidth","d":"string","e":"xl"},{"b":"actions","d":"expression","e":"showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" }]"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t"},{"b":"key","d":"string","e":"transformation-dialog"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.importPayloads(direction)"},{"b":"isOpen","d":"variable","e":"uploadDialog"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"close-upload-dialog\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\tsetUploadDialog(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.import,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"upload-file\",\n\t\t\t\t\t\tonClick: handleUploadFile\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","c":[{"b":"title","d":"expression","e":"fieldType === FieldType.constant\n\t\t\t\t\t\t\t? en.connectors.labels.deleteConstantField\n\t\t\t\t\t\t\t: en.connectors.labels.deleteHeaderField"},{"b":"contentText","d":"expression","e":"en.connectors.labels.deleteHeaderFieldContext"},{"b":"isOpen","d":"variable","e":"showDeleteDialog"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetIdToDelete(\"\");\n\t\t\t\t\t\t\t\tsetShowDeleteDialog(false);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\t\t\tonClick: () => handleDeleteButtonClick(),\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"showTransformationDialog !== ShowTransformation.NONE"},{"b":"maxWidth","d":"string","e":"xl"},{"b":"actions","d":"expression","e":"showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: en.connectors.buttons.apply,\n\t\t\t\t\t\t\t\tonClick: onApplyTransformation,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"applyTransformationButton\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t"},{"b":"key","d":"string","e":"transformation-dialog"},{"b":"contentLayout","d":"string","e":"contents"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..3cacc0b93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..8ff19d251 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/commonProps.json new file mode 100644 index 000000000..165a766e3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/commonProps.json @@ -0,0 +1 @@ +[{"name":"details","count":5},{"name":"actions","count":5},{"name":"msgImg","count":4},{"name":"title","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/files.json new file mode 100644 index 000000000..aa99caeb6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/instances.json new file mode 100644 index 000000000..6cb3c072b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx","c":[{"b":"msgImg","d":"expression","e":"illustration ?? "},{"b":"title","d":"expression","e":"title ?? \"Nothing to see here!\""},{"b":"details","d":"expression","e":"details ?? \"Please try returning to main page.\""},{"b":"actions","d":"expression","e":"!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-integration\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? \"Go to Integration\",\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping"},{"b":"details","d":"expression","e":"readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.learnMapping,\n\t\t\t\t\t\thref: \"https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.noConnectorFlows"},{"b":"msgImg","d":"jsx","e":""},{"b":"details","d":"expression","e":"en.connectors.labels.tableEmptyDescription"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"create-connector-flow-btn\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"create-connector-flow-btn\",\n\t\t\t\t\t\tchildren: en.connectors.create,\n\t\t\t\t\t\tonClick: onCreateConnectorFlow\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"view-all-connector-btn\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"view-all-connector-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.viewAllTypes,\n\t\t\t\t\t\tonClick: OnViewAllConnectorType\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"jsx","e":"\n\t\t\t\t\t\t\t{en.connectors.buttons.clearFilters}\n\t\t\t\t\t\t"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"actions","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{secondSectionActionString}\n\t\t\t\t\t\t\t\t"},{"b":"details","d":"variable","e":"secondSectionDetails"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/usagesByMfe.json new file mode 100644 index 000000000..210cfb45f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceDetailMessage/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/commonProps.json new file mode 100644 index 000000000..256e34684 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/commonProps.json @@ -0,0 +1 @@ +[{"name":"bannerImage","count":1},{"name":"subtitle","count":1},{"name":"title","count":1},{"name":"description","count":1},{"name":"primaryButton","count":1},{"name":"secondaryButton","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/files.json new file mode 100644 index 000000000..f282e1c7e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/instances.json new file mode 100644 index 000000000..a02596c7c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx","c":[{"b":"bannerImage","d":"jsx","e":""},{"b":"subtitle","d":"expression","e":"en.connectors.labels.emptyState.subtitle"},{"b":"title","d":"expression","e":"en.connectors.labels.emptyState.title"},{"b":"description","d":"expression","e":"en.connectors.labels.emptyState.description"},{"b":"primaryButton","d":"object","e":"{\n\t\t\t\tlabel: en.connectors.buttons.checkoutAvailableConnectors,\n\t\t\t\tonClick: onPrimaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-primary-button\"\n\t\t\t}"},{"b":"secondaryButton","d":"object","e":"{\n\t\t\t\tlabel: en.connectors.buttons.exploreOnMyOwn,\n\t\t\t\tonClick: onSecondaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-secondary-button\"\n\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEmptyStateBanner/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/commonProps.json new file mode 100644 index 000000000..b08f97061 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"bgColor","count":4},{"name":"fgColor","count":4},{"name":"icon","count":4},{"name":"label","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/files.json new file mode 100644 index 000000000..da2e1a448 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/instances.json new file mode 100644 index 000000000..c147ea0e8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","c":[{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"label","d":"expression","e":"environment.label"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentChip/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/commonProps.json new file mode 100644 index 000000000..0d358b2ae --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":6},{"name":"fgColor","count":6},{"name":"bgColor","count":6},{"name":"icon","count":6},{"name":"variant","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/files.json new file mode 100644 index 000000000..15322854b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/instances.json new file mode 100644 index 000000000..0966f8015 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"variable","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"\"\""},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"label","d":"expression","e":"environment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"},{"b":"variant","d":"string","e":"standard"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/usagesByMfe.json new file mode 100644 index 000000000..a02300e74 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/commonProps.json new file mode 100644 index 000000000..c705c7dee --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":2},{"name":"value","count":2},{"name":"onChange","count":2},{"name":"options","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/files.json new file mode 100644 index 000000000..2040b51d2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/instances.json new file mode 100644 index 000000000..b5c56c5df --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"name","d":"string","e":"environment"},{"b":"value","d":"expression","e":"selectedEnvironment.environmentId"},{"b":"onChange","d":"variable","e":"handleSetEnvironment"},{"b":"options","d":"variable","e":"environmentOptions"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"name","d":"string","e":"environment"},{"b":"value","d":"expression","e":"selectedEnvironment.environmentId"},{"b":"onChange","d":"variable","e":"handleSetEnvironment"},{"b":"options","d":"variable","e":"environmentOptions"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceEnvironmentSelectChip/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/commonProps.json new file mode 100644 index 000000000..08f274471 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/commonProps.json @@ -0,0 +1 @@ +[{"name":"text","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/files.json new file mode 100644 index 000000000..7ef0f389c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/instances.json new file mode 100644 index 000000000..2459d14a5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"text","d":"string","e":"Experimental"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"text","d":"string","e":"beta"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"text","d":"string","e":"beta"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFeatureTag/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/commonProps.json new file mode 100644 index 000000000..6a42716d4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/commonProps.json @@ -0,0 +1 @@ +[{"name":"onFileChange","count":3},{"name":"dataQa","count":2},{"name":"maxFiles","count":2},{"name":"readOnly","count":2},{"name":"fileNames","count":2},{"name":"errorText","count":2},{"name":"id","count":1},{"name":"label","count":1},{"name":"accept","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/files.json new file mode 100644 index 000000000..298f2ef47 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/instances.json new file mode 100644 index 000000000..1be87081a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"id","d":"expression","e":"props.id"},{"b":"label","d":"expression","e":"props.label"},{"b":"dataQa","d":"string","e":"sslKeyStoreFileUploader"},{"b":"maxFiles","d":"number","e":"1"},{"b":"onFileChange","d":"function","e":"async (files) => props.onChange(await fileUpload(files))"},{"b":"readOnly","d":"expression","e":"props.readOnly"},{"b":"fileNames","d":"expression","e":"props.value ? [\"\"] : []"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"dataQa","d":"string","e":"sslKeyStoreFileUploader"},{"b":"onFileChange","d":"variable","e":"handleFileChange"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"fileNames","d":"expression","e":"clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []"},{"b":"errorText","d":"expression","e":"solaceValidationErrors.sslKeyStore"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"maxFiles","d":"number","e":"1"},{"b":"accept","d":"object","e":"{\n\t\t\t\t\t\t\t\t\"application/json\": [\".json\"]\n\t\t\t\t\t\t\t}"},{"b":"onFileChange","d":"function","e":"(files) => {\n\t\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\t\tsetFileImported(files);\n\t\t\t\t\t\t\t}"},{"b":"errorText","d":"variable","e":"uploadDialogErrorText"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceFileUploader/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/commonProps.json new file mode 100644 index 000000000..4376073e1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/commonProps.json @@ -0,0 +1 @@ +[{"name":"item","count":22},{"name":"xs","count":21},{"name":"container","count":7},{"name":"spacing","count":5},{"name":"alignItems","count":3},{"name":"className","count":3},{"name":"height","count":3},{"name":"style","count":2},{"name":"overflow","count":2},{"name":"onScroll","count":2},{"name":"columnSpacing","count":2},{"name":"key","count":1},{"name":"borderRight","count":1},{"name":"justifyItems","count":1},{"name":"alignContent","count":1},{"name":"borderLeft","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/files.json new file mode 100644 index 000000000..2b0469901 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/instances.json new file mode 100644 index 000000000..eec447ef9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${id}-key`"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"2"},{"b":"className","d":"variable","e":"classNames"},{"b":"style","d":"variable","e":"style"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"borderRight","d":"expression","e":"`1px solid ${theme.palette.ux.secondary.w20}`"},{"b":"overflow","d":"expression","e":"\"scroll\""},{"b":"height","d":"expression","e":"\"inherit\""},{"b":"onScroll","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (leftScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetLeftScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"object","e":"{ backgroundColor: theme.palette.ux.background.w20 }"},{"b":"justifyItems","d":"expression","e":"\"center\""},{"b":"height","d":"expression","e":"\"inherit\""},{"b":"alignContent","d":"expression","e":"relations.length === 0 && !initalDrag ? \"center\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"borderLeft","d":"expression","e":"`1px solid ${theme.palette.ux.secondary.w20}`"},{"b":"overflow","d":"expression","e":"\"scroll\""},{"b":"height","d":"expression","e":"\"inherit\""},{"b":"onScroll","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (rightScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetRightScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/totalUsages.json new file mode 100644 index 000000000..d99e90eb9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/totalUsages.json @@ -0,0 +1 @@ +29 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/usagesByMfe.json new file mode 100644 index 000000000..2673cb84b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGrid/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":29} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/commonProps.json new file mode 100644 index 000000000..3dca4eafb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":1},{"name":"headers","count":1},{"name":"rowMapping","count":1},{"name":"gridTemplate","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/files.json new file mode 100644 index 000000000..2daea0584 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/instances.json new file mode 100644 index 000000000..04cbd6706 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"items","d":"expression","e":"affectedTransformations.map((transformation) => ({\n\t\t\t\t\t\t\tsource: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,\n\t\t\t\t\t\t\ttarget: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName\n\t\t\t\t\t\t}))"},{"b":"headers","d":"array","e":"[en.connectors.labels.source, en.connectors.labels.target]"},{"b":"rowMapping","d":"function","e":"(item, index) => [\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.source}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.target}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"},{"b":"gridTemplate","d":"expression","e":"\"1fr 1fr\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/commonProps.json new file mode 100644 index 000000000..0ba8a55c5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":25},{"name":"required","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/files.json new file mode 100644 index 000000000..b23197a83 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx","../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/instances.json new file mode 100644 index 000000000..ccde20a6a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[{"b":"id","d":"expression","e":"`${detail.label}-label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"id","d":"string","e":"targetHeader"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"id","d":"string","e":"headerExpression"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"id","d":"string","e":"type"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"id","d":"string","e":"typeValue"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_status\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_direction\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_description\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"`connector-${config.label}`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_sidepanel_eventBrokerService\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_sidepanel_bindingDestination\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"id","d":"expression","e":"`${id}-key`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"id","d":"expression","e":"`${props.id}-label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"id","d":"expression","e":"\"sslKeyStoreFileUploaderLabel\""},{"b":"required","d":"expression","e":"!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"id","d":"string","e":"environmentsLabel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"id","d":"string","e":"constant-radio-group"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"id","d":"string","e":"constant-radio-group"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"id","d":"string","e":"keyTitle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"id","d":"string","e":"valueTitle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"id","d":"expression","e":"`${label}_label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"id","d":"string","e":"connectorType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"id","d":"string","e":"environmentsLabel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"id","d":"string","e":"connectorType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx","c":[{"b":"id","d":"expression","e":"`${id}-label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx","c":[{"b":"id","d":"expression","e":"`role-label-${resourceRole}`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/totalUsages.json new file mode 100644 index 000000000..410b14d2c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/totalUsages.json @@ -0,0 +1 @@ +25 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/usagesByMfe.json new file mode 100644 index 000000000..8f97da90d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":25} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/commonProps.json new file mode 100644 index 000000000..b106f9a2c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":5},{"name":"key","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/files.json new file mode 100644 index 000000000..db1563f27 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/instances.json new file mode 100644 index 000000000..633623866 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"key","d":"expression","e":"`headerSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"key","d":"expression","e":"`defaultHeaderSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"key","d":"expression","e":"`payloadSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"key","d":"expression","e":"`constantSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/usagesByMfe.json new file mode 100644 index 000000000..210cfb45f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceList/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/commonProps.json new file mode 100644 index 000000000..0bf12025e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/files.json new file mode 100644 index 000000000..edb22eaa5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/instances.json new file mode 100644 index 000000000..55e3b9506 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\tborderTop: index === 0 ? 0 : \"1px solid\",\n\t\t\t\t\t\t\tborderColor: theme.palette.grey[300],\n\t\t\t\t\t\t\tpl: field?.parentId ? getIndentationLevel(field?.parentId) : 3\n\t\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceListItem/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/commonProps.json new file mode 100644 index 000000000..5772f0e81 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":2},{"name":"anchorOrigin","count":2},{"name":"transformOrigin","count":2},{"name":"id","count":2},{"name":"items","count":2},{"name":"dataQa","count":1},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/files.json new file mode 100644 index 000000000..feea595a3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/instances.json new file mode 100644 index 000000000..6ab28a666 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"\"connectors_additional_actions\""},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"connectors_additional_actions_menu"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"key","d":"string","e":"actionitems"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"\"connectors_additional_actions\""},{"b":"items","d":"variable","e":"menuItems"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/commonProps.json new file mode 100644 index 000000000..6e2bf44bf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":16},{"name":"variant","count":16},{"name":"dataQa","count":6},{"name":"onClose","count":2},{"name":"showCloseButton","count":2},{"name":"showIcon","count":2},{"name":"key","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/files.json new file mode 100644 index 000000000..ad3cff5ad --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/instances.json new file mode 100644 index 000000000..6d85d3c3e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","c":[{"b":"message","d":"variable","e":"downErrorMessage"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"onClose","d":"function","e":"() => setShowDownError(false)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"dataQa","d":"string","e":"down_state_error_message"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error\n\t\t\t\t\t\t\t\t\t\t\t\t\t? en.connectors.labels.errorStateMessage\n\t\t\t\t\t\t\t\t\t\t\t\t\t: en.connectors.labels.downStateMessage}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error && (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? \"Unknown error\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.additionalSupportMessage}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"message","d":"expression","e":"en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? \"\")"},{"b":"variant","d":"expression","e":"\"info\""},{"b":"dataQa","d":"string","e":"deploying_state_message"},{"b":"showIcon","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"dataQa","d":"string","e":"max-header-count-info-msg"},{"b":"message","d":"expression","e":"en.connectors.labels.maxHeaderCountReached"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"message","d":"variable","e":"sourceTransformationGraphError"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"key","d":"expression","e":"`${direction}GraphError`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"message","d":"variable","e":"targetTransformationGraphError"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"key","d":"expression","e":"`${direction}GraphError`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"en.connectors.helperText.payloadMessage"},{"b":"onClose","d":"function","e":"() => setPayloadInfoDismissed(!payloadInfoDismissed)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"message","d":"expression","e":"en.connectors.labels.reImportWarning(direction.toLowerCase())"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"message","d":"expression","e":"payloadMappingsValidationErrors.apiError"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorText"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"dataQa","d":"string","e":"max-header-count-info-msg"},{"b":"message","d":"expression","e":"en.connectors.labels.maxConstantCountReached"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx","c":[{"b":"message","d":"jsx","e":"{renderErrorMessages(step, validationErrors)}"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","c":[{"b":"message","d":"expression","e":"buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tinitialStepValidationErrors,\n\t\t\t\t\t\t\t\tvendorSourceDirection,\n\t\t\t\t\t\t\t\tfalse,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\""},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx","c":[{"b":"message","d":"expression","e":"buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tdetailsStepValidationErrors,\n\t\t\t\t\t\t\t\tisEqual(connectorTypeDetails.direction, ConnectorDirection.Source),\n\t\t\t\t\t\t\t\ttrue,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\""},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{errorMessageDetails ?? \"\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"dataQa","d":"string","e":"error_message_box"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"message","d":"expression","e":"en.connectors.labels.stateInfoBanner(connectorState ?? \"\")"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"deploying_message_box"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/totalUsages.json new file mode 100644 index 000000000..19c7bdba7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/totalUsages.json @@ -0,0 +1 @@ +16 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/usagesByMfe.json new file mode 100644 index 000000000..2e67e7781 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceMessageBox/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":16} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..53c29a1ba --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":6},{"name":"environment","count":6},{"name":"borderTop","count":6},{"name":"breadcrumbs","count":4},{"name":"actions","count":3},{"name":"actionMenu","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/files.json new file mode 100644 index 000000000..bb77e21ae --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/instances.json new file mode 100644 index 000000000..0dddf528a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"environment","d":"expression","e":"environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"title","d":"expression","e":"connectorDetails?.name ?? \"\""},{"b":"environment","d":"expression","e":"miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"jsx","e":""},{"b":"actions","d":"expression","e":"(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined"},{"b":"actionMenu","d":"jsx","e":",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"title","d":"expression","e":"`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`"},{"b":"breadcrumbs","d":"jsx","e":""},{"b":"environment","d":"expression","e":"miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.connectorFlows"},{"b":"environment","d":"expression","e":"selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined"},{"b":"borderTop","d":"expression","e":"selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined"},{"b":"actions","d":"expression","e":"[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"title","d":"expression","e":"connectorDetails?.name ?? \"\""},{"b":"environment","d":"expression","e":"miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"title","d":"expression","e":"en.agents.agents"},{"b":"environment","d":"expression","e":"selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined"},{"b":"borderTop","d":"expression","e":"selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined"},{"b":"actions","d":"expression","e":"[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..a02300e74 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/commonProps.json new file mode 100644 index 000000000..3ad98003d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"totalResults","count":2},{"name":"pageSize","count":2},{"name":"activePage","count":2},{"name":"onPageSelection","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/files.json new file mode 100644 index 000000000..f629787b8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/instances.json new file mode 100644 index 000000000..7d5bb0d71 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"totalResults","d":"expression","e":"meta.pagination.count ?? 0"},{"b":"pageSize","d":"expression","e":"meta.pagination.pageSize"},{"b":"activePage","d":"expression","e":"meta.pagination.pageNumber"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"totalResults","d":"expression","e":"meta.pagination.count ?? 0"},{"b":"pageSize","d":"expression","e":"meta.pagination.pageSize"},{"b":"activePage","d":"expression","e":"meta.pagination.pageNumber"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/commonProps.json new file mode 100644 index 000000000..a9194972d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/commonProps.json @@ -0,0 +1 @@ +[{"name":"maxWidth","count":6},{"name":"title","count":6},{"name":"placement","count":5},{"name":"id","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/files.json new file mode 100644 index 000000000..0afee0dd6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/instances.json new file mode 100644 index 000000000..a77f3c9da --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx","c":[{"b":"maxWidth","d":"string","e":"full"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"title","d":"expression","e":"handleHover(connectorType)"},{"b":"placement","d":"string","e":"bottom"},{"b":"id","d":"expression","e":"`connector-card-popover-${connectorType.id}`"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"title","d":"expression","e":"handleHover(connectorType)"},{"b":"placement","d":"string","e":"bottom"},{"b":"id","d":"expression","e":"`connector-card-popover-${connectorType.id}`"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/usagesByMfe.json new file mode 100644 index 000000000..a02300e74 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolacePopover/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/commonProps.json new file mode 100644 index 000000000..1ec66c843 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":4},{"name":"name","count":4},{"name":"value","count":4},{"name":"dataQa","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/files.json new file mode 100644 index 000000000..c7886056a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/instances.json new file mode 100644 index 000000000..c4eb2246a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanTrue"},{"b":"name","d":"string","e":"constantBooleanTrue"},{"b":"value","d":"expression","e":"\"true\""},{"b":"dataQa","d":"string","e":"constantBooleanTrue"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanFalse"},{"b":"name","d":"string","e":"constantBooleanFalse"},{"b":"value","d":"expression","e":"\"false\""},{"b":"dataQa","d":"string","e":"constantBooleanFalse"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanTrue"},{"b":"name","d":"string","e":"constantBooleanTrue"},{"b":"value","d":"expression","e":"\"true\""},{"b":"dataQa","d":"string","e":"constantBooleanTrue"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanFalse"},{"b":"name","d":"string","e":"constantBooleanFalse"},{"b":"value","d":"expression","e":"\"false\""},{"b":"dataQa","d":"string","e":"constantBooleanFalse"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadio/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/commonProps.json new file mode 100644 index 000000000..89a34c846 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"inline","count":2},{"name":"id","count":2},{"name":"name","count":2},{"name":"hasErrors","count":2},{"name":"helperText","count":2},{"name":"onChange","count":2},{"name":"value","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/files.json new file mode 100644 index 000000000..c7886056a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/instances.json new file mode 100644 index 000000000..188b80bf1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"constant-radio-group"},{"b":"name","d":"string","e":"constantValue"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"constantValue ? \"true\" : \"false\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"constant-radio-group"},{"b":"name","d":"string","e":"constantValue"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"constantField.constantValue ? \"true\" : \"false\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceRadioGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/commonProps.json new file mode 100644 index 000000000..07f67bbf5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/commonProps.json @@ -0,0 +1 @@ +[{"name":"containerWidth","count":2},{"name":"items","count":2},{"name":"showAll","count":2},{"name":"numOfRowsToShow","count":2},{"name":"onItemsRendered","count":2},{"name":"onItemsOverflow","count":2},{"name":"onItemsOverflowIndicatorClick","count":2},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/files.json new file mode 100644 index 000000000..c068e54bc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/instances.json new file mode 100644 index 000000000..1e1864a48 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"containerWidth","d":"number","e":"600"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"containerWidth","d":"number","e":"600"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceResponsiveItemList/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/commonProps.json new file mode 100644 index 000000000..f09ac1a9a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":2},{"name":"id","count":2},{"name":"onChange","count":2},{"name":"value","count":2},{"name":"placeholder","count":2},{"name":"width","count":2},{"name":"type","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/files.json new file mode 100644 index 000000000..c068e54bc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/instances.json new file mode 100644 index 000000000..1ef1f2a7e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"name","d":"expression","e":"\"connectorNameFilter\""},{"b":"id","d":"expression","e":"\"connectorNameFilter\""},{"b":"onChange","d":"function","e":"(e) => setNameFilter(e.value)"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"placeholder","d":"expression","e":"en.connectors.searchPlaceholder"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"name","d":"expression","e":"`${id}`"},{"b":"id","d":"expression","e":"`${id}`"},{"b":"onChange","d":"function","e":"(e) => setNameFilter(e.value)"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"placeholder","d":"variable","e":"searchPlaceholder"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSearchAndFilter/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/commonProps.json new file mode 100644 index 000000000..3bfc8aa7c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":10},{"name":"value","count":10},{"name":"onChange","count":10},{"name":"dataQa","count":9},{"name":"label","count":9},{"name":"required","count":6},{"name":"id","count":5},{"name":"readOnly","count":3},{"name":"disabled","count":1},{"name":"title","count":1},{"name":"displayEmpty","count":1},{"name":"onOpen","count":1},{"name":"onClose","count":1},{"name":"open","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/files.json new file mode 100644 index 000000000..38bef99a5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/instances.json new file mode 100644 index 000000000..3691e14df --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"environment"},{"b":"name","d":"string","e":"environment"},{"b":"dataQa","d":"string","e":"environment"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"label","d":"expression","e":"props.label"},{"b":"name","d":"expression","e":"props.name"},{"b":"onChange","d":"function","e":"(e) => onChangeTrigger(props, e)"},{"b":"value","d":"expression","e":"props.value"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"title","d":"expression","e":"props.title"},{"b":"id","d":"expression","e":"props.id"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"dataQa","d":"string","e":"sslKeyStoreFormatTypeField"},{"b":"id","d":"string","e":"sslKeyStoreFormatType"},{"b":"label","d":"expression","e":"en.connectors.labels.sslKeyStoreFormat"},{"b":"name","d":"expression","e":"\"sslKeyStoreFormat\""},{"b":"onChange","d":"function","e":"({ value: sslKeyStoreFormat }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"clientCertValues.sslKeyStoreFormat"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"dataQa","d":"string","e":"authenticationType"},{"b":"id","d":"string","e":"authenticationType"},{"b":"label","d":"expression","e":"en.connectors.labels.authenticationType"},{"b":"name","d":"expression","e":"\"authenticationType\""},{"b":"onChange","d":"function","e":"({ value: authType }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthenticationType: authType as AuthenticationType\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"solaceConnectionValues.authenticationType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"expression","e":"\"solaceDestinationType\""},{"b":"onChange","d":"function","e":"({ value: destinationType }) =>\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestinationType: destinationType\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})"},{"b":"value","d":"expression","e":"solaceConnectionValues.binding.destinationType"},{"b":"label","d":"expression","e":"en.connectors.labels.destinationType"},{"b":"required","d":"boolean","e":"true"},{"b":"readOnly","d":"expression","e":"isEqual(solaceDirection, ConnectorDirection.Source) ? true : false"},{"b":"dataQa","d":"string","e":"solaceDestinationType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetHeaderDataType(dataType);\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"headerDataType"},{"b":"dataQa","d":"string","e":"header-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantDataType(dataType);\n\t\t\t\t\t\tsetDefaultConstantValue(dataType);\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"constantDataType"},{"b":"dataQa","d":"string","e":"header-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, dataType: dataType });\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"customHeaderField.dataType"},{"b":"dataQa","d":"string","e":"header-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\tsetConstantField({\n\t\t\t\t\t\t\t...constantField,\n\t\t\t\t\t\t\tdataType: dataType,\n\t\t\t\t\t\t\tconstantValue: getDefaultConstantValue(dataType)\n\t\t\t\t\t\t});\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"constantField.dataType"},{"b":"dataQa","d":"string","e":"constant-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"label"},{"b":"onChange","d":"variable","e":"handleSharedTypeChange"},{"b":"value","d":"variable","e":"selectedValue"},{"b":"displayEmpty","d":"boolean","e":"true"},{"b":"onOpen","d":"variable","e":"handleOpen"},{"b":"onClose","d":"variable","e":"handleClose"},{"b":"open","d":"variable","e":"openDropdown"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..2fedb8810 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..f4ea32f8b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":4},{"name":"id","count":4},{"name":"dataQa","count":4},{"name":"label","count":4},{"name":"itemComponent","count":4},{"name":"optionsLabelCallback","count":4},{"name":"itemMappingCallback","count":4},{"name":"fetchOptionsCallback","count":4},{"name":"isOptionEqualToValueCallback","count":4},{"name":"options","count":4},{"name":"onChange","count":4},{"name":"value","count":4},{"name":"multiple","count":3},{"name":"required","count":2},{"name":"hasErrors","count":1},{"name":"helperText","count":1},{"name":"getOptionDisabledCallback","count":1},{"name":"width","count":1},{"name":"fullWidth","count":1},{"name":"groupByCallback","count":1},{"name":"showGroupDivider","count":1},{"name":"placeholder","count":1},{"name":"renderTags","count":1},{"name":"openOnFocus","count":1},{"name":"inputRef","count":1},{"name":"maxHeight","count":1},{"name":"getShowOptionDividerCallback","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..fea765c5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..cb81b6d1e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"string","e":"serviceSearch"},{"b":"id","d":"string","e":"serviceSearch"},{"b":"dataQa","d":"string","e":"serviceSearch"},{"b":"label","d":"expression","e":"en.connectors.labels.eventBrokerService"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchServices"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"expression","e":"showMIEnvironmentsFlag ? getOptionsForEnv : getOptions"},{"b":"onChange","d":"variable","e":"onServiceSelectChange"},{"b":"value","d":"variable","e":"selectedService"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.eventBrokerService"},{"b":"helperText","d":"expression","e":"validationEnabled && solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t: en.connectors.helperText.serviceName"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => option.value === \"no_services\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[{"b":"width","d":"string","e":"80%"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"`transformationAutocomplete_${nodeId}`"},{"b":"id","d":"expression","e":"`transformationAutocomplete_${nodeId}`"},{"b":"dataQa","d":"expression","e":"`transformationAutocomplete_${nodeId}`"},{"b":"label","d":"expression","e":"en.connectors.labels.transformation"},{"b":"required","d":"boolean","e":"true"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"multiple","d":"boolean","e":"false"},{"b":"value","d":"expression","e":"selectedTransformationFunction || undefined"},{"b":"options","d":"variable","e":"matchingTransformationFunctions"},{"b":"onChange","d":"variable","e":"handleTransformationFunctionChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptions"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","c":[{"b":"name","d":"expression","e":"`autocomplete-${id}`"},{"b":"id","d":"expression","e":"`autocomplete-${id}`"},{"b":"dataQa","d":"expression","e":"`autocomplete-${id}`"},{"b":"label","d":"expression","e":"typeof data.label === \"string\"\n\t\t\t\t\t\t\t\t? data.label\n\t\t\t\t\t\t\t\t: data.type === \"input\"\n\t\t\t\t\t\t\t\t? (en.transformations.labels.sourceItem as string)\n\t\t\t\t\t\t\t\t: (en.transformations.labels.targetItem as string)"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"selectedField || undefined"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"multiple","d":"boolean","e":"false"},{"b":"options","d":"variable","e":"matchingData"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptions"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"showGroupDivider","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"label"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"},{"b":"maxHeight","d":"string","e":"22rem"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..fea765c5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..7a2a67de9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/commonProps.json new file mode 100644 index 000000000..fd582d243 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/commonProps.json @@ -0,0 +1 @@ +[{"name":"containerWidth","count":1},{"name":"tags","count":1},{"name":"tagMaxWidth","count":1},{"name":"overflowIndicatorLabel","count":1},{"name":"overflowIndicatorLabelSingular","count":1},{"name":"onDelete","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/files.json new file mode 100644 index 000000000..67022f36c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/instances.json new file mode 100644 index 000000000..ed8b60292 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"number","e":"300"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"\"200px\""},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/commonProps.json new file mode 100644 index 000000000..cbe65d2c2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/commonProps.json @@ -0,0 +1 @@ +[{"name":"showSidePanel","count":1},{"name":"sidePanelWidth","count":1},{"name":"sidePanelContent","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/files.json new file mode 100644 index 000000000..dbef95120 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/instances.json new file mode 100644 index 000000000..c27183b9c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!isEmpty(selectedRowIds)"},{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"sidePanelContent","d":"expression","e":"renderSidePanel()"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceSidePanelLayout/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/commonProps.json new file mode 100644 index 000000000..97dfec211 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"spacing","count":21},{"name":"direction","count":14},{"name":"padding","count":8},{"name":"justifyContent","count":7},{"name":"height","count":6},{"name":"bgcolor","count":3},{"name":"margin","count":3},{"name":"mt","count":3},{"name":"alignItems","count":3},{"name":"useFlexGap","count":2},{"name":"flexWrap","count":2},{"name":"ml","count":2},{"name":"borderBottom","count":2},{"name":"pl","count":1},{"name":"pr","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/files.json new file mode 100644 index 000000000..3159c8b76 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/instances.json new file mode 100644 index 000000000..bfcef4c1a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","c":[{"b":"height","d":"expression","e":"allItems.length !== 0 ? `calc(100vh + 80px)` : \"100%\""},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"spacing","d":"number","e":"5"},{"b":"margin","d":"expression","e":"createMode ? 0 : 3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"spacing","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"useFlexGap","d":"boolean","e":"true"},{"b":"flexWrap","d":"expression","e":"\"wrap\""},{"b":"pl","d":"number","e":"3"},{"b":"pr","d":"number","e":"3"},{"b":"height","d":"expression","e":"data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx","c":[{"b":"spacing","d":"number","e":"3"},{"b":"height","d":"expression","e":"`calc(100vh - 80px)`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"data-qa","d":"string","e":"connectorsSidePanel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[{"b":"spacing","d":"number","e":"5"},{"b":"margin","d":"expression","e":"createMode ? 0 : 3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"useFlexGap","d":"boolean","e":"true"},{"b":"flexWrap","d":"string","e":"wrap"},{"b":"height","d":"expression","e":"data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"spacing","d":"number","e":"5"},{"b":"margin","d":"expression","e":"createMode ? 0 : 3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"alignItems","d":"expression","e":"\"center\""},{"b":"padding","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"ml","d":"number","e":"3"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"spacing","d":"number","e":"6"},{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"ml","d":"expression","e":"\"auto\""},{"b":"mt","d":"expression","e":"\"auto\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","c":[{"b":"spacing","d":"number","e":"4.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"spacing","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"spacing","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"padding","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"start"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"height","d":"number","e":"84"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"},{"b":"borderBottom","d":"expression","e":"showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined"},{"b":"alignItems","d":"expression","e":"\"center\""},{"b":"padding","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"height","d":"number","e":"84"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"},{"b":"borderBottom","d":"expression","e":"showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined"},{"b":"alignItems","d":"expression","e":"\"center\""},{"b":"padding","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/totalUsages.json new file mode 100644 index 000000000..8783e3051 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +53 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..157ea7c7d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":53} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/commonProps.json new file mode 100644 index 000000000..db29109ad --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/commonProps.json @@ -0,0 +1 @@ +[{"name":"steps","count":2},{"name":"activeStep","count":2},{"name":"setActiveStep","count":2},{"name":"onClose","count":2},{"name":"onSubmit","count":2},{"name":"onSecondarySubmit","count":2},{"name":"submitLabel","count":2},{"name":"secondarySubmitLabel","count":2},{"name":"stepContentOverflow","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/files.json new file mode 100644 index 000000000..34c6855d8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/instances.json new file mode 100644 index 000000000..28d8f53c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx","c":[{"b":"steps","d":"expression","e":"renderSteps()"},{"b":"activeStep","d":"variable","e":"activeStep"},{"b":"setActiveStep","d":"function","e":"(step) => setActiveStep(step)"},{"b":"onClose","d":"variable","e":"onClose"},{"b":"onSubmit","d":"variable","e":"onSubmit"},{"b":"onSecondarySubmit","d":"variable","e":"onSecondarySubmit"},{"b":"submitLabel","d":"variable","e":"submitLabel"},{"b":"secondarySubmitLabel","d":"expression","e":"activeStep === steps.length - 1 ? secondarySubmitLabel : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx","c":[{"b":"steps","d":"variable","e":"steps"},{"b":"activeStep","d":"variable","e":"activeStep"},{"b":"setActiveStep","d":"function","e":"(step) => setActiveStep(step)"},{"b":"onClose","d":"function","e":"() => discardChangesAndClose()"},{"b":"onSubmit","d":"function","e":"() => onSubmit(true)"},{"b":"secondarySubmitLabel","d":"expression","e":"activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined"},{"b":"onSecondarySubmit","d":"function","e":"() => onSubmit(false)"},{"b":"submitLabel","d":"expression","e":"en.connectors.buttons.createDeploy"},{"b":"stepContentOverflow","d":"expression","e":"showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceStepper/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/commonProps.json new file mode 100644 index 000000000..52b760b5c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":3},{"name":"id","count":3},{"name":"rows","count":3},{"name":"columns","count":3},{"name":"selectionType","count":3},{"name":"sortCallback","count":3},{"name":"renderCustomRowCells","count":3},{"name":"sortedColumn","count":2},{"name":"selectionChangedCallback","count":2},{"name":"selectedRowIds","count":2},{"name":"renderCustomRowActionItem","count":1},{"name":"renderCustomEmptyState","count":1},{"name":"loading","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/files.json new file mode 100644 index 000000000..ebeb460ce --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/instances.json new file mode 100644 index 000000000..2653f6f57 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"dataQa","d":"string","e":"connector-flow-list-table"},{"b":"id","d":"string","e":"connector-flow-list-table"},{"b":"rows","d":"variable","e":"allConnectors"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"function","e":"(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);\n\t\t\t\t}"},{"b":"sortedColumn","d":"expression","e":"columns.find((column) => column.field === connectorSort.split(\":\")[0])"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}"},{"b":"renderCustomRowActionItem","d":"variable","e":"customRowActionMenuItems"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"dataQa","d":"string","e":"agent-list-table"},{"b":"id","d":"string","e":"agent-list-table"},{"b":"rows","d":"variable","e":"allAgents"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"function","e":"(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetAgentSort(`sort=${column?.field}`);\n\t\t\t\t}"},{"b":"sortedColumn","d":"expression","e":"columns.find((column) => column.field === agentSort)"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[{"b":"dataQa","d":"string","e":"connector-flow-list-table"},{"b":"id","d":"string","e":"connector-flow-list-table"},{"b":"rows","d":"expression","e":"connectorErrorLogs ?? []"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"function","e":"function (): void {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"logsFetching"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTable/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/commonProps.json new file mode 100644 index 000000000..d6375d048 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"tabs","count":4},{"name":"activeTabValue","count":4},{"name":"variant","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/files.json new file mode 100644 index 000000000..24b80f9ba --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/instances.json new file mode 100644 index 000000000..65c2b7836 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..8522e50a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/commonProps.json new file mode 100644 index 000000000..042974cb4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":1},{"name":"label","count":1},{"name":"onChange","count":1},{"name":"value","count":1},{"name":"readOnly","count":1},{"name":"required","count":1},{"name":"disabled","count":1},{"name":"width","count":1},{"name":"maxLength","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/files.json new file mode 100644 index 000000000..640fb0e5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/instances.json new file mode 100644 index 000000000..d7dd55d21 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"name","d":"expression","e":"props.name"},{"b":"label","d":"expression","e":"props.label"},{"b":"onChange","d":"function","e":"(e) => onChangeTrigger(props, e)"},{"b":"value","d":"variable","e":"fieldValue"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"width","d":"string","e":"100%"},{"b":"maxLength","d":"expression","e":"props.schema.maxLength"},{"b":"dataQa","d":"expression","e":"`${props.label}-form-textArea`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/commonProps.json new file mode 100644 index 000000000..bf5d99f32 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":35},{"name":"value","count":35},{"name":"label","count":29},{"name":"readOnly","count":23},{"name":"required","count":22},{"name":"dataQa","count":21},{"name":"onChange","count":21},{"name":"hasErrors","count":15},{"name":"helperText","count":15},{"name":"onBlur","count":11},{"name":"type","count":5},{"name":"endAdornment","count":5},{"name":"maxLength","count":4},{"name":"disabled","count":1},{"name":"autoFocus","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/files.json new file mode 100644 index 000000000..87a0506ff --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/instances.json new file mode 100644 index 000000000..9290b37bb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"name","d":"string","e":"targetHeaderExample"},{"b":"value","d":"expression","e":"en.connectors.targetHeaderMapping.targetHeaderExample"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"name","d":"string","e":"headerExpressionExample"},{"b":"value","d":"expression","e":"en.connectors.targetHeaderMapping.headerExpressionExample"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"name","d":"string","e":"name"},{"b":"value","d":"expression","e":"values.name"},{"b":"dataQa","d":"string","e":"details_name_field"},{"b":"onChange","d":"function","e":"({ value: name }) => setValues({ ...values, name })"},{"b":"label","d":"expression","e":"en.connectors.labels.name"},{"b":"required","d":"boolean","e":"true"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\tif (isEmpty(values.name)) {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({\n\t\t\t\t\t\t\t\t\t...initialStepValidationErrors,\n\t\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({ ...initialStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!initialStepValidationErrors.name"},{"b":"helperText","d":"expression","e":"validationEnabled ? initialStepValidationErrors.name : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"type","d":"expression","e":"sensitiveField && !showSensitiveField ? \"password\" : \"text\""},{"b":"label","d":"expression","e":"props.label"},{"b":"name","d":"expression","e":"props.name"},{"b":"onChange","d":"function","e":"(e) => onChangeTrigger(props, e)"},{"b":"value","d":"variable","e":"fieldValue"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"endAdornment","d":"variable","e":"endAdornment"},{"b":"dataQa","d":"expression","e":"`${props.label}-form-textField`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"name","d":"string","e":"sslKeyStoreReadOnlyBlank"},{"b":"value","d":"expression","e":"props.value ? \"\" : \"-\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientUsername"},{"b":"value","d":"expression","e":"basicAuthValues.clientUsername"},{"b":"label","d":"expression","e":"en.connectors.labels.clientUsername"},{"b":"dataQa","d":"string","e":"clientUsernameBasicAuthTextField"},{"b":"onChange","d":"function","e":"({ value: clientUsername }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientUsername)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.basicAuthUsername"},{"b":"helperText","d":"expression","e":"!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername\n\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientPassword"},{"b":"label","d":"expression","e":"en.connectors.labels.clientPassword"},{"b":"dataQa","d":"string","e":"clientPasswordTextField"},{"b":"value","d":"expression","e":"basicAuthValues.clientPassword"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"onChange","d":"function","e":"({ value: clientPassword }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientPassword: clientPassword\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"type","d":"expression","e":"showPassword ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t setShowPassword(!showPassword)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showPassword ? : }\n\t\t\t\t\t\n\t\t\t\t]"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientPassword)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientPassword\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.clientPassword"},{"b":"helperText","d":"expression","e":"!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.clientPassword && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.clientPassword\n\t\t\t\t\t\t\t: en.connectors.helperText.clientPassword\n\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"tokenUri"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.tokenUri"},{"b":"dataQa","d":"string","e":"tokenUriTextField"},{"b":"onChange","d":"function","e":"({ value: tokenUri }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\ttokenUri: tokenUri\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(oauthValues.tokenUri)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!solaceValidationErrors.tokenUri"},{"b":"helperText","d":"expression","e":"!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientId"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientId"},{"b":"dataQa","d":"string","e":"tclientIdTextField"},{"b":"onChange","d":"function","e":"({ value: clientId }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientId: clientId\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientId)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!solaceValidationErrors.clientId"},{"b":"helperText","d":"expression","e":"!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientSecret"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientSecret"},{"b":"dataQa","d":"string","e":"clientSecretTextField"},{"b":"onChange","d":"function","e":"({ value: clientSecret }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientSecret: clientSecret\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientSecret)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientSecret\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!solaceValidationErrors.clientSecret"},{"b":"helperText","d":"expression","e":"!readOnly && validationEnabled && solaceValidationErrors.clientSecret\n\t\t\t\t\t\t? solaceValidationErrors.clientSecret\n\t\t\t\t\t\t: \"\""},{"b":"type","d":"expression","e":"showClientSecret ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t setShowClientSecret(!showClientSecret)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showClientSecret ? : }\n\t\t\t\t\t\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"name","d":"string","e":"scopes"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.scopes"},{"b":"dataQa","d":"string","e":"scopesTextField"},{"b":"onChange","d":"function","e":"({ value: scopes }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"name","d":"string","e":"clientName"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientName"},{"b":"dataQa","d":"string","e":"clientNameTextField"},{"b":"onChange","d":"function","e":"({ value: clientName }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslKeyStoreReadOnlyBlank"},{"b":"value","d":"expression","e":"\"-\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslKeyStorePassword"},{"b":"value","d":"expression","e":"readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslKeyStorePassword"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.sslKeyStorePassword"},{"b":"dataQa","d":"string","e":"sslKeyStorePasswordTextField"},{"b":"onChange","d":"function","e":"({ value: sslKeyStorePassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"type","d":"expression","e":"showSslKeyStorePassword ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslPrivateKeyAliasName"},{"b":"value","d":"expression","e":"readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyAliasName"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.sslPrivateKeyAliasName"},{"b":"dataQa","d":"string","e":"sslPrivateKeyAliasNameTextField"},{"b":"onChange","d":"function","e":"({ value: sslPrivateKeyAliasName }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslPrivateKeyPassword"},{"b":"value","d":"expression","e":"readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyPassword"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.sslPrivateKeyPassword"},{"b":"dataQa","d":"string","e":"sslPrivateKeyPasswordTextField"},{"b":"onChange","d":"function","e":"({ value: sslPrivateKeyPassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"type","d":"expression","e":"showSslPrivateKeyPassword ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"clientUsername"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientUsername"},{"b":"dataQa","d":"string","e":"clientUsernameClientCertAuthTextField"},{"b":"onChange","d":"function","e":"({ value: clientUsername }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!readOnly && !!solaceValidationErrors.clientCertUsername"},{"b":"helperText","d":"expression","e":"!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"host"},{"b":"value","d":"expression","e":"solaceConnectionValues.authentication.host"},{"b":"label","d":"expression","e":"en.connectors.labels.host"},{"b":"dataQa","d":"string","e":"connectionDetailsHostTextField"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.host)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}"},{"b":"onChange","d":"function","e":"({ value: host }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\thost: host\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.host"},{"b":"helperText","d":"expression","e":"validationEnabled && solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.host"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"string","e":"msgVpn"},{"b":"value","d":"expression","e":"solaceConnectionValues.authentication.messageVpn"},{"b":"label","d":"expression","e":"en.connectors.labels.msgVpn"},{"b":"dataQa","d":"string","e":"msgVpnTextField"},{"b":"onChange","d":"function","e":"({ value: msgVpn }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: msgVpn\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.messageVpn)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.msgVpn\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.messageVpn"},{"b":"helperText","d":"expression","e":"validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"string","e":"solaceBindingDestination"},{"b":"onChange","d":"function","e":"({ value: destination }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestination: destination\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"solaceConnectionValues.binding.destination"},{"b":"label","d":"expression","e":"en.connectors.labels.bindingDestination"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"solaceBindingDestinationTextField"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tvalidateDestination();\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.destination"},{"b":"helperText","d":"expression","e":"solaceValidationErrors.destination && validationEnabled\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.destination\n\t\t\t\t\t\t\t\t\t\t\t: // flipped because solaceDirection is the opposite of the actual connector direction\n\t\t\t\t\t\t\t\t\t\t\tisEqual(solaceDirection, ConnectorDirection.Source)\n\t\t\t\t\t\t\t\t\t\t\t? en.connectors.helperText.destinationTarget\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.destinationSource"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"name","d":"string","e":"headerName"},{"b":"label","d":"expression","e":"en.connectors.labels.customHeaderName"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"header-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"value","d":"variable","e":"headerName"},{"b":"hasErrors","d":"expression","e":"!!headerNameError"},{"b":"helperText","d":"variable","e":"headerNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetHeaderName(e.value);\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"name","d":"string","e":"constantName"},{"b":"label","d":"expression","e":"en.connectors.labels.customConstantValue"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"constant-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"value","d":"variable","e":"constantValue"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"name","d":"string","e":"headerName"},{"b":"label","d":"expression","e":"en.connectors.labels.customHeaderName"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"header-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"hasErrors","d":"expression","e":"!!headerNameError"},{"b":"helperText","d":"variable","e":"headerNameError"},{"b":"value","d":"expression","e":"customHeaderField.headerName"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, headerName: e.value });\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"name","d":"string","e":"constantName"},{"b":"label","d":"expression","e":"en.connectors.labels.customConstantValue"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"constant-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"value","d":"expression","e":"String(constantField.constantValue)"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"key"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(key)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"value"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(value)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"name","d":"string","e":"name"},{"b":"value","d":"expression","e":"connectorDetails.name"},{"b":"dataQa","d":"string","e":"details_name_field"},{"b":"onChange","d":"function","e":"({ value: name }) => {\n\t\t\t\t\t\tsetConnectorDetails({ ...connectorDetails, name });\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.name"},{"b":"required","d":"boolean","e":"true"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\tif (isEmpty(connectorDetails.name)) {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({\n\t\t\t\t\t\t\t\t...detailsStepValidationErrors,\n\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t}\n\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!detailsStepValidationErrors.name"},{"b":"helperText","d":"expression","e":"detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName"},{"b":"autoFocus","d":"variable","e":"clone"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"eventBrokerService"},{"b":"label","d":"expression","e":"en.connectors.labels.eventBrokerService"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"host"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.host"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"msgVpn"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.msgVpn"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"authenticationTypeReadOnlyField"},{"b":"label","d":"expression","e":"en.connectors.labels.authenticationType"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"clientUsername"},{"b":"label","d":"expression","e":"en.connectors.labels.clientUsername"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(basicAuthValues.clientUsername)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"clientPassword"},{"b":"label","d":"expression","e":"en.connectors.labels.clientPassword"},{"b":"value","d":"variable","e":"clientPassword"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"destinationType"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.destinationType"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"bindingDestination"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.bindingDestination"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/totalUsages.json new file mode 100644 index 000000000..597975b41 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/totalUsages.json @@ -0,0 +1 @@ +35 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/usagesByMfe.json new file mode 100644 index 000000000..956067360 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTextField/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":35} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/commonProps.json new file mode 100644 index 000000000..c54736a94 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":1},{"name":"message","count":1},{"name":"severity","count":1},{"name":"onClose","count":1},{"name":"action","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/files.json new file mode 100644 index 000000000..c37fafa16 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/instances.json new file mode 100644 index 000000000..e50c797f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx","c":[{"b":"open","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"message"},{"b":"severity","d":"expression","e":"severity as SolaceToastsProps[\"severity\"]"},{"b":"onClose","d":"variable","e":"handleCloseSnackbar"},{"b":"action","d":"expression","e":"action as SolaceToastsProps[\"action\"]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToasts/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/commonProps.json new file mode 100644 index 000000000..0db5073c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":2},{"name":"isOn","count":2},{"name":"onChange","count":2},{"name":"name","count":2},{"name":"label","count":2},{"name":"helperText","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/files.json new file mode 100644 index 000000000..2040b51d2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/instances.json new file mode 100644 index 000000000..c641aa4da --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"id","d":"string","e":"show_all"},{"b":"isOn","d":"expression","e":"selectedEnvironment.showAllResources"},{"b":"onChange","d":"variable","e":"handleShowAllEnvs"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })"},{"b":"helperText","d":"expression","e":"t({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"id","d":"string","e":"show_all"},{"b":"isOn","d":"expression","e":"selectedEnvironment.showAllResources"},{"b":"onChange","d":"variable","e":"handleShowAllEnvs"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })"},{"b":"helperText","d":"expression","e":"t({\n\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t})"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceToggle/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..300bcc977 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":10},{"name":"variant","count":4},{"name":"open","count":2},{"name":"onOpen","count":1},{"name":"onClose","count":1},{"name":"maxWidth","count":1},{"name":"placement","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/files.json new file mode 100644 index 000000000..13ea34148 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx","../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/instances.json new file mode 100644 index 000000000..dac3bebc6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","c":[{"b":"title","d":"variable","e":"label"},{"b":"variant","d":"expression","e":"TooltipVariant.overflow"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.nonDroppableTooltip"},{"b":"open","d":"expression","e":"isActive && !canDrop"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"item.source"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"item.target"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.source"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.target"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.source"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.target"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx","c":[{"b":"title","d":"expression","e":"role.title"},{"b":"dataQa","d":"expression","e":"`roleIcon-${resourceRole || \"none\"}`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..2fedb8810 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/commonProps.json new file mode 100644 index 000000000..55066785a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":2},{"name":"text","count":2},{"name":"dataQa","count":2},{"name":"onClick","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/files.json new file mode 100644 index 000000000..f629787b8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/instances.json new file mode 100644 index 000000000..694688636 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"limitString(row.name, 35)"},{"b":"dataQa","d":"expression","e":"`${camelCase(row.name)}_button`"},{"b":"onClick","d":"function","e":"() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"dataQa","d":"expression","e":"`row.name_button`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/usagesByMfe.json new file mode 100644 index 000000000..03449e9d9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTruncatableLink/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/commonProps.json new file mode 100644 index 000000000..c7e2f6f98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":60},{"name":"sx","count":34},{"name":"id","count":17},{"name":"ml","count":13},{"name":"mb","count":9},{"name":"display","count":8},{"name":"key","count":5},{"name":"color","count":4},{"name":"pl","count":4},{"name":"paddingY","count":3},{"name":"fontWeight","count":2},{"name":"mr","count":2},{"name":"noWrap","count":2},{"name":"m","count":2},{"name":"pr","count":2},{"name":"mt","count":1},{"name":"gutterBottom","count":1},{"name":"pb","count":1},{"name":"onClick","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/files.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/files.json new file mode 100644 index 000000000..1087ded00 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/instances.json new file mode 100644 index 000000000..7aa19c32c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"fontWeight","d":"string","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","c":[{"b":"display","d":"string","e":"inline-block"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"string","e":"auto"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"ml","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\t\t\tWebkitLineClamp: \"3\",\n\t\t\t\t\t\t\t\tWebkitBoxOrient: \"vertical\"\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"mr","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"color","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"color","d":"expression","e":"\"error\""},{"b":"sx","d":"object","e":"{ width: \"90%\", wordWrap: \"break-word\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"color","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"string","e":"auto"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"ml","d":"number","e":"1"},{"b":"mt","d":"expression","e":"\"6px\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","c":[{"b":"display","d":"string","e":"inline-block"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","c":[{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx","c":[{"b":"m","d":"number","e":"1"},{"b":"id","d":"expression","e":"`${convertedId}_wrapper_fieldName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx","c":[{"b":"m","d":"number","e":"1"},{"b":"id","d":"expression","e":"`${convertedId}_wrapper_fieldType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_header_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_header_propertyType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_header_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_header_propertyType`"},{"b":"pr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"paddingY","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ ml: 1 }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_payload_fieldName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_payload_propertyType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"paddingY","d":"number","e":"1"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"display","d":"expression","e":"\"flex\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"color","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"pl","d":"number","e":"2"},{"b":"pb","d":"number","e":"2"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_header_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_header_propertyType`"},{"b":"pr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_constant_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_constant_propertyType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"paddingY","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: theme.palette.grey[500] }"},{"b":"id","d":"string","e":"conn_flow"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"id","d":"string","e":"connector_marketing_title"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"id","d":"string","e":"connector_marketing_description"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"display","d":"expression","e":"\"flex\""},{"b":"fontWeight","d":"number","e":"500"},{"b":"mr","d":"number","e":"4"},{"b":"id","d":"string","e":"connector_marketing_help"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"variant","d":"expression","e":"variant ?? \"body1\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"pl","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"pl","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"config.key"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"apiErrorResponse\""},{"b":"display","d":"string","e":"inline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"generalErrorPrefix\""},{"b":"display","d":"string","e":"inline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"errorMessages\""},{"b":"display","d":"string","e":"inline"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"generalErrorSuffix\""},{"b":"display","d":"string","e":"inline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"variant","d":"expression","e":"textVariant ? textVariant : \"body1\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[{"b":"onClick","d":"function","e":"() =>\n\t\t\t\t\t\t\t\thistory.push({\n\t\t\t\t\t\t\t\t\tpathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`\n\t\t\t\t\t\t\t\t})"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[{"b":"mb","d":"number","e":"2"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..6d3e9dc78 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +129 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..d37324c15 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":129} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/intg/total_stats.json b/mrc-usage-report-data/per-application/maas-ui/intg/total_stats.json new file mode 100644 index 000000000..c13badba8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/intg/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":129,"SolaceButton":67,"SolaceGrid":29,"SolaceTooltip":10,"SolaceLabel":25,"SolaceMessageBox":16,"SolaceConfirmationDialog":12,"SolaceTextField":35,"SolaceStack":53,"SolaceSelect":10,"SolaceCheckBox":1,"SolaceAccordion":4,"SolaceMenu":2,"SolaceTable":3,"SolaceAttributeBadge":2,"SolaceSelectAutocompleteItem":4,"SolaceCard":6,"SolaceSelectAutocomplete":4,"SolaceTruncatableLink":2,"SolacePagination":2,"SolaceChip":1,"SolaceTabs":4,"SolaceCircularProgress":3,"SolaceToggle":2,"SolaceDetailMessage":5,"SolaceGridList":1,"SolaceRadio":4,"SolaceListItem":1,"SolaceSidePanelLayout":1,"SolaceTextArea":1,"SolacePageHeader":6,"SolaceCodeEditor":1,"SolaceList":5,"SolaceEnvironmentChip":4,"SolaceEnvironmentLabel":6,"SolaceBackDrop":3,"SolaceRadioGroup":2,"SolaceBreadcrumb":4,"SolaceSearchAndFilter":2,"SolaceSelectAutocompleteResponsiveTags":1,"SolaceResponsiveItemList":2,"SolaceToasts":1,"SolacePopover":6,"SolaceAttributeValuePairForm":1,"SolaceEnvironmentSelectChip":2,"SolaceStepper":2,"SolaceFeatureTag":3,"SolaceFileUploader":3,"SolaceEmptyStateBanner":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/commonProps.json new file mode 100644 index 000000000..b0fc1e678 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/commonProps.json @@ -0,0 +1 @@ +[{"name":"summary","count":12},{"name":"expanded","count":12},{"name":"onChange","count":12},{"name":"details","count":12},{"name":"border","count":8},{"name":"dataQa","count":6},{"name":"key","count":3},{"name":"square","count":2},{"name":"id","count":2},{"name":"indicatorVariant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/files.json new file mode 100644 index 000000000..55564395e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/instances.json new file mode 100644 index 000000000..848d953b9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"summary","d":"expression","e":"t({ id: \"id_spool_resource_calc\", message: \"Expanded Spool Size Billing\" })"},{"b":"expanded","d":"variable","e":"showCalculations"},{"b":"onChange","d":"variable","e":"handleShowCalculations"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"key","d":"expression","e":"section.label"},{"b":"expanded","d":"expression","e":"expanded[index]"},{"b":"summary","d":"expression","e":"section.label"},{"b":"onChange","d":"function","e":"() => handleSection(index)"},{"b":"details","d":"jsx","e":"{renderProperties(section.data, section.properties)}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"border","d":"boolean","e":"true"},{"b":"square","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"client-profile-advanced-settings"},{"b":"summary","d":"expression","e":"t({ id: \"id_advanced_settings\", message: \"Advanced Settings\" })"},{"b":"details","d":"jsx","e":""},{"b":"expanded","d":"variable","e":"advancedSettings"},{"b":"onChange","d":"function","e":"(_, expanded) => setAdvancedSettings(expanded)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","c":[{"b":"summary","d":"expression","e":"t({ id: \"id_used_by_n_services\", message: plural(cluster?.serviceNames.length ?? 0, { one: \"Used by # service\", other: \"Used by # services\" }) })"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"cluster-name-services"},{"b":"details","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{cluster.serviceNames.map((serviceName) => (\n\t\t\t\t\t\t\t\t\t
{serviceName}
\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 1: Configuration on the Event Broker\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tYou must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Broker Manager's Telemetry\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"step-1-accordion"},{"b":"expanded","d":"variable","e":"expandStep1"},{"b":"onChange","d":"variable","e":"handleExpandStep1Click"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 2: Trace Collection\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCheck Status\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{isConfigured ? Update Configuration : Deploy Configuration}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t{distributedTracingStatus === \"notConfigured\" || distributedTracingStatus === \"pending\" || !telemetryProfileName ? (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t{distributedTracingStatus === \"pending\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\tData Collection is not configured.\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"success\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"success\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"step-2-accordion"},{"b":"expanded","d":"variable","e":"expandStep2"},{"b":"onChange","d":"variable","e":"handleExpandStep2Click"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"id","d":"expression","e":"`${endpoint.id}Accordion`"},{"b":"key","d":"expression","e":"endpoint.id"},{"b":"border","d":"boolean","e":"false"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{endpoint.name}\n\t\t\t\t\t\t\t\t\t\t\t\t{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{i18n._(accessTypes[endpoint.accessType])}\n\t\t\t\t\t\t\t\t\t\t{endpoint.description}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa=\"actions\"\n\t\t\t\t\t\t\t\t\t\t\t\tid={`public_actions`}\n\t\t\t\t\t\t\t\t\t\t\t\titems={[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tProtocols\n\t\t\t\t\t\t\t\t\t\t\t\tStatus\n\t\t\t\t\t\t\t\t\t\t\t\tPort\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{protocols.map((port) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst value = ports.get(port.protocol);\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{port.label}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? \"Enabled\" : \"Disabled\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? value.port : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
"},{"b":"expanded","d":"expression","e":"expandPublicEndpoint[index]"},{"b":"onChange","d":"function","e":"(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"expanded","d":"expression","e":"expanded[id]"},{"b":"summary","d":"jsx","e":""},{"b":"onChange","d":"variable","e":"handleExpanded"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","c":[{"b":"summary","d":"jsx","e":""},{"b":"expanded","d":"variable","e":"showEndpoints"},{"b":"onChange","d":"variable","e":"handleShowEndpoint"},{"b":"square","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\tClone Options\n\t\t\t\t\t"},{"b":"dataQa","d":"string","e":"clone_options"},{"b":"expanded","d":"variable","e":"showCloneProps"},{"b":"onChange","d":"variable","e":"handleShowCloneProps"},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\tAdvanced Connection Options\n\t\t\t\t\t"},{"b":"dataQa","d":"string","e":"advanced_connection_options"},{"b":"expanded","d":"variable","e":"showAdvancedProps"},{"b":"onChange","d":"variable","e":"handleShowAdvancedProps"},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx","c":[{"b":"summary","d":"jsx","e":""},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleExpanded"},{"b":"border","d":"boolean","e":"false"},{"b":"indicatorVariant","d":"expression","e":"state.showError ? \"error\" : state.showWarning ? \"warn\" : undefined"},{"b":"details","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/totalUsages.json new file mode 100644 index 000000000..3cacc0b93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/totalUsages.json @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/usagesByMfe.json new file mode 100644 index 000000000..8282e10d3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAccordion/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..0315f7681 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":8},{"name":"fillColor","count":5},{"name":"labelColor","count":5},{"name":"size","count":3},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..8635a128a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..95e8e7d5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"t({ id: \"id_default\", message: \"Default\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"label","d":"expression","e":"i18n._(getEventMeshState(eventMesh))"},{"b":"fillColor","d":"expression","e":"getEventMeshStateFillColor(eventMesh)"},{"b":"labelColor","d":"expression","e":"getEventMeshStateLabelColor(eventMesh)"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"label","d":"expression","e":"language.name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"fillColor","d":"variable","e":"fillColor"},{"b":"labelColor","d":"variable","e":"labelColor"},{"b":"label","d":"variable","e":"label"},{"b":"dataQa","d":"string","e":"statusChip"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_expired\", message: \"Expired\" })"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_expires_soon\", message: \"Expires Soon\" })"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.warnYellow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"label","d":"expression","e":"hasSsoError ? t({ id: \"id_service_outofsync_short\", message: \"SSO out-of-sync\" }) : i18n._(getServiceState(service))"},{"b":"fillColor","d":"expression","e":"getServiceStateFillColor(service, hasSsoError)"},{"b":"labelColor","d":"expression","e":"getServiceStateLabelColor(service, hasSsoError)"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_event_mesh\", message: \"Event Mesh\" })"},{"b":"size","d":"string","e":"xs"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..b10feda5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/commonProps.json new file mode 100644 index 000000000..f3343c4fc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/commonProps.json @@ -0,0 +1 @@ +[{"name":"paths","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/files.json new file mode 100644 index 000000000..30466bda0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/instances.json new file mode 100644 index 000000000..d0e1cad64 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_cert_auths\", message: \"Certificate Authorities\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_service_authentications\", message: \"Service Authentications\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_client_profiles\", message: \"Client Profiles\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/usagesByMfe.json new file mode 100644 index 000000000..a0a290e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceBreadcrumb/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/commonProps.json new file mode 100644 index 000000000..c02ade1db --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":100},{"name":"onClick","count":62},{"name":"dataQa","count":58},{"name":"href","count":42},{"name":"isDisabled","count":34},{"name":"dense","count":15},{"name":"title","count":4},{"name":"key","count":4},{"name":"id","count":3},{"name":"endIcon","count":2},{"name":"type","count":2},{"name":"dataTags","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/files.json new file mode 100644 index 000000000..6c8d9a9dd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","../../../maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx","../../../maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx","../../../maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/instances.json new file mode 100644 index 000000000..1fa707ed4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"resourceAssignmentDelete"},{"b":"title","d":"expression","e":"messages.remove"},{"b":"onClick","d":"function","e":"() => onRemoveResourceAssignment(resourceAssignment)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"outline\""},{"b":"onClick","d":"function","e":"() => onAddResourceAssignment(displayedUserTypes[0])"},{"b":"isDisabled","d":"variable","e":"isDisabled"},{"b":"dataQa","d":"string","e":"addUser"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_deleteprotection"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_service_deletion_protection.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_migration"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_broker_sso_settings"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_broker_sso_settings"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_dist_tracing"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-dt-for-cloud.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_storage"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Configure-Message-Spools.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_environments"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, helpLink)"},{"b":"dataQa","d":"string","e":"help-no-access"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, secondaryHelpLink)"},{"b":"dataQa","d":"string","e":"secondary-help-no-access"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx","c":[{"b":"variant","d":"expression","e":"action.variant ?? \"text\""},{"b":"isDisabled","d":"expression","e":"action.disabled"},{"b":"href","d":"expression","e":"action.href ? action.href : undefined"},{"b":"dataQa","d":"string","e":"solace-header-action"},{"b":"dataTags","d":"expression","e":"action.title"},{"b":"onClick","d":"variable","e":"handleAction"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleViewPassword"},{"b":"title","d":"expression","e":"showPassword ? t({ id: \"id_hide_password\", message: \"Hide password\" }) : t({ id: \"id_view_password\", message: \"View password\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCopy"},{"b":"title","d":"expression","e":"t({ id: \"id_copy\", message: \"Copy\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => onDismiss()"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => history.push(`/mesh-manager/${eventMesh.id}`)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"key","d":"string","e":"create_event_mesh"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateMesh"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"id","d":"string","e":"close"},{"b":"dataQa","d":"string","e":"close"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleClose"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"tutorial.url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.api"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.download[0].url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"dw.url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"readOnly"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tconst fileInput = fileInputRef?.current;\n\t\t\t\t\t\tif (fileInput) {\n\t\t\t\t\t\t\tif (fileInput.value) {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tfileInput.value = \"\";\n\t\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t\t// that's fine\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfileInput.click();\n\t\t\t\t\t\t}\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.api"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.tutorial"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.download[0].url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"expression","e":"handleCancel(idx)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"expression","e":"handleSave(idx)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddGroup"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI(path)) || \"\""},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\ttrack(TRACK_ELEMENT_CLICK, { \"element-id\": dataQa });\n\t\t\t\t\t\t\topenWindow(getBrokerWebUI(path), serviceId);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnableStandardDomainCertAuth"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleAddClientCertAuth"},{"b":"dataQa","d":"string","e":"add-client-cert-auth"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"variable","e":"hasOngoingOperation"},{"b":"onClick","d":"variable","e":"handleAddDomainCertAuth"},{"b":"dataQa","d":"string","e":"add-domain-cert-auth"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"service-auth-open-broker-manager"},{"b":"endIcon","d":"jsx","e":""},{"b":"onClick","d":"variable","e":"handleOpenBrokerManager"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"service-auth-edit-client-auth"},{"b":"onClick","d":"variable","e":"handleShowAuthentication"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleProfileShowDialog"},{"b":"dataQa","d":"string","e":"service-auth-edit-profile"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleAdd"},{"b":"dataQa","d":"string","e":"client-profile-create"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || isDisabled"},{"b":"onClick","d":"variable","e":"handleShowMessageSpoolSize"},{"b":"dataQa","d":"string","e":"edit-message-spool-size"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || !curClusterName"},{"b":"onClick","d":"variable","e":"handleShowClusterName"},{"b":"dataQa","d":"string","e":"edit-cluster-name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/edit-cluster-name.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"},{"b":"dataQa","d":"string","e":"launchBrokerManagerClientProfiles"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || \"\""},{"b":"onClick","d":"variable","e":"handleOpenBrokerManager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || !canConfigure || !canEnable"},{"b":"onClick","d":"variable","e":"handleEnableLdapManagement"},{"b":"dataQa","d":"string","e":"enable-ldap-management"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleProfileShowDialog"},{"b":"dataQa","d":"string","e":"ldap-management-profile"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleAccessShowDialog"},{"b":"dataQa","d":"string","e":"ldap-management-access"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"usernames.length === 0 || !allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleShowRotatePasswords"},{"b":"dataQa","d":"string","e":"rotate_passwords"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleToggle"},{"b":"isDisabled","d":"expression","e":"!hasERPLimit || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"toggle_erp_event_addon"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/erp-add-on.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnable"},{"b":"dataQa","d":"string","e":"monitoring-enable"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || !canConfigure || !!configuringMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES"},{"b":"onClick","d":"variable","e":"handleShowCreateHostname"},{"b":"dataQa","d":"string","e":"create-hostname"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"dataQa","d":"string","e":"help_storage"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-hostnames.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleDisableDistributedTracing"},{"b":"isDisabled","d":"expression","e":"distributedTracingStatus == \"error\" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"distributed-tracing-disable"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnableDistributedTracing"},{"b":"isDisabled","d":"expression","e":"isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"distributed-tracing-enable"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || \"\""},{"b":"dataQa","d":"string","e":"launchBrokerManagerTelemetryProfiles"},{"b":"onClick","d":"variable","e":"handleOpenBrokerManager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCheckConnectionStatus"},{"b":"isDisabled","d":"expression","e":"!isConfigured || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"dt-button-status"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleConfigureDataCollection"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"dataQa","d":"string","e":"dt-button-deploy"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleShowMateLinkEncryption"},{"b":"dataQa","d":"string","e":"toggle_mate_link_encryption"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || mateLinkEncryption.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnableDisable"},{"b":"dataQa","d":"string","e":"toggle_semp_request"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleAdd"},{"b":"dataQa","d":"string","e":"syslog-forwarding-create"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || syslogs.length >= 3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleCreateEndpoint"},{"b":"dataQa","d":"string","e":"create-endpoint"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"dataQa","d":"string","e":"help_port_config"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ggs_tryme.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"launchTryMe"},{"b":"endIcon","d":"jsx","e":""},{"b":"onClick","d":"variable","e":"handleOpenTryMe"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"view-scaleup-logs"},{"b":"onClick","d":"variable","e":"handleViewScaleUpLogs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"plan-upgrade-open"},{"b":"onClick","d":"variable","e":"onOpen"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setViewLogs(true)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setViewLogs(true)"},{"b":"isDisabled","d":"expression","e":"(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/upgrade-event-broker.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"view-upgrade-logs"},{"b":"onClick","d":"variable","e":"handleViewUpgradeLogs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"truststoreUri ?? \"https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"open-ticket"},{"b":"href","d":"expression","e":"buildSupportURL(isSAP, service.errorId, service.id)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/account-details/distributed-tracing"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"plan-upgrade-open"},{"b":"onClick","d":"variable","e":"handleOpenUpgradeDialog"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"type","d":"string","e":"button"},{"b":"onClick","d":"variable","e":"onCancel"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSelectLibrary(null)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleShowLibraryDialog"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleSelection(item)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"key","d":"string","e":"open-broker-manager"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"launchBrokerManager"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI()) || \"\""},{"b":"onClick","d":"variable","e":"openBrokerManager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCustomize"},{"b":"isDisabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"key","d":"string","e":"reset"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleResetPort"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onClick"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx","c":[{"b":"dataQa","d":"string","e":"cloning-documentation"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/cloud-clone-service.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","c":[{"b":"dataQa","d":"string","e":"help_port_config"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx","c":[{"b":"dataQa","d":"string","e":"help_cloud"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/choose-cloud-provider.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx","c":[{"b":"dataQa","d":"string","e":"help_regions"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_regions.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx","c":[{"b":"dataQa","d":"string","e":"help_services"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_pick_service_type.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"id","d":"string","e":"cancel"},{"b":"dataQa","d":"string","e":"cancel"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onCancel"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"id","d":"string","e":"createService"},{"b":"dataQa","d":"string","e":"createService"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"isDisabled","d":"variable","e":"createServiceDisabled"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"key","d":"string","e":"create_service"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"solace-header-action"},{"b":"onClick","d":"variable","e":"handleCreateService"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx","c":[{"b":"dataQa","d":"string","e":"help_user_access"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRetry"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"service.name"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: \"status\" }))"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/totalUsages.json new file mode 100644 index 000000000..105d7d9ad --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +100 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..70dfad60d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":100} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/commonProps.json new file mode 100644 index 000000000..2109ae2cc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":3},{"name":"backgroundColor","count":2},{"name":"showCloseButton","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/files.json new file mode 100644 index 000000000..650e40866 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/instances.json new file mode 100644 index 000000000..be0b57e8f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"title","d":"string","e":"What is an Automated Upgrade?"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setNeedHelp(false)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"title","d":"string","e":"What is an Automated Upgrade?"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.paper"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"title","d":"string","e":"Release Notes"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCard/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/commonProps.json new file mode 100644 index 000000000..cfcd26a61 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":9},{"name":"checked","count":9},{"name":"onChange","count":9},{"name":"dataQa","count":8},{"name":"label","count":8},{"name":"id","count":6},{"name":"boldLabel","count":3},{"name":"readOnly","count":2},{"name":"subTextProps","count":2},{"name":"...","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/files.json new file mode 100644 index 000000000..b412e7ec3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/instances.json new file mode 100644 index 000000000..d97c9d628 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"checked","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"id","d":"string","e":"showDiffs"},{"b":"name","d":"string","e":"showDiffs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_differences\", message: \"Show only differences\" })"},{"b":"checked","d":"variable","e":"showDiffs"},{"b":"onChange","d":"variable","e":"handleShowDiffs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_mc_manager\", message: \"Rotate Mission Control Manager permissions\" })"},{"b":"name","d":"string","e":"mc_manager"},{"b":"checked","d":"expression","e":"usernames.includes(\"manager\")"},{"b":"onChange","d":"variable","e":"handleManagerChange"},{"b":"dataQa","d":"string","e":"checkbox_mc_manager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_mc_editor\", message: \"Rotate Mission Control Editor permissions\" })"},{"b":"name","d":"string","e":"mc_editor"},{"b":"checked","d":"expression","e":"usernames.includes(\"admin\")"},{"b":"onChange","d":"variable","e":"handleEditorChange"},{"b":"dataQa","d":"string","e":"checkbox_mc_editor"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_mc_viewer\", message: \"Rotate Mission Control Viewer permissions\" })"},{"b":"name","d":"string","e":"mc_viewer"},{"b":"checked","d":"expression","e":"usernames.includes(\"viewer\")"},{"b":"onChange","d":"variable","e":"handleViewerChange"},{"b":"dataQa","d":"string","e":"checkbox_mc_viewer"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"id","d":"variable","e":"nameCheck"},{"b":"name","d":"variable","e":"nameCheck"},{"b":"dataQa","d":"variable","e":"nameCheck"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: \"id_port_label\", message: `Enable ${meta.label}, use port:` })}\n\t\t\t\t\t\t"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"checked","d":"expression","e":"!disabled"},{"b":"readOnly","d":"expression","e":"checkboxDisabled || !isPortDisablingEnabled"},{"b":"onChange","d":"variable","e":"handleProtocolToggle"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","c":[{"b":"id","d":"string","e":"mateLinkEncryption"},{"b":"name","d":"string","e":"mateLinkEncryption"},{"b":"dataQa","d":"string","e":"mateLinkEncryption"},{"b":"label","d":"expression","e":"t({ id: \"id_mate_link_label\", message: \"Enable mate-link encryption\" })"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: t({ id: \"id_mate_link_text\", message: \"This will encrypt the communication between the primary and backup brokers in a HA setup.\" }),\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"value"},{"b":"readOnly","d":"variable","e":"isCloning"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","c":[{"b":"id","d":"string","e":"cloneCertificateAuthorities"},{"b":"dataQa","d":"string","e":"cloneCertificateAuthorities"},{"b":"name","d":"string","e":"cloneCertificateAuthorities"},{"b":"label","d":"expression","e":"t({ id: \"id_clone_cert_auth\", message: \"Duplicate all Client and Domain Certificate Authorities\" })"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\tlabel: This will copy all certificates existing on the source event broker service to the new event broker service.,\n\t\t\t\t\tlight: true\n\t\t\t\t}"},{"b":"checked","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"id","d":"string","e":"showMyServices"},{"b":"name","d":"string","e":"showMyServices"},{"b":"dataQa","d":"string","e":"services-show-mine"},{"b":"label","d":"expression","e":"t({ id: \"id_only_my_services\", message: \"Only show my services\" })"},{"b":"checked","d":"variable","e":"userOnly"},{"b":"onChange","d":"variable","e":"handleSetUserOnly"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/usagesByMfe.json new file mode 100644 index 000000000..6d2f81ef5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCheckBox/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..cd19078ee --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"size","count":10},{"name":"variant","count":8},{"name":"message","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/files.json new file mode 100644 index 000000000..e456cad9c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..bbffae60e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"jsx","e":"Retrieving event broker service details..."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"variable","e":"configuringMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"jsx","e":"Deploying license to broker..."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"jsx","e":"Removing Distributed Tracing license from broker..."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"size","d":"string","e":"xs"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..9d607966b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +11 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..e7493b236 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":11} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..cc98be421 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":34},{"name":"actions","count":34},{"name":"isOpen","count":34},{"name":"linearProgressIndicator","count":20},{"name":"maxWidth","count":16},{"name":"contentText","count":4},{"name":"contentLayout","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..8efd13a6a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..1f802731e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: t({ id: \"id_ok\", message: \"OK\" }),\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"count ? t({ id: \"id_dlg_delete_services_title\", message: \"Delete Services\" }) : t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: count ? t({ id: \"id_delete_services\", message: \"Delete Services\" }) : t({ id: \"id_delete_service\", message: \"Delete Service\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"delete-service-ok\",\n\t\t\t\t\tisDisabled: matchText.trim() !== matchName,\n\t\t\t\t\tonClick: onDelete\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_error_title\", message: \"An error occurred\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_open_support_ticket\", message: \"Open Support Ticket\" }),\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_rename_service_title\", message: \"Edit Service Name\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rename-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rename-service-ok\",\n\t\t\t\t\tisDisabled: hasErrors,\n\t\t\t\t\tonClick: handleRename\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_clone_service_title\", message: \"Clone Service: Pre-Check\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"expression","e":"isReady && (results.errors.length > 0 || results.warnings.length > 0)\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-cancel\",\n\t\t\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_continue\", message: \"Continue\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-continue\",\n\t\t\t\t\t\t\t\tisDisabled: results.errors.length > 0,\n\t\t\t\t\t\t\t\tonClick: onContinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: []"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"title","d":"expression","e":"isEdit ? t({ id: \"id_dlg_edit_msg_spool_title\", message: \"Edit Message Spool Size\" }) : t({ id: \"id_dlg_customize_msg_spool_title\", message: \"Customize Message Spool Size\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"customizeMessageSpoolCancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_apply\", message: \"Apply\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: isEdit ? \"customizeMessageSpoolSave\" : \"customizeMessageSpoolApply\",\n\t\t\t\t\tisDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_environments\", message: \"Environments\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"contentLayout","d":"string","e":"contents"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_move_hostname_title\", message: \"Move Hostname\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-hostname-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleMove\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","c":[{"b":"title","d":"expression","e":"create ? t({ id: \"id_dlg_create_endpoint_title\", message: \"Create Endpoint\" }) : t({ id: \"id_dlg_edit_endpoint_title\", message: \"Edit Endpoint\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_mate_link_encryption_title\", message: \"Mate-Link Encryption\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-disable\",\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"jsx","e":""},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"library-close\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"inProgress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_edit_cluster_name_title\", message: \"Edit Cluster Name\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_domain_cert_auth_title\", message: \"Add Domain Certificate Authority\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_distributed_tracing_title\", message: \"Distributed Tracing\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-confirm\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_distributed_tracing_title\", message: \"Configure Data Collection\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_dt_confirmDeploy\", message: \"Confirm and Deploy\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-confirm\",\n\t\t\t\t\tonClick: handleConfirmDeploy,\n\t\t\t\t\tisDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_delete_hostname_title\", message: \"Delete Hostname\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"delete-hostname-confirm\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleDelete\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => onClose()\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_client_auth_title\", message: \"Edit Client Authentication\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_ldap_profile_title\", message: \"Edit LDAP Profile\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","c":[{"b":"title","d":"expression","e":"addMode\n\t\t\t\t\t? t({ id: \"id_dlg_client_cert_auth_title\", message: \"Add Client Certificate Authority\" })\n\t\t\t\t\t: t({ id: \"id_dlg_client_cert_auth_edit_title\", message: \"Edit Client Certificate Authority\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"expression","e":"canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"title","d":"expression","e":"isEdit\n\t\t\t\t\t? t({ id: \"id_dlg_edit_syslog_config_title\", message: \"Edit Syslog Forwarding Destination\" })\n\t\t\t\t\t: t({ id: \"id_dlg_create_syslog_config_title\", message: \"Create Syslog Forwarding Destination\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"expression","e":"canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_create_hostname_title\", message: \"Create Hostname\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"create-hostname-save\",\n\t\t\t\t\tisDisabled: isLoadingCertificates || saveDisabled,\n\t\t\t\t\tonClick: handleCreate\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_ldap_mgmt_access_title\", message: \"Set LDAP Group Access\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"title","d":"expression","e":"id ? t({ id: \"id_dlg_client_profile_edit_title\", message: \"Edit Client Profile\" }) : t({ id: \"id_dlg_client_profile_create_title\", message: \"Create Client Profile\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"expression","e":"canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: id ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: id ? \"client-profile-save\" : \"client-profile-create\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_rotate_passwords_title\", message: \"Rotate Broker Passwords\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_rotate\", message: \"Rotate\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-rotate\",\n\t\t\t\t\tonClick: handleRotate\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_disable_standard_domain_cert_auth\", message: \"Disable Standard Domain Certificate Authorities\" })"},{"b":"contentText","d":"expression","e":"t({\n\t\t\t\t\t\t\tid: \"id_disable_standard_domain_cert_auth_desc\",\n\t\t\t\t\t\t\tmessage: \"This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates.\"\n\t\t\t\t\t\t})"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelConfirmDisable },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_disable\", message: \"Disable\" }), variant: \"call-to-action\", onClick: handleConfirmDisable }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_cert_auth\", message: \"Delete Certificate Authority\" })"},{"b":"contentText","d":"expression","e":"t({\n\t\t\t\t\t\t\tid: \"id_prompt_delete_cert_auth\",\n\t\t\t\t\t\t\tmessage: \"Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? \"\n\t\t\t\t\t\t})"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", isDisabled: !allowServiceQueries, onClick: handleDelete }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_client_profile\", message: \"Delete Client Profile\" })"},{"b":"contentText","d":"expression","e":"t({ id: \"id_prompt_delete_client_profile\", message: \"Are you sure you want to permanently delete this client profile?\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"client-profile-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"client-profile-delete\", onClick: handleDelete }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_syslog_config\", message: \"Deactivate Syslog Forwarding\" })"},{"b":"contentText","d":"expression","e":"t({ id: \"id_prompt_delete_syslog_config\", message: \"Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server.\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"syslog-config-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_deactivate\", message: \"Deactivate\" }), variant: \"outline\", dataQa: \"syslog-config-delete\", onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_endpoint\", message: \"Delete Endpoint\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"delete-endpoint-cancel\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"delete-endpoint-confirmed\", onClick: handleDeleteEndpoint }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ variant: \"outline\", label: \"Close\", onClick: () => onClose() }]"},{"b":"title","d":"expression","e":"getTitle()"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"t({ id: \"id_auto_upgrade_plan_title\", message: \"Plan Upgrade\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Close\", onClick: handleClose },\n\t\t\t\t{ label: \"Run Upgrade\", onClick: handleUpgrade, variant: \"call-to-action\", isDisabled: !!formError || upgradeMutation.isLoading }\n\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..3e932fe8f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +34 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..7acd1a03c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":34} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/commonProps.json new file mode 100644 index 000000000..9422ce3cd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/commonProps.json @@ -0,0 +1 @@ +[{"name":"msgImg","count":1},{"name":"title","count":1},{"name":"details","count":1},{"name":"actions","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/files.json new file mode 100644 index 000000000..7dd73bc2c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/instances.json new file mode 100644 index 000000000..5cfeb8dc2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx","c":[{"b":"msgImg","d":"expression","e":"illustration ?? "},{"b":"title","d":"expression","e":"title ?? t({ id: \"id_nothing_here\", message: \"Nothing to see here!\" })"},{"b":"details","d":"expression","e":"details ?? t({ id: \"id_return_home\", message: \"Please try returning to main page.\" })"},{"b":"actions","d":"expression","e":"!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-mission-control\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? t({ id: \"id_goto_mc\", message: \"Go to Mission Control\" }),\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceDetailMessage/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/commonProps.json new file mode 100644 index 000000000..9b8021110 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":3},{"name":"fgColor","count":3},{"name":"bgColor","count":3},{"name":"icon","count":3},{"name":"...","count":2},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/files.json new file mode 100644 index 000000000..0de0c0546 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/instances.json new file mode 100644 index 000000000..0dd6fbbfb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"...","d":"spread","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","c":[{"b":"label","d":"expression","e":"environment.label"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"dataQa","d":"string","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","c":[{"b":"label","d":"expression","e":"environment.label"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"dataQa","d":"string","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"...","d":"spread","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"label","d":"string","e":""},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentChip/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/commonProps.json new file mode 100644 index 000000000..bcf69edfa --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":2},{"name":"fgColor","count":2},{"name":"bgColor","count":2},{"name":"icon","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/files.json new file mode 100644 index 000000000..d38930b4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/instances.json new file mode 100644 index 000000000..c460bd010 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"variable","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"label","d":"expression","e":"environment.label"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/usagesByMfe.json new file mode 100644 index 000000000..ac984402c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/commonProps.json new file mode 100644 index 000000000..6388787e1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":1},{"name":"value","count":1},{"name":"onChange","count":1},{"name":"options","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/files.json new file mode 100644 index 000000000..18aa6f1fd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/instances.json new file mode 100644 index 000000000..ef27625b2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"name","d":"string","e":"environment"},{"b":"value","d":"expression","e":"selectedEnvironment.environmentId"},{"b":"onChange","d":"variable","e":"handleSetEnvironment"},{"b":"options","d":"variable","e":"environmentOptions"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceEnvironmentSelectChip/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/commonProps.json new file mode 100644 index 000000000..d98059cb8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/files.json new file mode 100644 index 000000000..bd79d4151 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/instances.json new file mode 100644 index 000000000..cbfc25296 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_disable_error\", message: \"An error occurred while disabling Distributed Tracing, please try again.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_failed_conf_collector\", message: \"Failed to configure and deploy the collector. For support, contact Solace.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_telemetry_profile_not_created\", message: \"This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_telemetry_no_connection\", message: \"Cannot retrieve the telemetry profile due to lack of connection.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({\n\t\t\t\t\t\t\tid: \"id_dt_tracing_dest_not_defined\",\n\t\t\t\t\t\t\tmessage: \"A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed.\"\n\t\t\t\t\t\t})"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceErrorBox/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/commonProps.json new file mode 100644 index 000000000..701e26727 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/commonProps.json @@ -0,0 +1 @@ +[{"name":"item","count":6},{"name":"xs","count":6},{"name":"display","count":3},{"name":"justifyContent","count":3},{"name":"container","count":2},{"name":"spacing","count":1},{"name":"alignItems","count":1},{"name":"justify-content","count":1},{"name":"textAlign","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/files.json new file mode 100644 index 000000000..b45d93171 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/instances.json new file mode 100644 index 000000000..6becaf6b3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"string","e":"center"},{"b":"justify-content","d":"string","e":"flex-end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8.5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.5"},{"b":"textAlign","d":"string","e":"right"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"display","d":"string","e":"flex"},{"b":"justifyContent","d":"string","e":"flex-end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"display","d":"string","e":"flex"},{"b":"justifyContent","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"display","d":"string","e":"flex"},{"b":"justifyContent","d":"string","e":"flex-start"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/usagesByMfe.json new file mode 100644 index 000000000..b10feda5b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGrid/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/commonProps.json new file mode 100644 index 000000000..85d765eea --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":7},{"name":"rowMapping","count":7},{"name":"gridTemplate","count":7},{"name":"dataQa","count":7},{"name":"id","count":3},{"name":"headers","count":2},{"name":"selectedItemId","count":1},{"name":"onSelection","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/files.json new file mode 100644 index 000000000..a8b329b53 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/instances.json new file mode 100644 index 000000000..299d2d81d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"id","d":"string","e":"meshes"},{"b":"items","d":"variable","e":"meshes"},{"b":"headers","d":"variable","e":"headers"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"event-meshes"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"`ldap-groups-${id}`"},{"b":"gridTemplate","d":"string","e":"1fr"},{"b":"items","d":"variable","e":"items"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"dataQa","d":"expression","e":"`client-profiles`"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"clientCertAuths"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"dataQa","d":"expression","e":"`client-profiles`"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"profiles"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"id","d":"string","e":"hostnames"},{"b":"dataQa","d":"string","e":"hostnames"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"hostnames"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"dataQa","d":"string","e":"syslog-forwarding"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"syslogs"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","c":[{"b":"id","d":"string","e":"libraries"},{"b":"dataQa","d":"string","e":"libraries"},{"b":"gridTemplate","d":"string","e":"90px 1fr 1fr 120px"},{"b":"items","d":"variable","e":"librarySummaries"},{"b":"selectedItemId","d":"variable","e":"selectedId"},{"b":"onSelection","d":"variable","e":"handleSelection"},{"b":"headers","d":"array","e":"[\n\t\t\t\tt({ id: \"id_technology\", message: \"Technology\" }),\n\t\t\t\tt({ id: \"id_library\", message: \"Library\" }),\n\t\t\t\tview === \"language\" ? t({ id: \"id_protocol\", message: \"Protocol\" }) : t({ id: \"id_language\", message: \"Language\" }),\n\t\t\t\t\"\"\n\t\t\t]"},{"b":"rowMapping","d":"function","e":"(item) => [\n\t\t\t\t\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{view === \"language\" ? item.protocol : item.languages}\n\t\t\t\t,\n\t\t\t\t\n\t\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t\tGet Started\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..3a4e8f654 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/commonProps.json new file mode 100644 index 000000000..2fa3b5d3a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":1},{"name":"items","count":1},{"name":"headers","count":1},{"name":"actions","count":1},{"name":"rowMapping","count":1},{"name":"gridTemplate","count":1},{"name":"dataQa","count":1},{"name":"selectedRowIds","count":1},{"name":"onSelection","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/files.json new file mode 100644 index 000000000..08e1a456d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/instances.json new file mode 100644 index 000000000..50a270b5e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"id","d":"string","e":"services"},{"b":"items","d":"expression","e":"services ?? []"},{"b":"headers","d":"variable","e":"headers"},{"b":"actions","d":"variable","e":"actions"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"services"},{"b":"selectedRowIds","d":"variable","e":"selectedIds"},{"b":"onSelection","d":"variable","e":"handleRowSelection"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceGridListMultiSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/commonProps.json new file mode 100644 index 000000000..5e60db9f0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":20},{"name":"htmlForId","count":15},{"name":"required","count":11},{"name":"noWrap","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/files.json new file mode 100644 index 000000000..66f2d5d0f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/instances.json new file mode 100644 index 000000000..3c7605c61 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceType"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"nameHeader"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"typeHeader"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"accessHeader"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"expression","e":"\"resourceAssignmentListLoading\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","c":[{"b":"id","d":"expression","e":"`${id}-label\"`"},{"b":"htmlForId","d":"variable","e":"htmlForId"},{"b":"required","d":"variable","e":"required"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"htmlForId","d":"variable","e":"nameCheck"},{"b":"noWrap","d":"boolean","e":"true"},{"b":"id","d":"expression","e":"`${nameCheck}-label`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","c":[{"b":"id","d":"string","e":"serviceTypeLabel"},{"b":"htmlForId","d":"string","e":"serviceType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","c":[{"b":"id","d":"string","e":"brokerFamilyLabel"},{"b":"htmlForId","d":"string","e":"brokerFamilyVersion"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","c":[{"b":"id","d":"string","e":"endpointsLabel"},{"b":"htmlForId","d":"string","e":"endpoints"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","c":[{"b":"id","d":"string","e":"msgVpnNameLabel"},{"b":"htmlForId","d":"string","e":"msgVpnName"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"id","d":"string","e":"brokerVersionLabel"},{"b":"htmlForId","d":"string","e":"brokerVersion"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","c":[{"b":"id","d":"string","e":"mateLinkEncryptionLabel"},{"b":"htmlForId","d":"string","e":"mateLinkEncryption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","c":[{"b":"id","d":"string","e":"environmentLabel"},{"b":"htmlForId","d":"string","e":"environment"},{"b":"required","d":"expression","e":"!!serviceId"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","c":[{"b":"id","d":"string","e":"cloudLabel"},{"b":"htmlForId","d":"string","e":"cloud"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","c":[{"b":"id","d":"string","e":"regionLabel"},{"b":"htmlForId","d":"string","e":"region"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"id","d":"string","e":"systemTypeLabel"},{"b":"htmlForId","d":"string","e":"systemType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","c":[{"b":"id","d":"string","e":"clusterNameLabel"},{"b":"htmlForId","d":"string","e":"clusterName"},{"b":"required","d":"expression","e":"!!edit"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","c":[{"b":"id","d":"string","e":"serviceNameLabel"},{"b":"htmlForId","d":"string","e":"serviceName"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","c":[{"b":"id","d":"string","e":"certAuthoritiesLabel"},{"b":"htmlForId","d":"string","e":"cloneCertificateAuthorities"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/totalUsages.json new file mode 100644 index 000000000..2edeafb09 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/totalUsages.json @@ -0,0 +1 @@ +20 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/usagesByMfe.json new file mode 100644 index 000000000..252d6194c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":20} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/commonProps.json new file mode 100644 index 000000000..153c1a9fd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":3},{"name":"height","count":3},{"name":"value","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/files.json new file mode 100644 index 000000000..b49ba7734 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/instances.json new file mode 100644 index 000000000..4ef2c8737 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","c":[{"b":"variant","d":"expression","e":"percent >= 99 ? \"indeterminate\" : \"determinate\""},{"b":"height","d":"string","e":"sm"},{"b":"value","d":"variable","e":"percent"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"height","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"variant","d":"string","e":"determinate"},{"b":"height","d":"string","e":"sm"},{"b":"value","d":"expression","e":"getCreationPercentage(service.creationState, service.createdTime as Date)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/usagesByMfe.json new file mode 100644 index 000000000..a0a290e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceLinearProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/commonProps.json new file mode 100644 index 000000000..926d67726 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":13},{"name":"items","count":13},{"name":"id","count":12},{"name":"anchorOrigin","count":11},{"name":"transformOrigin","count":11},{"name":"dataQa","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/files.json new file mode 100644 index 000000000..a508024dd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/instances.json new file mode 100644 index 000000000..d3fded843 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: selectedCount < minimalCount,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: t({ id: \"id_actions\", message: \"Actions\" })\n\t\t\t\t}"},{"b":"items","d":"variable","e":"items"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"actions"},{"b":"id","d":"expression","e":"`${eventMesh.id}_actions`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_event_mesh_details\", message: \"Event Mesh Details\" }),\n\t\t\t\t\t\t\t\tonMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),\n\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\tdisabled: !hasWriteAccess\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: t({ id: \"id_download\", message: \"Download\" }),\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tdataQa: \"download\"\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"string","e":"download"},{"b":"items","d":"expression","e":"links.download.map((dw) => ({\n\t\t\t\t\t\t\tname: dw.name,\n\t\t\t\t\t\t\tonMenuItemClick: () => openLink(dw.url)\n\t\t\t\t\t\t}))"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"actions\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`${id}-actions-menu`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-edit\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleEdit(idx)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-delete\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleDelete(idx)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"left\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"left\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"expression","e":"certType === \"client\"\n\t\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tdisabled: !canConfigure,\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index),\n\t\t\t\t\t\t\t\t\t\t\tdisabled: index === 0 || !canConfigure\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\tdisabled: item.id === DEFAULT_PROFILE || !canConfigure,\n\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"expression","e":"canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_set_as_default\", message: \"Set as Default\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-set-default\",\n\t\t\t\t\t\t\t\t\t\tdisabled: !item.canSetAsDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tchangeHostnameDefaultMutation.mutate(item.name);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-move\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\tsetShowMoveDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_copy_clipboard\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetShowDeleteDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"expression","e":"canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-edit\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-view\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"actions"},{"b":"id","d":"expression","e":"`public_actions`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"sort"},{"b":"id","d":"string","e":"sort"},{"b":"items","d":"variable","e":"items"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"actions\",\n\t\t\t\tonClick: handleMenuClick\n\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`${service.id}_actions`"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"sort"},{"b":"id","d":"string","e":"sort"},{"b":"items","d":"variable","e":"items"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..c5f629588 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/commonProps.json new file mode 100644 index 000000000..51105ca7e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":38},{"name":"message","count":38},{"name":"dataQa","count":7},{"name":"showIcon","count":1},{"name":"showCloseButton","count":1},{"name":"onClose","count":1},{"name":"dense","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/files.json new file mode 100644 index 000000000..1437972c5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/instances.json new file mode 100644 index 000000000..8d6781628 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"message","d":"variable","e":"error"},{"b":"onClose","d":"function","e":"() => setError(null)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"variant","d":"variable","e":"type"},{"b":"message","d":"variable","e":"title"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_edit_msg_spool_info\", message: \"This change will not impact queue size.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_customize_msg_spool_info\", message: \"You cannot decrease the message spool size after creating the service, but you can increase it without service interruption.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"message","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"eventMesh.errorMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"warningMessage.join(\" \")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Upgrade steps have failed. Contact Solace for support."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_error_facilities\", message: \"At least one facility must be selected.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"pickMessage(isProfileConfigured, isAccessConfigured)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_error_deployment\", message: \"There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace.\" })"},{"b":"dataQa","d":"string","e":"disable-distributed-tracing-error"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_destination_out_of_date\", message: \"Tracing destination is out of date on this service.\" })"},{"b":"dataQa","d":"string","e":"event-broker-version-banner"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_error_retrieving_details\", message: \"An error occurred while retrieving Distributed Tracing details, please try again.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"enableDistributedTracingErrorMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"patchBrandingText(t({ id: \"id_dt_error_disabling\", message: \"An error occurred while disabling Distributed Tracing. For support, contact Solace.\" }))"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_not_supported\", message: \"Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature.\" })"},{"b":"dataQa","d":"string","e":"event-broker-version-banner"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_configuration_progress\", message: \"Configuration in progress...\" })"},{"b":"dataQa","d":"string","e":"configuration-progress"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"message","d":"expression","e":"t({ id: \"id_collector_running\", message: \"Collector is running.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_collector_down\", message: \"Collector is down.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_retrieving_collector_status\", message: \"Retrieving collector status...\" })"},{"b":"dataQa","d":"string","e":"pending-collector-status"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"message","d":"expression","e":"t({ id: \"id_connection_service_active\", message: \"Connection to the service is active.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"brokerConnectionErrorMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_retrieving_service_status\", message: \"Retrieving service status...\" })"},{"b":"dataQa","d":"string","e":"pending-service-status"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_syslog_error\", message: \"Failed to retrieve the configuration for Syslog Forwarding.\" })"},{"b":"dataQa","d":"string","e":"syslog-error"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tPlan Upgrade\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{t({\n\t\t\t\t\t\t\t\tid: \"id_auto_upgrade_failed\",\n\t\t\t\t\t\t\t\tmessage: `Upgrade steps have failed. Contact Solace for support.`\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t setViewLogs(true)}>\n\t\t\t\t\t\t\t\tView Upgrade Logs\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\tSorry, a problem occurred trying to create your service.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Support Ticket\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({\n\t\t\t\t\t\t\t\t\tid: \"id_sso_out_of_sync\",\n\t\t\t\t\t\t\t\t\tmessage: \"The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details.\"\n\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_warn_not_latest_version\", message: \"Consider using the latest version. (Recommended)\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"i18n._(meta.errorMessage)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"i18n._(meta.warningMessage)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_error_max_spool_size\", message: \"Select a different region. You have reached your limits for this service.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"isSAP\n\t\t\t\t\t\t\t\t\t? t({\n\t\t\t\t\t\t\t\t\t\t\tid: \"id_error_limits_sap\",\n\t\t\t\t\t\t\t\t\t\t\tmessage: \"You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit.\"\n\t\t\t\t\t\t\t\t\t })\n\t\t\t\t\t\t\t\t\t: t({ id: \"id_error_limits\", message: \"Select another service type. You have either reached your limits, or the region does not support this service type.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({\n\t\t\t\t\tid: \"id_nodeport_info\",\n\t\t\t\t\tmessage: \"You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation.\"\n\t\t\t\t})"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/totalUsages.json new file mode 100644 index 000000000..c24b6ae77 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/totalUsages.json @@ -0,0 +1 @@ +38 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/usagesByMfe.json new file mode 100644 index 000000000..ecc6ad490 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceMessageBox/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":38} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..b83c1939a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":5},{"name":"breadcrumbs","count":5},{"name":"subTitle","count":4},{"name":"actions","count":3},{"name":"environment","count":3},{"name":"borderTop","count":3},{"name":"release","count":2},{"name":"actionMenu","count":1},{"name":"tabs","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/files.json new file mode 100644 index 000000000..70e130c4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/instances.json new file mode 100644 index 000000000..918210954 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })"},{"b":"subTitle","d":"expression","e":"t({ id: \"id_event_meshes\", message: \"Event Meshes\" })"},{"b":"release","d":"expression","e":"t({ id: \"id_beta\", message: \"BETA\" })"},{"b":"breadcrumbs","d":"array","e":"[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]"},{"b":"actions","d":"expression","e":"hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_compare_services\", message: \"Compare Services\" })"},{"b":"release","d":"expression","e":"t({ id: \"id_beta\", message: \"BETA\" })"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_service_details\", message: \"Service Details\" })"},{"b":"subTitle","d":"expression","e":"service?.name ?? \"...\""},{"b":"environment","d":"expression","e":"environment ? : undefined"},{"b":"borderTop","d":"expression","e":"environment?.bgColor"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"actionMenu","d":"expression","e":"service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)"},{"b":"actions","d":"expression","e":"service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]"},{"b":"tabs","d":"jsx","e":" {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"subTitle","d":"variable","e":"subTitle"},{"b":"environment","d":"expression","e":"environment ? : undefined"},{"b":"borderTop","d":"expression","e":"environment?.bgColor"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })"},{"b":"subTitle","d":"expression","e":"t({ id: \"id_services\", message: \"Services\" })"},{"b":"environment","d":"expression","e":"selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"array","e":"[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]"},{"b":"actions","d":"expression","e":"hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/commonProps.json new file mode 100644 index 000000000..a8aedee14 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"displayText","count":4},{"name":"activePage","count":4},{"name":"pageSize","count":4},{"name":"totalResults","count":4},{"name":"onPageSelection","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/files.json new file mode 100644 index 000000000..9bc777d4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/instances.json new file mode 100644 index 000000000..9c63e4ea4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"expression","e":"pagination.pageNumber + 1"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"function","e":"() => 1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"number","e":"1"},{"b":"pageSize","d":"number","e":"100"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"expression","e":"pagination.pageNumber"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"expression","e":"pagination.pageNumber"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..e5d5c6bbe --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/commonProps.json new file mode 100644 index 000000000..46991052c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":5},{"name":"name","count":5},{"name":"label","count":5},{"name":"key","count":4},{"name":"dataQa","count":3},{"name":"lightSubText","count":3},{"name":"value","count":3},{"name":"subText","count":2},{"name":"readOnly","count":2},{"name":"checked","count":2},{"name":"onChange","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/files.json new file mode 100644 index 000000000..f10f58c7f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/instances.json new file mode 100644 index 000000000..aab1ca587 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"name","d":"string","e":"endpointsSelector"},{"b":"dataQa","d":"expression","e":"`\"endpointsSelector\"[${id}]`"},{"b":"label","d":"variable","e":"label"},{"b":"lightSubText","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"id"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"name","d":"string","e":"systemType"},{"b":"dataQa","d":"expression","e":"`systemType[${id}]`"},{"b":"label","d":"variable","e":"label"},{"b":"subText","d":"variable","e":"subText"},{"b":"lightSubText","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"id"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"name","d":"string","e":"serviceType"},{"b":"dataQa","d":"expression","e":"`serviceType[${id}]`"},{"b":"label","d":"variable","e":"label"},{"b":"subText","d":"variable","e":"subText"},{"b":"lightSubText","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"id"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"label","d":"expression","e":"i18n._(label)"},{"b":"name","d":"variable","e":"option"},{"b":"checked","d":"variable","e":"checked"},{"b":"onChange","d":"expression","e":"handleMenuClick[index]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"label","d":"expression","e":"i18n._(label)"},{"b":"name","d":"variable","e":"option"},{"b":"checked","d":"variable","e":"checked"},{"b":"onChange","d":"expression","e":"handleMenuClick[index]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadio/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/commonProps.json new file mode 100644 index 000000000..23b3af84b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":3},{"name":"name","count":3},{"name":"dataQa","count":3},{"name":"value","count":3},{"name":"onChange","count":3},{"name":"readOnly","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/files.json new file mode 100644 index 000000000..659e24bc3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/instances.json new file mode 100644 index 000000000..e3f90ae1d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","c":[{"b":"id","d":"string","e":"endpointsSelector"},{"b":"name","d":"string","e":"endpointsSelector"},{"b":"dataQa","d":"string","e":"endpointsSelector"},{"b":"value","d":"variable","e":"endpointsSelector"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","c":[{"b":"id","d":"string","e":"serviceType"},{"b":"name","d":"string","e":"serviceType"},{"b":"dataQa","d":"string","e":"serviceType"},{"b":"value","d":"variable","e":"serviceType"},{"b":"onChange","d":"variable","e":"handleServiceTypeChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"id","d":"string","e":"systemType"},{"b":"name","d":"string","e":"systemType"},{"b":"dataQa","d":"string","e":"systemType"},{"b":"value","d":"variable","e":"systemType"},{"b":"onChange","d":"variable","e":"handleSystemTypeChange"},{"b":"readOnly","d":"variable","e":"readOnly"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/usagesByMfe.json new file mode 100644 index 000000000..a0a290e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceRadioGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/commonProps.json new file mode 100644 index 000000000..22239be8e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":12},{"name":"value","count":12},{"name":"onChange","count":12},{"name":"dataQa","count":11},{"name":"id","count":10},{"name":"hasErrors","count":7},{"name":"helperText","count":7},{"name":"disabled","count":6},{"name":"label","count":6},{"name":"inlineLabel","count":5},{"name":"readOnly","count":4},{"name":"required","count":3},{"name":"...","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/files.json new file mode 100644 index 000000000..115b9279a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/instances.json new file mode 100644 index 000000000..d4251914b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceRoleSelect"},{"b":"name","d":"string","e":"resourceRoleSelect"},{"b":"dataQa","d":"string","e":"resourceRoleSelect"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"value","d":"variable","e":"role"},{"b":"onChange","d":"function","e":"(event) => onResourceRoleChange(resourceAssignment, event.value)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"environment"},{"b":"name","d":"string","e":"environment"},{"b":"dataQa","d":"string","e":"environment"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"id","d":"string","e":"protocol"},{"b":"name","d":"string","e":"protocol"},{"b":"dataQa","d":"string","e":"protocol"},{"b":"label","d":"expression","e":"t({ id: \"id_protocol\", message: \"Protocol\" })"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"protocolIndex.toString()"},{"b":"onChange","d":"variable","e":"handleProtocolChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"id","d":"string","e":"hosturi"},{"b":"name","d":"string","e":"hosturi"},{"b":"dataQa","d":"string","e":"hosturi"},{"b":"label","d":"expression","e":"t({ id: \"id_hosturi\", message: \"Host URI\" })"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"hostUri"},{"b":"onChange","d":"variable","e":"handleHostUriChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"name","d":"string","e":"selectedTracingProfileId"},{"b":"data-qa","d":"string","e":"selectedTracingProfileId"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })"},{"b":"value","d":"variable","e":"selectedTracingProfileId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!selectedTracingProfileId && isSubmitted"},{"b":"helperText","d":"expression","e":"selectedTracingProfileId || !isSubmitted ? \"\" : t({ id: \"id_dt_select_tracing_dest\", message: \"Required. Select a tracing destination.\" })"},{"b":"onChange","d":"function","e":"(event) => setSelectedTracingProfileId(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"name","d":"string","e":"view"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_view_by\", message: \"View by\" })"},{"b":"value","d":"variable","e":"view"},{"b":"onChange","d":"variable","e":"handleChangeView"},{"b":"dataQa","d":"expression","e":"\"connect-view-by\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","c":[{"b":"id","d":"string","e":"brokerFamilyVersion"},{"b":"name","d":"string","e":"brokerFamilyVersion"},{"b":"dataQa","d":"string","e":"brokerFamilyVersion"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"id","d":"string","e":"brokerVersion"},{"b":"name","d":"string","e":"brokerVersion"},{"b":"dataQa","d":"string","e":"brokerVersion"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","c":[{"b":"id","d":"string","e":"cloud"},{"b":"name","d":"string","e":"cloud"},{"b":"dataQa","d":"string","e":"cloud"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"disabled","d":"variable","e":"cloudDisabled"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx","c":[{"b":"id","d":"string","e":"serviceClass"},{"b":"name","d":"string","e":"serviceClass"},{"b":"dataQa","d":"string","e":"serviceClass"},{"b":"value","d":"expression","e":"serviceClass.value"},{"b":"onChange","d":"variable","e":"handleServiceClassChange"},{"b":"hasErrors","d":"variable","e":"hasServiceClassErrors"},{"b":"helperText","d":"variable","e":"serviceClassErrorText"},{"b":"label","d":"expression","e":"isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })"},{"b":"disabled","d":"expression","e":"activeServiceClasses.length === 0"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx","c":[{"b":"id","d":"string","e":"serviceClass"},{"b":"name","d":"string","e":"serviceClass"},{"b":"dataQa","d":"string","e":"serviceClass"},{"b":"value","d":"expression","e":"serviceClass.value"},{"b":"onChange","d":"variable","e":"handleServiceClassChange"},{"b":"hasErrors","d":"variable","e":"hasServiceClassErrors"},{"b":"helperText","d":"variable","e":"serviceClassErrorText"},{"b":"label","d":"expression","e":"isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })"},{"b":"disabled","d":"expression","e":"activeServiceClasses.length === 0"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..3cacc0b93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..8282e10d3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..3e021bb5a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":5},{"name":"value","count":5},{"name":"onChange","count":5},{"name":"hasErrors","count":5},{"name":"helperText","count":5},{"name":"dataQa","count":4},{"name":"itemComponent","count":4},{"name":"optionsLabelCallback","count":4},{"name":"isOptionEqualToValueCallback","count":4},{"name":"itemMappingCallback","count":4},{"name":"fetchOptionsCallback","count":4},{"name":"options","count":4},{"name":"getOptionDisabledCallback","count":3},{"name":"required","count":3},{"name":"id","count":3},{"name":"maxHeight","count":2},{"name":"disabled","count":2},{"name":"...","count":1},{"name":"label","count":1},{"name":"getShowOptionDividerCallback","count":1},{"name":"placeholder","count":1},{"name":"groupByCallback","count":1},{"name":"readOnly","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..b95f4de5f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..c8cd3b264 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[{"b":"name","d":"string","e":"userAccessSelect-search"},{"b":"dataQa","d":"expression","e":"`userAccessSelect-${resourceAssignment.userId}`"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option?.value === value?.value"},{"b":"itemMappingCallback","d":"function","e":"(option) => option ?? { name: \"\", value: \"\" }"},{"b":"fetchOptionsCallback","d":"function","e":"(searchTerm) => setSearchTerm(searchTerm)"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]"},{"b":"options","d":"variable","e":"userOptions"},{"b":"value","d":"variable","e":"selectedOption"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"hasErrors","d":"expression","e":"!!resourceAssignment.error"},{"b":"helperText","d":"expression","e":"resourceAssignment.error"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"version"},{"b":"maxHeight","d":"string","e":"30vh"},{"b":"name","d":"string","e":"targetVersion"},{"b":"label","d":"string","e":"Target Version"},{"b":"hasErrors","d":"expression","e":"!!formError"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"helperText","d":"expression","e":"formError ? formError : \"\""},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => option.value === currentVersion"},{"b":"fetchOptionsCallback","d":"expression","e":"useDebouncedCallback(fetchOptionsCallback, 150)"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\tsetFormError(\"\");\n\t\t\t\t\t\tsetVersion(event.value as SolaceSelectAutocompleteItemProps);\n\t\t\t\t\t}"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","c":[{"b":"id","d":"string","e":"region"},{"b":"name","d":"string","e":"region"},{"b":"dataQa","d":"string","e":"region"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"disabled","d":"variable","e":"regionDisabled"},{"b":"placeholder","d":"expression","e":"getPlaceholder()"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchOptions"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isOptionEqual"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"regionToString"},{"b":"itemMappingCallback","d":"variable","e":"itemToRegion"},{"b":"groupByCallback","d":"variable","e":"getGroupBy"},{"b":"getOptionDisabledCallback","d":"variable","e":"isOptionDisabled"},{"b":"options","d":"variable","e":"matchingRegions"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","c":[{"b":"id","d":"string","e":"clusterName"},{"b":"name","d":"string","e":"clusterName"},{"b":"dataQa","d":"string","e":"clusterName"},{"b":"readOnly","d":"variable","e":"isCloning"},{"b":"required","d":"expression","e":"!!edit"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchOptions"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isOptionEqual"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"clusterNameToString"},{"b":"itemMappingCallback","d":"variable","e":"itemMappingCallback"},{"b":"helperText","d":"expression","e":"errorText ? errorText : t({ id: \"id_cluster_name_info\", message: \"Type a new cluster name or select an existing one.\" })"},{"b":"options","d":"variable","e":"matchingClusterNames"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"maxHeight","d":"expression","e":"theme.spacing(30)"},{"b":"onChange","d":"variable","e":"handleChange"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..0637a088a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..75f0c92ed --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..509f9bc36 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..ce345b46a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/commonProps.json new file mode 100644 index 000000000..cbe65d2c2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/commonProps.json @@ -0,0 +1 @@ +[{"name":"showSidePanel","count":1},{"name":"sidePanelWidth","count":1},{"name":"sidePanelContent","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/files.json new file mode 100644 index 000000000..03454599d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/instances.json new file mode 100644 index 000000000..42425d490 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"showSidePanel","d":"variable","e":"showPanel"},{"b":"sidePanelWidth","d":"number","e":"480"},{"b":"sidePanelContent","d":"expression","e":"selectedLibrary ? (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{selectedLibrary.displayName}\n\t\t\t\t\t\t\t handleSelectLibrary(null)}>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tGet Started\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t) : undefined"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceSidePanelLayout/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/commonProps.json new file mode 100644 index 000000000..950c5fef0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"direction","count":2},{"name":"justifyContent","count":2},{"name":"width","count":1},{"name":"height","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/files.json new file mode 100644 index 000000000..c58838e0b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/instances.json new file mode 100644 index 000000000..06d0e8eaf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"width","d":"string","e":"38rem"},{"b":"height","d":"string","e":"auto"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..a0a290e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/commonProps.json new file mode 100644 index 000000000..a5ea95eed --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"activeTabValue","count":3},{"name":"onTabClick","count":3},{"name":"tabs","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/files.json new file mode 100644 index 000000000..8b56a8a91 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/instances.json new file mode 100644 index 000000000..326c40c07 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"activeTabValue","d":"variable","e":"activeStep"},{"b":"onTabClick","d":"variable","e":"setActiveStep"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t{ value: \"1\", label: t({ id: \"id_get_api\", message: \"1. Get API\" }) },\n\t\t\t\t\t{ value: \"2\", label: t({ id: \"id_connect_service\", message: \"2. Connect to Service\" }) },\n\t\t\t\t\t{ value: \"3\", label: t({ id: \"id_learn_more\", message: \"3. Learn with Tutorials\" }) }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"activeTabValue","d":"variable","e":"certType"},{"b":"onTabClick","d":"variable","e":"setCertType"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t{ value: \"client\", label: t({ id: \"id_client_cert_auths\", message: \"Client Certificate Authorities\" }) },\n\t\t\t\t\t\t\t\t\t{ value: \"domain\", label: t({ id: \"id_domain_cert_auths\", message: \"Domain Certificate Authorities\" }) }\n\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"activeTabValue","d":"variable","e":"tab"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_status\", message: \"Status\" }), value: \"status\" },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_connect\", message: \"Connect\" }), value: \"connect\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_manage\", message: \"Manage\" }), value: \"manage\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_monitoring\", message: \"Monitoring\" }), value: \"monitoring\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_configuration\", message: \"Configuration\" }), value: \"configuration\", disabled: isInProgress },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_tryme\", message: \"Try Me!\" }), value: \"tryme\", disabled: areTabsDisabled }\n\t\t\t\t\t\t]"},{"b":"onTabClick","d":"function","e":"(value) => {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..a0a290e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/commonProps.json new file mode 100644 index 000000000..926759975 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":1},{"name":"id","count":1},{"name":"name","count":1},{"name":"dataQa","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1},{"name":"value","count":1},{"name":"onChange","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/files.json new file mode 100644 index 000000000..587e17445 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/instances.json new file mode 100644 index 000000000..c2d360940 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/commonProps.json new file mode 100644 index 000000000..2a83f92f1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":21},{"name":"value","count":21},{"name":"label","count":17},{"name":"inlineLabel","count":14},{"name":"readOnly","count":14},{"name":"dataQa","count":11},{"name":"id","count":10},{"name":"onChange","count":10},{"name":"hasErrors","count":7},{"name":"helperText","count":7},{"name":"type","count":5},{"name":"autoFocus","count":4},{"name":"disabled","count":3},{"name":"required","count":2},{"name":"size","count":2},{"name":"onBlur","count":2},{"name":"...","count":1},{"name":"placeholder","count":1},{"name":"customIcon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/files.json new file mode 100644 index 000000000..9e7227055 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/instances.json new file mode 100644 index 000000000..e0f5eb3b7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"id","d":"string","e":"service_name"},{"b":"name","d":"string","e":"service_name"},{"b":"dataQa","d":"string","e":"delete-service-confirm-name"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\tPlease type {matchText} to confirm.\n\t\t\t\t\t\t\t"},{"b":"value","d":"variable","e":"matchName"},{"b":"onChange","d":"function","e":"(e) => setMatchName(e.value)"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","c":[{"b":"id","d":"string","e":"service_name"},{"b":"name","d":"string","e":"service_name"},{"b":"dataQa","d":"string","e":"rename-service-name"},{"b":"label","d":"expression","e":"t({ id: \"id_new_service_name_label\", message: \"Service Name\" })"},{"b":"value","d":"variable","e":"newName"},{"b":"onChange","d":"function","e":"(e) => setNewName(e.value)"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"isEmpty\n\t\t\t\t\t\t\t? t({ id: \"id_rule_enter_value\", message: \"Required. Enter a value.\" })\n\t\t\t\t\t\t\t: hasErrors\n\t\t\t\t\t\t\t? t({ id: \"id_rule_less_n_chars\", message: \"Exceeds limit. Enter a value under {0} characters.\", values: { 0: 50 } })\n\t\t\t\t\t\t\t: \"\\xa0\""},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"id","d":"string","e":"new_msg_spool_size"},{"b":"name","d":"string","e":"new_msg_spool_size"},{"b":"dataQa","d":"string","e":"newMessageSpoolSize"},{"b":"label","d":"expression","e":"t({ id: \"id_new_msg_spool_size_label\", message: \"New Message Spool Size (GB)\" })"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"variable","e":"progress"},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"size","d":"number","e":"4"},{"b":"value","d":"expression","e":"messageStorage.value"},{"b":"onChange","d":"variable","e":"handleMessageStorageChange"},{"b":"hasErrors","d":"variable","e":"hasMessageStorageErrors"},{"b":"helperText","d":"expression","e":"hasMessageStorageErrors ? messageStorageErrorText : t({ id: \"id_default_size_gb\", message: \"Default: {0} GB\", values: { 0: formatter.format(defaultMessageSpoolSize) } })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"(hasBlurred || isSubmitted) && hasErrors"},{"b":"helperText","d":"expression","e":"(hasBlurred || isSubmitted ? errorText : \"\") || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"onBlur","d":"variable","e":"handleBlur"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","c":[{"b":"name","d":"string","e":"accessType"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_access_type\", message: \"Access Type\" })"},{"b":"value","d":"expression","e":"i18n._(accessTypes[endpoint.accessType])"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"name","d":"string","e":"telemetryProfileName"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })"},{"b":"value","d":"variable","e":"telemetryProfileName"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"name","d":"string","e":"selectedTracingProfileId"},{"b":"dataQa","d":"string","e":"selectedTracingProfileId"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })"},{"b":"value","d":"expression","e":"tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : \"-\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"name","d":"string","e":"authenticationBasicEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationBasicEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"name","d":"string","e":"authenticationClientCertEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_client_cert_auth\", message: \"Client Certificate Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationClientCertEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"name","d":"string","e":"authenticationOauthEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_oauth_provider_auth\", message: \"OAuth Provider Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationOauthEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","c":[{"b":"name","d":"string","e":"msg_spool_size"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_cur_msg_spool_size\", message: \"Current Message Spool Size (GB)\" })"},{"b":"value","d":"variable","e":"messageSpoolSize"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx","c":[{"b":"name","d":"string","e":"authenticationBasicEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationBasicEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"name","d":"string","e":"tracingProfileName"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })"},{"b":"value","d":"variable","e":"tracingProfileName"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"name","d":"string","e":"tracingClientUsername"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_client_username\", message: \"Tracing Client Username\" })"},{"b":"value","d":"expression","e":"\"sc-dt-trace-collector\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"name","d":"string","e":"telemetryProfileName"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })"},{"b":"value","d":"variable","e":"telemetryProfileName"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","c":[{"b":"id","d":"string","e":"messageStorage"},{"b":"name","d":"string","e":"messageStorage"},{"b":"dataQa","d":"string","e":"messageStorage"},{"b":"type","d":"string","e":"number"},{"b":"label","d":"expression","e":"t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })"},{"b":"value","d":"expression","e":"activeServiceClasses.length === 0 ? \"\" : formatter.format(parseInt(messageStorage.value))"},{"b":"onChange","d":"variable","e":"handleMessageStorageChange"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","c":[{"b":"id","d":"string","e":"messageStorage"},{"b":"name","d":"string","e":"messageStorage"},{"b":"dataQa","d":"string","e":"messageStorage"},{"b":"type","d":"string","e":"number"},{"b":"label","d":"expression","e":"t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })"},{"b":"disabled","d":"expression","e":"activeServiceClasses.length === 0"},{"b":"value","d":"expression","e":"activeServiceClasses.length === 0 ? \"\" : messageStorage.value"},{"b":"onChange","d":"variable","e":"handleMessageStorageChange"},{"b":"hasErrors","d":"variable","e":"hasMessageStorageErrors"},{"b":"helperText","d":"variable","e":"messageStorageErrorText"},{"b":"readOnly","d":"expression","e":"activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"id","d":"variable","e":"namePort"},{"b":"name","d":"variable","e":"namePort"},{"b":"dataQa","d":"variable","e":"namePort"},{"b":"type","d":"string","e":"number"},{"b":"label","d":"expression","e":"\"\""},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"size","d":"number","e":"5"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"value","d":"variable","e":"port"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","c":[{"b":"id","d":"string","e":"msgVpnName"},{"b":"name","d":"string","e":"msgVpnName"},{"b":"dataQa","d":"string","e":"msgVpnName"},{"b":"type","d":"string","e":"text"},{"b":"readOnly","d":"variable","e":"isCloning"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText ? errorText : t({ id: \"id_message_vpn_name_help\", message: \"The message VPN name cannot be changed once the service is created.\" })"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","c":[{"b":"id","d":"string","e":"name"},{"b":"name","d":"string","e":"name"},{"b":"dataQa","d":"string","e":"name"},{"b":"type","d":"string","e":"text"},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"hasErrors","d":"variable","e":"hasAnyErrors"},{"b":"helperText","d":"variable","e":"anyErrorText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"onBlur","d":"variable","e":"handleBlur"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"id","d":"string","e":"filterName"},{"b":"name","d":"string","e":"filterName"},{"b":"dataQa","d":"string","e":"services-filter-name"},{"b":"value","d":"variable","e":"filter"},{"b":"onChange","d":"variable","e":"handleSetFilter"},{"b":"placeholder","d":"expression","e":"t({ id: \"id_filter_services\", message: \"Filter by service name\" })"},{"b":"customIcon","d":"object","e":"{\n\t\t\t\t\t\t\t\ticon: filter ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: filter ? handleClearFilter : undefined\n\t\t\t\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/totalUsages.json new file mode 100644 index 000000000..b5045cc40 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/totalUsages.json @@ -0,0 +1 @@ +21 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/usagesByMfe.json new file mode 100644 index 000000000..96e77baf9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTextField/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":21} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/commonProps.json new file mode 100644 index 000000000..b8c493744 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":3},{"name":"name","count":3},{"name":"isOn","count":3},{"name":"onChange","count":3},{"name":"dataQa","count":2},{"name":"helperText","count":2},{"name":"label","count":2},{"name":"...","count":1},{"name":"hasErrors","count":1},{"name":"disabled","count":1},{"name":"stateText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/files.json new file mode 100644 index 000000000..1695da82b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/instances.json new file mode 100644 index 000000000..52dfd20c4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"isOn","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx","c":[{"b":"id","d":"string","e":"delete_protection"},{"b":"name","d":"string","e":"delete_protection"},{"b":"dataQa","d":"string","e":"delete-protection"},{"b":"isOn","d":"variable","e":"isLocked"},{"b":"disabled","d":"expression","e":"!canConfigure"},{"b":"onChange","d":"variable","e":"handleDeleteProtection"},{"b":"stateText","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_delete_protection\", message: \"Delete Protection\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"id","d":"string","e":"show_all"},{"b":"isOn","d":"expression","e":"selectedEnvironment.showAllResources"},{"b":"onChange","d":"variable","e":"handleShowAllEnvs"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })"},{"b":"helperText","d":"expression","e":"t({ id: \"id_show_all_environments_help\", message: \"Enable to manage resources across environments\" })"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/usagesByMfe.json new file mode 100644 index 000000000..a0a290e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggle/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/commonProps.json new file mode 100644 index 000000000..d4eeb869d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"options","count":1},{"name":"onChange","count":1},{"name":"activeValue","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/files.json new file mode 100644 index 000000000..18aa6f1fd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/instances.json new file mode 100644 index 000000000..f21e8f7f2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"options","d":"variable","e":"viewOptions"},{"b":"onChange","d":"variable","e":"handleToggleView"},{"b":"activeValue","d":"variable","e":"selectedView"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceToggleButtonGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..4ce02d87b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":14},{"name":"variant","count":6},{"name":"placement","count":4},{"name":"maxWidth","count":3},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/files.json new file mode 100644 index 000000000..064568c54 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/instances.json new file mode 100644 index 000000000..765b4d253 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"userName"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{helpMessage}\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"maxQueueMsgsInfo"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"small"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"dataQa","d":"expression","e":"\"service-auth-tooltip\""},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"right\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"t({ id: \"id_view_tiles\", message: \"Grid View\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"t({ id: \"id_view_list\", message: \"List View\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"variable","e":"email"},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"servicesInMeshes.get(service.id as string)?.name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"userAccessInfo.userAccessText"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"environment.label || \"n/a\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"servicesInMeshes.get(serviceId)?.name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"userAccessInfo.userAccessText"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..da2d3988d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +14 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..90cde5dd2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":14} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/commonProps.json new file mode 100644 index 000000000..601486ce9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":61},{"name":"component","count":14},{"name":"sx","count":3},{"name":"mt","count":3},{"name":"key","count":2},{"name":"minWidth","count":2},{"name":"marginTop","count":1},{"name":"ml","count":1},{"name":"pt","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/files.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/files.json new file mode 100644 index 000000000..22af97fb2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","../../../maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/instances.json new file mode 100644 index 000000000..b439b53c9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"string","e":"role"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"component","d":"string","e":"span"},{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"expression","e":"`roles-${label}`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"marginTop","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"component","d":"string","e":"div"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","c":[{"b":"minWidth","d":"string","e":"634px"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","c":[{"b":"minWidth","d":"string","e":"634px"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"ml","d":"string","e":"-0.5rem"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"mt","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mt","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"mt","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"pt","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","c":[{"b":"variant","d":"string","e":"h4"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..0aeb54854 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +74 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..cfa74d436 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":74} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/mc/total_stats.json b/mrc-usage-report-data/per-application/maas-ui/mc/total_stats.json new file mode 100644 index 000000000..ee56e90d5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/mc/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":74,"SolaceButton":100,"SolaceGrid":8,"SolaceTooltip":14,"SolaceLabel":20,"SolaceMessageBox":38,"SolaceConfirmationDialog":34,"SolaceTextField":21,"SolaceStack":3,"SolaceSelect":12,"SolaceCheckBox":9,"SolaceAccordion":12,"SolaceMenu":13,"SolaceAttributeBadge":8,"SolaceSelectAutocompleteItem":5,"SolaceCard":5,"SolaceSelectAutocomplete":5,"SolacePagination":4,"SolaceTabs":3,"SolaceCircularProgress":11,"SolaceToggle":3,"SolaceDetailMessage":1,"SolaceGridList":7,"SolaceRadio":5,"SolaceSidePanelLayout":1,"SolaceTextArea":1,"SolacePageHeader":5,"SolaceEnvironmentChip":5,"SolaceEnvironmentLabel":2,"SolaceRadioGroup":3,"SolaceBreadcrumb":3,"SolaceErrorBox":5,"SolaceToggleButtonGroup":1,"SolaceLinearProgress":3,"SolaceEnvironmentSelectChip":1,"SolaceGridListMultiSelect":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/commonProps.json new file mode 100644 index 000000000..6695b42a6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/commonProps.json @@ -0,0 +1 @@ +[{"name":"onChange","count":7},{"name":"summary","count":7},{"name":"expanded","count":7},{"name":"details","count":7},{"name":"dataQa","count":4},{"name":"key","count":2},{"name":"border","count":2},{"name":"square","count":1},{"name":"disablePadding","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/files.json new file mode 100644 index 000000000..20fffd6d2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/instances.json new file mode 100644 index 000000000..48674b8dd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"dataQa","d":"string","e":"brokerSSONestedAccordion"},{"b":"onChange","d":"function","e":"() => toggleBrokerAccordion()"},{"b":"summary","d":"expression","e":"en.brokerSSOConfig.instructionsText"},{"b":"expanded","d":"variable","e":"isBrokerAccordionExpanded"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1. Click Manage Brokers, then select which event broker services to\n\t\t\t\t\t\t\t\tenable to use Broker SSO.
\n\t\t\t\t\t\t\t\t2. Click Enable SSO.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t3. Click Copy Broker URIs.
\n\t\t\t\t\t\t\t\t4. Add the URIs you've copied to your identity provider.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t5. After you complete these steps for your event broker services, you can use SSO to access them.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tTroubleshooting tip\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tIf a broker has more than one URI, the URIs are copied as comma-separated list. If your identity\n\t\t\t\t\t\t\t\t\tprovider does not support this format, manually enter each URI separately.\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","c":[{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"dataQa","d":"string","e":"tokenDetailsAccordion"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"summary","d":"expression","e":"`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`"},{"b":"details","d":"jsx","e":"<>{renderDetails(false)}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","c":[{"b":"key","d":"expression","e":"token.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"square","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"dataQa","d":"string","e":"openAuditFilterOptionsSection"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Time Range\"\n\t\t\t\t\t\t\t\tvalue={filters.timeRange.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{timeRangeLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Status\"\n\t\t\t\t\t\t\t\tvalue={filters.status.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{statusLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Category\"\n\t\t\t\t\t\t\t\tvalue={filters.category.value}\n\t\t\t\t\t\t\t\tid=\"categoryFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.category}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{autoCompleteField()}\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Event\"\n\t\t\t\t\t\t\t\tvalue={filters.event.value}\n\t\t\t\t\t\t\t\thelperText={!filters.category.value ? en.auditLogs.selectCategory : \"\"}\n\t\t\t\t\t\t\t\tid=\"eventFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"onChange","d":"function","e":"() => setShowFilterOptions((state) => !state)"},{"b":"expanded","d":"variable","e":"showFilterOptions"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.auditLogs.filters}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{selectedFilters?.map((filter, index) => (\n\t\t\t\t\t\t\t\t\t deleteFilter(filter.key)}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t{selectedFilters.length > 0 ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.auditLogs.clearAll}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"summary","d":"jsx","e":""},{"b":"expanded","d":"expression","e":"expanded[index]"},{"b":"onChange","d":"function","e":"() => handleExpanded(index)"},{"b":"border","d":"boolean","e":"true"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"dataQa","d":"string","e":"usersAccordion"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"summary","d":"expression","e":"renderUserSummary(0)"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{usersList.map((user, index) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t{isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{hasMore && !showMore && !isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showMore}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{showMore && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showLess}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/usagesByMfe.json new file mode 100644 index 000000000..6274722d6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAccordion/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..ed21ab8de --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":4},{"name":"label","count":4},{"name":"fillColor","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..88af7dddb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..edaaec85c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"environmentsStr.labels.defaultEnvironment"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"environmentsStr.labels.defaultEnvironment"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"active"},{"b":"label","d":"string","e":"Active"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"inactive"},{"b":"label","d":"string","e":"Inactive"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..011eb4c54 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/commonProps.json new file mode 100644 index 000000000..b029d3662 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":1},{"name":"name","count":1},{"name":"avpList","count":1},{"name":"labelForKeys","count":1},{"name":"labelForValues","count":1},{"name":"enableRequiredKeyFieldIndicator","count":1},{"name":"enableRequiredValueFieldIndicator","count":1},{"name":"readOnly","count":1},{"name":"keyRequired","count":1},{"name":"keyIsRequiredMessage","count":1},{"name":"avpKeyValidationCallback","count":1},{"name":"avpValueValidationCallback","count":1},{"name":"onAVPListUpdate","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/files.json new file mode 100644 index 000000000..90d4085bf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/instances.json new file mode 100644 index 000000000..09219c1a8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"avpList","d":"expression","e":"value || []"},{"b":"labelForKeys","d":"string","e":"Key"},{"b":"labelForValues","d":"string","e":"Value"},{"b":"enableRequiredKeyFieldIndicator","d":"boolean","e":"true"},{"b":"enableRequiredValueFieldIndicator","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"false"},{"b":"keyRequired","d":"boolean","e":"true"},{"b":"keyIsRequiredMessage","d":"string","e":"Required Field!"},{"b":"avpKeyValidationCallback","d":"function","e":"(currentInput, values) => keyValidator(currentInput, values)"},{"b":"avpValueValidationCallback","d":"function","e":"(currentInput, values) => valueValidator(currentInput, values)"},{"b":"onAVPListUpdate","d":"function","e":"(e) => onChange(e)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceAttributeValuePairForm/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/commonProps.json new file mode 100644 index 000000000..f9e5ddc17 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":7},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/files.json new file mode 100644 index 000000000..44c1f1ced --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/instances.json new file mode 100644 index 000000000..eecb0ce43 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"open","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","c":[{"b":"open","d":"variable","e":"tokenIsLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"open","d":"expression","e":"isPageLoading || createTokenIsLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"open","d":"variable","e":"isTokensListLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"open","d":"variable","e":"saveInProgress"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"open","d":"variable","e":"loading"},{"b":"data-qa","d":"string","e":"loading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"open","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/usagesByMfe.json new file mode 100644 index 000000000..6274722d6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBackDrop/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/commonProps.json new file mode 100644 index 000000000..32a972fb4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/commonProps.json @@ -0,0 +1 @@ +[{"name":"maxItems","count":2},{"name":"dataQa","count":2},{"name":"onRouteClick","count":2},{"name":"paths","count":2},{"name":"id","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/files.json new file mode 100644 index 000000000..4e754063e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/instances.json new file mode 100644 index 000000000..d0e1b3f06 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"id","d":"string","e":"groupManagementBreadcrumb"},{"b":"maxItems","d":"number","e":"2"},{"b":"dataQa","d":"string","e":"groupManagementBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/account-details/user-groups\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.userManagement}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.groupManagement}`\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"maxItems","d":"number","e":"2"},{"b":"dataQa","d":"string","e":"NotificationLinksBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(route) => history.push(route)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/notifications\",\n\t\t\t\t\t\t\ttitle: en.notifications.notifications\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: notificationTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceBreadcrumb/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/commonProps.json new file mode 100644 index 000000000..4342f4e3a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":109},{"name":"onClick","count":70},{"name":"dataQa","count":42},{"name":"href","count":40},{"name":"isDisabled","count":25},{"name":"id","count":7},{"name":"title","count":6},{"name":"dense","count":6},{"name":"key","count":5},{"name":"underline","count":1},{"name":"type","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/files.json new file mode 100644 index 000000000..0184f8c1e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/instances.json new file mode 100644 index 000000000..52b0204e2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"resourceAssignmentDelete"},{"b":"title","d":"expression","e":"messages.remove"},{"b":"onClick","d":"function","e":"() => onRemoveResourceAssignment(resourceAssignment)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"outline\""},{"b":"onClick","d":"function","e":"() => onAddResourceAssignment(displayedUserTypes[0])"},{"b":"isDisabled","d":"variable","e":"isDisabled"},{"b":"dataQa","d":"string","e":"addUser"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(\"/\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"isDisabled","d":"expression","e":"!ssoBrokerEnabled"},{"b":"onClick","d":"variable","e":"handleManageBrokerButton"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"manageBrokerButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"onClick","d":"variable","e":"handleViewSettingMapping"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","c":[{"b":"onClick","d":"variable","e":"onRegenerateTokenClick"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"regenerateTokenButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCopyToken"},{"b":"dataQa","d":"string","e":"copyTokenButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"solaceOpenAPIV2\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"variant","d":"expression","e":"mode === \"create\" ? \"text\" : \"call-to-action\""},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSubmit"},{"b":"isDisabled","d":"variable","e":"createTokenIsLoading"},{"b":"dataQa","d":"string","e":"createTokenBtn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"underline","d":"string","e":"always"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"tokenManagementHelpLink\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"onClick","d":"variable","e":"onCreateTokenClick"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"hasMaxNumberOfTokens"},{"b":"dataQa","d":"string","e":"createApiTokenButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setSelectedRow(null)"},{"b":"dataQa","d":"string","e":"logDetailsCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"downloadAuditLogs"},{"b":"dataQa","d":"string","e":"downloadAuditLogsJsonLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"clearAllButton"},{"b":"onClick","d":"variable","e":"discardFilterChanges"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"discardFilterChanges"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/drawdown.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"key","d":"expression","e":"`limitChangeButton-${index}`"},{"b":"id","d":"expression","e":"`limitChangeButton-${index}`"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"onClick","d":"variable","e":"cancelAddMapping"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"cancelAddClaimMapping"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"onClick","d":"variable","e":"addMappingHandler"},{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!groupMappingState ||\n\t\t\t\t\t\tselectedUserGroups.length < 1 ||\n\t\t\t\t\t\t!claimValuesMapping ||\n\t\t\t\t\t\tclaimValueError ||\n\t\t\t\t\t\tclaimValuesMapping.trim().length < 1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"onClick","d":"variable","e":"addGroupMappingHandler"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"claimMappingToEdit !== -1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace.com"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleTestAccessClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"isDisabled","d":"expression","e":"!claimId"},{"b":"onClick","d":"variable","e":"handleTestAccessClick"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"isDisabled","d":"expression","e":"!canDiscardChanges"},{"b":"onClick","d":"variable","e":"discardChanges"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"discardChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"onClick","d":"expression","e":"!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"!canSave || !(canDiscardChanges || !isEnabled)"},{"b":"dataQa","d":"string","e":"saveChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace.com"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsDialogOpen(true)"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","c":[{"b":"onClick","d":"variable","e":"cancelClaimMappingEditHandler"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","c":[{"b":"onClick","d":"function","e":"() => saveMappingDetails(rowData.id)"},{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"setup-idp-link\", \"link\")"},{"b":"onClick","d":"variable","e":"handleGroupClaimHelpLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"isDisabled","d":"expression","e":"!canSave"},{"b":"onClick","d":"function","e":"() => saveNotifyPreferences()"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"discardChanges"},{"b":"isDisabled","d":"expression","e":"checkIfChangesDone()"},{"b":"onClick","d":"variable","e":"handleCancelButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"checkIfSaveDisabled()"},{"b":"dataQa","d":"string","e":"saveProfileButton"},{"b":"id","d":"string","e":"saveButton"},{"b":"onClick","d":"variable","e":"handleApplyButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"supportFormCancel"},{"b":"onClick","d":"variable","e":"handleCancelButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"supportFormSubmit"},{"b":"onClick","d":"variable","e":"handleSaveButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"solaceCloudStatus\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"createEnvButton"},{"b":"onClick","d":"variable","e":"onCreateEnvClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"environmentTypeInfo\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"environmentsInfo\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/ep/runtime/event-management-agents"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"memSidePanelCloseButton"},{"b":"title","d":"string","e":"Close Side Panel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleButtonClick"},{"b":"dataQa","d":"string","e":"buttonEventManager"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/ep/runtime/templates"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"href","d":"string","e":"/ep/runtime?sortBy=environment"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"key","d":"expression","e":"`${testItem.id}-${testItem.name}-template-enabled`"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\thistory.push(`/ep/runtime/templates`);\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"runtimeTemplatesLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => history.push(`/user-settings/notify-settings`)"},{"b":"dataQa","d":"string","e":"notificationSettingsButton"},{"b":"title","d":"expression","e":"en.notifications.settings"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"dataQa","d":"string","e":"refreshNotificationSettingsButton"},{"b":"onClick","d":"function","e":"() => refetchNotifications()"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"dataQa","d":"string","e":"markAllNotificationsReadButton"},{"b":"onClick","d":"function","e":"() => markAllRead()"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"dataQa","d":"string","e":"sendEmailButton"},{"b":"isDisabled","d":"expression","e":"!email.isValid"},{"b":"type","d":"string","e":"submit"},{"b":"onClick","d":"variable","e":"handleSubmit"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"onClick","d":"variable","e":"handleNavigateToLogin"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"onClick","d":"variable","e":"handleGroupMapping"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"groupManagementButton"},{"b":"isDisabled","d":"expression","e":"ugCount <= 0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"onClick","d":"variable","e":"handleCreateGroup"},{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"createGroupButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"key","d":"expression","e":"\"searchIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"onClick","d":"variable","e":"handleCreateGroup"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"createGroupButton2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleShowMore"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleShowLess"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventPortalCloudEma\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.contactSupport"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"supportPage\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dataQa","d":"string","e":"viewServicesButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setSynchTracingDialog(true)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"tracingLimits.infoMessage.link.href"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"expression","e":"tracingDestinationCreationIsDisabled ? \"text\" : \"outline\""},{"b":"isDisabled","d":"variable","e":"tracingDestinationCreationIsDisabled"},{"b":"onClick","d":"function","e":"() => setTracingDialog({ mode: Mode.Create, isOpen: true })"},{"b":"dataQa","d":"string","e":"createTracingProfile"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"tracingDestinationLink\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"update"},{"b":"key","d":"expression","e":"`${item.serviceId}-update`"},{"b":"isDisabled","d":"expression","e":"!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)"},{"b":"onClick","d":"function","e":"() => handleUpdate(item)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"href","d":"expression","e":"`/services/${item.serviceId}`"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"tracingProfile.infoMessage.link.href"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.otlpHttp"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.otlpHttp"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"expression","e":"`${header.key}-copy`"},{"b":"onClick","d":"function","e":"() => navigator.clipboard.writeText(header.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsDialogOpen(true)"},{"b":"variant","d":"string","e":"outline"},{"b":"id","d":"string","e":"testSsoConfigurationButton"},{"b":"dataQa","d":"string","e":"testSsoConfiguration"},{"b":"isDisabled","d":"expression","e":"!isSsoConfigured"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx","c":[{"b":"onClick","d":"function","e":"() => updateSsoConfiguration({ state: \"enabled\" })"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"id","d":"string","e":"saveSsoConfigurationButton"},{"b":"dataQa","d":"string","e":"saveSsoConfigurationButton"},{"b":"isDisabled","d":"expression","e":"!haveStagedChangesToSave"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsDialogOpen(true)"},{"b":"variant","d":"string","e":"outline"},{"b":"id","d":"string","e":"enableSsoConfigurationButton"},{"b":"dataQa","d":"string","e":"enableSsoConfigurationButton"},{"b":"isDisabled","d":"expression","e":"!isSsoConfigured"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"onClick","d":"variable","e":"handleSsoSetup"},{"b":"variant","d":"string","e":"outline"},{"b":"id","d":"string","e":"setupSsoButton"},{"b":"dataQa","d":"string","e":"setUpSsoButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.accountSettings.learnMoreSSODoc"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"editSsoConfigurationButton"},{"b":"id","d":"string","e":"editSsoConfigurationButton"},{"b":"onClick","d":"function","e":"() => editSSOConfiguration()"},{"b":"isDisabled","d":"expression","e":"!hasLoginSubdomain"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"onClick","d":"function","e":"() => setHideSecretKey((state) => !state)"},{"b":"title","d":"expression","e":"en.accountSettings[hideSecretKey ? \"showKey\" : \"hideKey\"]"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setIsRequestLimitChangeDialogOpen(true)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => history.push(`/support/question`)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"en.overview.eventPortalSection.objectCountHelpLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => history.push(`/account-details/service-limits`)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsRequestUpgradeDialogOpen(true)"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => history.push(`/account-details/users`)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"advancedSettingsButton"},{"b":"onClick","d":"function","e":"() => setIsAdvancedSettingsHidden((x) => !x)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"dataQa","d":"string","e":"deleteAccountButton"},{"b":"onClick","d":"function","e":"() => setIsDeleteAccountDialogOpen(true)"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace.com/contact/"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"href","d":"expression","e":"brandableTextValueConverter(\"insights-notifications\", \"link\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"stopNotification"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"isFetching || mutating"},{"b":"onClick","d":"function","e":"() => setOpenConfirmationDialog(true)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"discardChanges"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"isFetching || !formIsDirty || mutating"},{"b":"onClick","d":"variable","e":"onDiscardChanges"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"expression","e":"NotificationIsActive ? \"updateNotifications\" : \"activateNotifications\""},{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"isFetching || !formIsDirty || mutating"},{"b":"onClick","d":"variable","e":"onSubmission"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"href","d":"expression","e":"brandableTextValueConverter(\"insights-email-integrations\", \"link\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleGotoUserGroups"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"hyperLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"variable","e":"aupIsLoading"},{"b":"onClick","d":"variable","e":"handleAgree"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/totalUsages.json new file mode 100644 index 000000000..6d58c4e59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +109 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..a3efee502 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":109} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/commonProps.json new file mode 100644 index 000000000..8fea15134 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/commonProps.json @@ -0,0 +1 @@ +[{"name":"backgroundColor","count":9},{"name":"dataQa","count":6},{"name":"title","count":5},{"name":"showCloseButton","count":4},{"name":"onClose","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/files.json new file mode 100644 index 000000000..909776384 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/instances.json new file mode 100644 index 000000000..d8f9e4658 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"backgroundColor","d":"string","e":"#ffffff"},{"b":"dataQa","d":"string","e":"brokerSSOCard"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.background.paper"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"drawdownUsage.messages.title"},{"b":"dataQa","d":"string","e":"drawdownUsageFormulaCard"},{"b":"backgroundColor","d":"string","e":"#E6F2FF"},{"b":"onClose","d":"variable","e":"handleCloseDisplayMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.primary.contrastText"},{"b":"dataQa","d":"string","e":"drawdownCard"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"environmentsStr.messages.firstOpenBottomInfoTitle"},{"b":"dataQa","d":"string","e":"environmentFirstUseCardBottom"},{"b":"backgroundColor","d":"string","e":"#E6F2FF"},{"b":"onClose","d":"variable","e":"handleCloseBottomMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"backgroundColor","d":"string","e":"rgba(236, 240, 252, 1)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tMessage Service Alerts & Notification\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"backgroundColor","d":"string","e":"#fff"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"title","d":"string","e":"Who Can Receive Notifications?"},{"b":"dataQa","d":"string","e":"notificationAd"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","c":[{"b":"title","d":"string","e":"Logs Retention"},{"b":"backgroundColor","d":"string","e":"#fff"},{"b":"dataQa","d":"string","e":"logsRetentionCard"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"backgroundColor","d":"string","e":"rgba(236, 240, 252, 1)"},{"b":"showCloseButton","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/usagesByMfe.json new file mode 100644 index 000000000..cce0393e4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCard/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/commonProps.json new file mode 100644 index 000000000..92bce1a84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"onChange","count":27},{"name":"name","count":27},{"name":"checked","count":25},{"name":"dataQa","count":23},{"name":"id","count":21},{"name":"label","count":7},{"name":"readOnly","count":5},{"name":"indeterminate","count":4},{"name":"title","count":4},{"name":"subTextProps","count":2},{"name":"disabled","count":2},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/files.json new file mode 100644 index 000000000..b1995d02f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/instances.json new file mode 100644 index 000000000..c523ae1c8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(readPermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-read`"},{"b":"checked","d":"variable","e":"readChecked"},{"b":"indeterminate","d":"expression","e":"!readChecked && readIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(writePermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-write`"},{"b":"checked","d":"variable","e":"writeChecked"},{"b":"indeterminate","d":"expression","e":"!writeChecked && writeIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"onChange","d":"expression","e":"onPermissionCheckboxChange(permission.id)"},{"b":"name","d":"expression","e":"permission.id"},{"b":"checked","d":"expression","e":"!!isPermissionSelected[permission.id]"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"dataQa","d":"expression","e":"permission.id"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(readPermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-read`"},{"b":"checked","d":"variable","e":"readChecked"},{"b":"indeterminate","d":"expression","e":"!readChecked && readIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(writePermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-write`"},{"b":"checked","d":"variable","e":"writeChecked"},{"b":"indeterminate","d":"expression","e":"!writeChecked && writeIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"id","d":"string","e":"jitProvisionCheckboxId"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t{userGroupManagement.jitProvisionMainText}\n\t\t\t\t\t\t{userGroupManagement.jitProvisionSubText}\n\t\t\t\t\t"},{"b":"name","d":"string","e":"jitProvisionCheckboxId"},{"b":"onChange","d":"function","e":"(e) => setIsJitProvisioningChecked(e.value)"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}"},{"b":"checked","d":"variable","e":"isJitProvisioningChecked"},{"b":"title","d":"string","e":"Enable Just-in-Time provisioning"},{"b":"dataQa","d":"string","e":"jitProvisionCheckboxId"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"dataQa","d":"string","e":"customizeDefaultUserGroupCheckboxId"},{"b":"id","d":"string","e":"customizeDefaultUserGroupCheckboxId"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t{userGroupManagement.customizeGroupMainText}\n\t\t\t\t\t\t{userGroupManagement.customizeGroupSubText}\n\t\t\t\t\t"},{"b":"name","d":"string","e":"customizeDefaultUserGroupCheckboxId"},{"b":"checked","d":"variable","e":"isCustomizeUserGroupChecked"},{"b":"onChange","d":"function","e":"(e) => customizeDefaultUserGroupCheck(e.value)"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{isCustomizeUserGroupChecked ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titemMappingCallback={(option) => option}\n\t\t\t\t\t\t\t\t\toptionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}\n\t\t\t\t\t\t\t\t\tonChange={handleUserGroupSelectChange}\n\t\t\t\t\t\t\t\t\tfetchOptionsCallback={handleFetchProtocolOptionsCallback}\n\t\t\t\t\t\t\t\t\tisOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}\n\t\t\t\t\t\t\t\t\twidth=\"30rem\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}"},{"b":"title","d":"string","e":"Customize Default UserGroup"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scOutage\"].email : false"},{"b":"id","d":"string","e":"scOutageEmail"},{"b":"name","d":"string","e":"scOutageEmail"},{"b":"dataQa","d":"string","e":"scOutageEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scOutage\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scOutage\"].console : false"},{"b":"id","d":"string","e":"scOutageConsole"},{"b":"name","d":"string","e":"scOutageConsole"},{"b":"dataQa","d":"string","e":"scOutageConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scOutage\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scMaintenance\"].email : false"},{"b":"id","d":"string","e":"scMaintenanceEmail"},{"b":"name","d":"string","e":"scMaintenanceEmail"},{"b":"dataQa","d":"string","e":"scMaintenanceEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scMaintenance\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scMaintenance\"].console : false"},{"b":"id","d":"string","e":"scMaintenanceConsole"},{"b":"name","d":"string","e":"scMaintenanceConsole"},{"b":"dataQa","d":"string","e":"scMaintenanceConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scMaintenance\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceOutage\"].email : false"},{"b":"id","d":"string","e":"serviceOutageEmail"},{"b":"name","d":"string","e":"serviceOutageEmail"},{"b":"dataQa","d":"string","e":"serviceOutageEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceOutage\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceOutage\"].console : false"},{"b":"id","d":"string","e":"serviceOutageConsole"},{"b":"name","d":"string","e":"serviceOutageConsole"},{"b":"dataQa","d":"string","e":"serviceOutageConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceOutage\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceMaintenance\"].email : false"},{"b":"id","d":"string","e":"serviceMaintenanceEmail"},{"b":"name","d":"string","e":"serviceMaintenanceEmail"},{"b":"dataQa","d":"string","e":"serviceMaintenanceEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceMaintenance\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceMaintenance\"].console : false"},{"b":"id","d":"string","e":"serviceMaintenanceConsole"},{"b":"name","d":"string","e":"serviceMaintenanceConsole"},{"b":"dataQa","d":"string","e":"serviceMaintenanceConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceMaintenance\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessApprover\"].email : false"},{"b":"id","d":"string","e":"scEpEventAccessApproverEmail"},{"b":"name","d":"string","e":"scEpEventAccessApproverEmail"},{"b":"dataQa","d":"string","e":"scEpEventAccessApproverEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessApprover\"].console : false"},{"b":"id","d":"string","e":"scEpEventAccessApproverConsole"},{"b":"name","d":"string","e":"scEpEventAccessApproverConsole"},{"b":"dataQa","d":"string","e":"scEpEventAccessApproverConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].email : false"},{"b":"id","d":"string","e":"scEpEventAccessRequestorEmail"},{"b":"name","d":"string","e":"scEpEventAccessRequestorEmail"},{"b":"dataQa","d":"string","e":"scEpEventAccessRequestorEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].console : false"},{"b":"id","d":"string","e":"scEpEventAccessRequestorConsole"},{"b":"name","d":"string","e":"scEpEventAccessRequestorConsole"},{"b":"dataQa","d":"string","e":"scEpEventAccessRequestorConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings?.[\"scInfo\"].email : false"},{"b":"id","d":"string","e":"scInfoEmail"},{"b":"name","d":"string","e":"scInfoEmail"},{"b":"dataQa","d":"string","e":"scInfoEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scInfo\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings?.[\"scInfo\"].console : false"},{"b":"id","d":"string","e":"scInfoConsole"},{"b":"name","d":"string","e":"scInfoConsole"},{"b":"dataQa","d":"string","e":"scInfoConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scInfo\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings?.[\"marketing\"]?.email : false"},{"b":"id","d":"string","e":"marketingEmail"},{"b":"name","d":"string","e":"marketingEmail"},{"b":"dataQa","d":"string","e":"marketingEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"marketing\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"serviceCreationCheckbox"},{"b":"label","d":"expression","e":"en.environments.labels.confirmASEnvironment"},{"b":"name","d":"string","e":"serviceCreationCheckbox"},{"b":"onChange","d":"variable","e":"handleCheckboxChange"},{"b":"checked","d":"variable","e":"isServiceCreationAllowed"},{"b":"dataQa","d":"string","e":"serviceCreationCheckbox"},{"b":"disabled","d":"expression","e":"isError || dialogState.updating"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"key","d":"variable","e":"templateType"},{"b":"name","d":"variable","e":"templateType"},{"b":"dataQa","d":"expression","e":"`${templateType}Checkbox`"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t{environments.configurationTemplates[templateType].label}\n\t\t\t\t\t\t"},{"b":"onChange","d":"variable","e":"updateTemplateTypeEnforcement"},{"b":"checked","d":"expression","e":"templateStatus.isEnforced"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"id","d":"string","e":"confirmDeleteCheckbox"},{"b":"label","d":"expression","e":"en.environments.labels.confirmDeleteEnvironment"},{"b":"name","d":"string","e":"confirmDeleteCheckbox"},{"b":"onChange","d":"variable","e":"handleConfirmDelete"},{"b":"checked","d":"variable","e":"confirmDelete"},{"b":"dataQa","d":"string","e":"confirmDeleteCheckbox"},{"b":"disabled","d":"variable","e":"isDeleting"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"id","d":"string","e":"eventMeshCheckbox"},{"b":"dataQa","d":"string","e":"eventMeshCheckbox"},{"b":"label","d":"expression","e":"en.overview.banner.eventMesh"},{"b":"name","d":"string","e":"eventMeshCheckbox"},{"b":"onChange","d":"function","e":"(e) => setIsEventMeshFeatureChecked(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.eventMesh"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"id","d":"string","e":"eventPortalCheckbox"},{"b":"dataQa","d":"string","e":"eventPortalCheckbox"},{"b":"label","d":"expression","e":"en.overview.banner.eventPortal"},{"b":"name","d":"string","e":"eventPortalCheckbox"},{"b":"onChange","d":"function","e":"(e) => setIsEventPortalFeatureChecked(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.eventPortal"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/totalUsages.json new file mode 100644 index 000000000..a5c750fea --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/totalUsages.json @@ -0,0 +1 @@ +27 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/usagesByMfe.json new file mode 100644 index 000000000..edcd119bf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCheckBox/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":27} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/commonProps.json new file mode 100644 index 000000000..b7b658e74 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":6},{"name":"key","count":4},{"name":"maxWidth","count":4},{"name":"variant","count":1},{"name":"labelColor","count":1},{"name":"fillColor","count":1},{"name":"height","count":1},{"name":"onDelete","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/files.json new file mode 100644 index 000000000..6ac3334bb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/instances.json new file mode 100644 index 000000000..5fc576e84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","c":[{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"labelColor","d":"expression","e":"chipProps.labelColor"},{"b":"fillColor","d":"expression","e":"chipProps.fillColor"},{"b":"height","d":"string","e":"md"},{"b":"label","d":"jsx","e":"{chipProps.label}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"label","d":"expression","e":"filter.name + \" : \" + filter.value"},{"b":"onDelete","d":"function","e":"() => deleteFilter(filter.key)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"label","d":"expression","e":"user.email"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"dialogState.user?.email"},{"b":"label","d":"expression","e":"dialogState.user?.email"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"dialogState.user?.email"},{"b":"label","d":"expression","e":"dialogState.user?.email"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"group.id"},{"b":"label","d":"expression","e":"group.name"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/usagesByMfe.json new file mode 100644 index 000000000..8acbb71f7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceChip/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..063e90428 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":2},{"name":"size","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/files.json new file mode 100644 index 000000000..6a0407b09 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..69db58060 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"variable","e":"size"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..8acbb71f7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..568d407f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"actions","count":34},{"name":"title","count":33},{"name":"isOpen","count":33},{"name":"maxWidth","count":18},{"name":"linearProgressIndicator","count":11},{"name":"contentText","count":4},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..a6e1ae1ba --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..3cc0c620d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"title","d":"expression","e":"en.brokerSSOConfig.dialog.title"},{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: \"outline\" }\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"lg"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"expression","e":"en.tokens.text.deleteToken.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmDeleteTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"expression","e":"en.tokens.text.copyToken.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\t\tvariant: isCopied ? \"outline\" : \"call-to-action\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tisDisabled: !isCopied,\n\t\t\t\t\t\tdataQa: \"closeTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"!!errorMessage"},{"b":"title","d":"expression","e":"en.tokens.text.genericError.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"expression","e":"en.tokens.text.regenerateToken.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Regenerate\",\n\t\t\t\t\t\tonClick: handleRegenerate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmRegenerateTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"title","d":"expression","e":"en.viewMessageSpoolDetails.dialog.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.viewMessageSpoolDetails.buttons.close,\n\t\t\t\t\tonClick: onClose,\n\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"title","d":"expression","e":"`Change Request - ${editLimitsRow.name}`"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => setEditLimitsRow(null),\n\t\t\t\t\t\t\tisDisabled: submittingTicket\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.serviceLimits.buttons.sendRequest,\n\t\t\t\t\t\t\tonClick: onSubmit,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"submittingTicket"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: cancelButtonLabel || userGroupManagement.cancel,\n\t\t\t\t\tonClick: cancelHandler,\n\t\t\t\t\tdataQa: \"cancelNotificationHandlerQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionButtonLabel,\n\t\t\t\t\tid: \"notificationModalActionButton\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: actionHandler,\n\t\t\t\t\tdataQa: \"notificationModalActionButton\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"userGroupManagement.removeClaimMapping"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.cancel,\n\t\t\t\t\tonClick: () => setIsClaimMappingRemoveDialogOpen(false),\n\t\t\t\t\tdataQa: \"cancelClaimMappingQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.remove,\n\t\t\t\t\tid: \"deleteClaimMappingId\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: deleteClaimMapping,\n\t\t\t\t\tdataQa: \"deleteClaimMappingQa\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"isOpen","d":"expression","e":"confirmDialogOpen || errorDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error"},{"b":"linearProgressIndicator","d":"variable","e":"submittingTicket"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: supportPage.dialog.close,\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tdataQa: \"supportTicketModelOKButton\",\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"title","d":"expression","e":"environmentsStr.labels.ASEnvironment"},{"b":"linearProgressIndicator","d":"variable","e":"isUpdating"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleCloseDialog\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.save,\n\t\t\t\t\tid: \"deleteButton\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdateEnvironment,\n\t\t\t\t\tisDisabled: isError || isUpdating\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"expression","e":"dialogState.type === \"create\"\n\t\t\t\t\t? en.environments.labels.createEnvironment\n\t\t\t\t\t: en.environments.labels.editEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? en.environments.button.create : en.common.buttons.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled:\n\t\t\t\t\t\tisDuplicate || isLoading || hasError || hasDescError || (dialogState.type === \"create\" ? false : !isEdited)\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.environments.labels.deleteEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"messages.menuLabel"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"messages.menuLabel"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"cancelConfigurationTemplatesDialog\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tdataQa: \"applyConfigurationTemplatesDialog\",\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.environments.labels.deleteEnvironment"},{"b":"linearProgressIndicator","d":"variable","e":"isDeleting"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: !confirmDelete || isDeleting\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"title","d":"expression","e":"dialogState.type === \"create\" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? userGroups.ugDialog.create : userGroups.ugDialog.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,\n\t\t\t\t\tdataQa: \"ugDialogSaveQa\"\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"xl\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"userGroups.ugDeleteDialog.deleteUG"},{"b":"linearProgressIndicator","d":"variable","e":"isDeleting"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.cancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: isError || isDeleting,\n\t\t\t\t\tdataQa: \"ugDialogDeleteQa\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"actions","d":"variable","e":"actions"},{"b":"contentText","d":"variable","e":"undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.privateRegions.labels.new"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: onClose\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.privateRegions.button.sendRequest,\n\t\t\t\t\t\tonClick: onRequest,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tisDisabled: loading\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"environments.moveDialogLabels.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"move-datacenter-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.move,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-datacenter-ok\",\n\t\t\t\t\tonClick: handleMove,\n\t\t\t\t\tisDisabled: !!errors.environment\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"isOpen","d":"expression","e":"downloadDialog.errorDialogOpen"},{"b":"title","d":"expression","e":"en.privateRegions.labels.downloadFailed"},{"b":"actions","d":"array","e":"[{ label: \"OK\", onClick: handleCloseDialog }]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"title","d":"expression","e":"tracingSynchDialog.title"},{"b":"contentText","d":"expression","e":"tracingSynchDialog.contentText"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: close\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"title","d":"expression","e":"mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit"},{"b":"contentText","d":"expression","e":"tracingProfile.contentText"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"linearProgressIndicator","d":"variable","e":"modifyingTracingProfile"},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"title","d":"expression","e":"tracingProfile.title.details"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: tracingProfile.button.close,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.accountSettings[cannotTestSso ? \"testSsoConfigError\" : \"testSsoConfig\"]"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[cannotTestSso ? \"close\" : \"cancel\"],\n\t\t\t\t\t\tonClick: cancelSsoTest\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.test,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: testSsoConfiguration,\n\t\t\t\t\t\tisDisabled: cannotTestSso\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.accountSettings.enableSsoConfig"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelEnableSso\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.activate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: enableSsoConfiguration\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.accountSettings.setUpSso"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.cancel,\n\t\t\t\t\t\tonClick: cancelSsoSetup\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.sendRequest,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: sendSsoSetupRequest,\n\t\t\t\t\t\tisDisabled: !canSendRequest || submittingTicket,\n\t\t\t\t\t\tdataQa: \"sendRequestButton\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"xl"},{"b":"title","d":"expression","e":"en.accountSettings.configureSsoSettings"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelConfigureSettings\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.save,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: saveStagedSsoConfiguration,\n\t\t\t\t\t\tisDisabled: !canSaveSettings\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"isOpen","d":"variable","e":"isRequestLimitChangeDialogOpen"},{"b":"title","d":"expression","e":"en.overview.eventPortalSection.requestLimitChangeDialogTitle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.close,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeCloseAction\",\n\t\t\t\t\t\t\tonClick: onCloseRequestLimitChange\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.sendRequest,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeSendRequestAction\",\n\t\t\t\t\t\t\tonClick: onRequestLimitChange,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: !limitRequestNumber\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"isOpen","d":"variable","e":"isRequestUpgradeDialogOpen"},{"b":"title","d":"expression","e":"en.overview.banner.dialogTitle"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.cancel,\n\t\t\t\t\t\tdataQa: \"requestUpgradeCloseAction\",\n\t\t\t\t\t\tonClick: onCloseRequestUpgradeDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.sendRequest,\n\t\t\t\t\t\tdataQa: \"requestUpgradeSendRequestAction\",\n\t\t\t\t\t\tonClick: RequestUpgradeHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\t(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||\n\t\t\t\t\t\t\t(!!contactEmail && !isValidEmail(contactEmail))\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"isOpen","d":"variable","e":"isDeleteAccountDialogOpen"},{"b":"title","d":"expression","e":"en.overview.advancedSettingsSection.deleteAccountQuestion"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.cancel,\n\t\t\t\t\t\tdataQa: \"cancelDeleteAccountButton\",\n\t\t\t\t\t\tonClick: onCloseDeleteAccountDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.delete,\n\t\t\t\t\t\tdataQa: \"confirmDeleteAccountButton\",\n\t\t\t\t\t\tonClick: deleteAccountHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled: !password\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"title","d":"string","e":"Deactivate Service Notifications"},{"b":"contentText","d":"string","e":"Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed."},{"b":"isOpen","d":"variable","e":"openConfirmationDialog"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", dataQa: \"cancel\", onClick: () => setOpenConfirmationDialog(false), variant: \"text\" },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Deactivate\",\n\t\t\t\t\t\tdataQa: \"deactivate\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tstopNotifications();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..3e932fe8f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +34 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..47f26f5f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":34} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/commonProps.json new file mode 100644 index 000000000..e57415512 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"onClear","count":1},{"name":"onChange","count":1},{"name":"variant","count":1},{"name":"disableFuture","count":1},{"name":"value","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/files.json new file mode 100644 index 000000000..8c4a3356a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/instances.json new file mode 100644 index 000000000..1a2a8f942 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClear","d":"function","e":"() => clearSelectedDate()"},{"b":"onChange","d":"variable","e":"setSelectedDate"},{"b":"variant","d":"expression","e":"SolaceDatePickerVariant.FORMAT_MONTH_YEAR"},{"b":"disableFuture","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedDate"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDatePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/commonProps.json new file mode 100644 index 000000000..720957c01 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/commonProps.json @@ -0,0 +1 @@ +[{"name":"details","count":3},{"name":"msgImg","count":3},{"name":"title","count":3},{"name":"actions","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/files.json new file mode 100644 index 000000000..e312ca49b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/instances.json new file mode 100644 index 000000000..185a9082a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","c":[{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.subTitle}\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.message}\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.noDrawdownUsage.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tchildren: drawdownUsage.noDrawdownUsage.contactUs,\n\t\t\t\t\t\tid: \"contactUs-btn\",\n\t\t\t\t\t\tonClick: () => toggleContactUsModalOpenState(),\n\t\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"details","d":"expression","e":"drawdownUsage.noDrawdownUsage.noDrawdownUsageSub"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.noDrawdownUsage.noDrawdownUsage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{supportPage.freeTrialDescription}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt2}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"supportPage.freeTrialTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/usagesByMfe.json new file mode 100644 index 000000000..011eb4c54 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDetailMessage/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/commonProps.json new file mode 100644 index 000000000..f3f286ec0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":1},{"name":"resizable","count":1},{"name":"top","count":1},{"name":"width","count":1},{"name":"maxWidth","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/files.json new file mode 100644 index 000000000..8c2332216 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/instances.json new file mode 100644 index 000000000..4d9589a7f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"open","d":"expression","e":"!!rowDetails"},{"b":"resizable","d":"boolean","e":"true"},{"b":"top","d":"string","e":"10.65%"},{"b":"width","d":"number","e":"400"},{"b":"maxWidth","d":"number","e":"500"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceDrawer/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/commonProps.json new file mode 100644 index 000000000..7705751c5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":1},{"name":"fgColor","count":1},{"name":"bgColor","count":1},{"name":"icon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/files.json new file mode 100644 index 000000000..4d6bcb39b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/instances.json new file mode 100644 index 000000000..c576ca68f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"label","d":"expression","e":"dialogState.name || \"Environment Name\""},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"expression","e":"Icons16[dialogState.icon as SolaceEnvironmentIcons]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentChip/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/commonProps.json new file mode 100644 index 000000000..5a0d0e4ff --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":6},{"name":"fgColor","count":6},{"name":"bgColor","count":6},{"name":"icon","count":6},{"name":"variant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/files.json new file mode 100644 index 000000000..da103fdf7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/instances.json new file mode 100644 index 000000000..26e89affb --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"label","d":"expression","e":"\"\""},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"expression","e":"Icons16[dialogState.icon as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"title"},{"b":"label","d":"expression","e":"environment.name"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"icon","d":"expression","e":"Icons16[environment.icon as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"label","d":"expression","e":"testItem.name"},{"b":"bgColor","d":"expression","e":"testItem.bgColor ?? \"#FFFFFF\""},{"b":"fgColor","d":"expression","e":"testItem.fgColor ?? \"#000000\""},{"b":"icon","d":"expression","e":"Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"label","d":"expression","e":"testItem.name"},{"b":"bgColor","d":"expression","e":"testItem.bgColor ?? \"#FFFFFF\""},{"b":"fgColor","d":"expression","e":"testItem.fgColor ?? \"#000000\""},{"b":"icon","d":"expression","e":"Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"label","d":"expression","e":"env.name"},{"b":"fgColor","d":"expression","e":"env.fgColor ?? \"#000000\""},{"b":"bgColor","d":"expression","e":"env.bgColor ?? \"#FFFFFF\""},{"b":"icon","d":"expression","e":"Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"label","d":"variable","e":"name"},{"b":"fgColor","d":"expression","e":"fgColor ?? \"#000000\""},{"b":"bgColor","d":"expression","e":"bgColor ?? \"#FFFFFF\""},{"b":"icon","d":"expression","e":"Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/usagesByMfe.json new file mode 100644 index 000000000..8acbb71f7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceEnvironmentLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/commonProps.json new file mode 100644 index 000000000..d3407a11c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":2},{"name":"showErrorIcon","count":1},{"name":"showCloseButton","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/files.json new file mode 100644 index 000000000..14985f61b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/instances.json new file mode 100644 index 000000000..d3fe60a64 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"showErrorIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setErrorMessage(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"message","d":"variable","e":"errorMessageWhileSavingSettings"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceErrorBox/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/commonProps.json new file mode 100644 index 000000000..c988f4033 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/commonProps.json @@ -0,0 +1 @@ +[{"name":"item","count":44},{"name":"xs","count":34},{"name":"container","count":21},{"name":"spacing","count":10},{"name":"style","count":7},{"name":"mt","count":7},{"name":"direction","count":5},{"name":"sx","count":5},{"name":"alignItems","count":3},{"name":"key","count":2},{"name":"mr","count":2},{"name":"textAlign","count":1},{"name":"justifyContent","count":1},{"name":"paddingTop","count":1},{"name":"marginTop","count":1},{"name":"className","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/files.json new file mode 100644 index 000000000..b8cd69a27 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/instances.json new file mode 100644 index 000000000..5cdae3b3b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"textAlign","d":"expression","e":"\"end\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"expression","e":"\"column\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"item","d":"variable","e":"isParentCategory"},{"b":"key","d":"expression","e":"permission.id"},{"b":"paddingTop","d":"expression","e":"theme.spacing(0.5)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"style","d":"variable","e":"categoryDetailsSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"style","d":"variable","e":"categoryDetailsSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"variable","e":"categoryDetailsSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"categoryName"},{"b":"style","d":"object","e":"{ padding: theme.spacing(0.25) }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"},{"b":"style","d":"variable","e":"permissionTitleSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"style","d":"variable","e":"bulkPermissionCheckboxStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"style","d":"variable","e":"bulkPermissionCheckboxStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"marginTop","d":"expression","e":"categoryName ? theme.spacing(0.5) : theme.spacing(0.25)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"expression","e":"\"column\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10.8"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"className","d":"string","e":"readWrite"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"9"},{"b":"mt","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mr","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mr","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1.4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10.6"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"spacing","d":"number","e":"3"},{"b":"container","d":"boolean","e":"true"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mt","d":"number","e":"1.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ padding: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ padding: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ padding: 4 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/totalUsages.json new file mode 100644 index 000000000..d7765fe47 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/totalUsages.json @@ -0,0 +1 @@ +70 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/usagesByMfe.json new file mode 100644 index 000000000..2481d1ebd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGrid/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":70} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/commonProps.json new file mode 100644 index 000000000..dffda4e02 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":6},{"name":"rowMapping","count":6},{"name":"gridTemplate","count":6},{"name":"dataQa","count":6},{"name":"headers","count":5},{"name":"numOfGridListItemDisplayed","count":2},{"name":"onSelection","count":1},{"name":"selectedItemId","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/files.json new file mode 100644 index 000000000..071923e15 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/instances.json new file mode 100644 index 000000000..dec9ff0b7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"expression","e":"getServiceLimits() as LimitsData[]"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(false)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"serviceLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"expression","e":"convertMsgSpoolLimits()"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(true)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"msgSpoolLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"variable","e":"sapAddonLimitsData"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(false)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"erpLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"expression","e":"convertConnectorLimits()"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(false)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"connectorsLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"items","d":"expression","e":"environments ? environments : []"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"onSelection","d":"variable","e":"handleRowSelection"},{"b":"rowMapping","d":"variable","e":"withActionColumnMapping"},{"b":"selectedItemId","d":"expression","e":"isSidePanelOpen ? selectedId : 0"},{"b":"gridTemplate","d":"string","e":"minmax(350px, 2fr) 200px 200px 200px 24px"},{"b":"dataQa","d":"string","e":"environmentGridList"},{"b":"numOfGridListItemDisplayed","d":"expression","e":"gridRowMaxVisible()"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"items","d":"expression","e":"_.concat(outOfSyncServices, syncedServices)"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"string","e":"minmax(350px, 2fr) 120px 24px"},{"b":"numOfGridListItemDisplayed","d":"number","e":"10"},{"b":"dataQa","d":"string","e":"out-of-sync-collectors"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..8acbb71f7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/commonProps.json new file mode 100644 index 000000000..9507b012b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":9},{"name":"required","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/files.json new file mode 100644 index 000000000..f1bbabe16 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/instances.json new file mode 100644 index 000000000..453c42439 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceType"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"nameHeader"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"typeHeader"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"accessHeader"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"expression","e":"\"resourceAssignmentListLoading\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"id","d":"string","e":"activeStorageAddOns"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"id","d":"string","e":"unusedStorage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"current-environment-label"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/totalUsages.json new file mode 100644 index 000000000..9d607966b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/totalUsages.json @@ -0,0 +1 @@ +11 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/usagesByMfe.json new file mode 100644 index 000000000..c6a633de7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":11} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/commonProps.json new file mode 100644 index 000000000..e78fb4cdf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":2},{"name":"dense","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/files.json new file mode 100644 index 000000000..5daff2514 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/instances.json new file mode 100644 index 000000000..f3603a4e4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ p: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ li: { listStyleType: \"disc\" } }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceList/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/commonProps.json new file mode 100644 index 000000000..413830706 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/files.json new file mode 100644 index 000000000..5daff2514 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/instances.json new file mode 100644 index 000000000..d12f4d071 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/usagesByMfe.json new file mode 100644 index 000000000..ea2635ad5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceListItem/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/commonProps.json new file mode 100644 index 000000000..619289f7e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":8},{"name":"items","count":8},{"name":"anchorOrigin","count":5},{"name":"transformOrigin","count":5},{"name":"dataQa","count":3},{"name":"id","count":3},{"name":"dataTags","count":1},{"name":"numOfMenuItemDisplayed","count":1},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/files.json new file mode 100644 index 000000000..b46715ddf --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/instances.json new file mode 100644 index 000000000..87d397068 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\t\tisDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === \"unsupported\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"actionItems"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: `${token.name}-menu`,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More\"\n\t\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `View Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onViewToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-view`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Regenerate Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onRegenerateToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-regenerate`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Delete Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onDeleteToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-delete`\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"msg-spool-menu"},{"b":"id","d":"string","e":"msg-spool-menu"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.requestLimitChange,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"msg-spool-menu"},{"b":"id","d":"string","e":"msg-spool-menu"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"claimMappingActions"},{"b":"dataTags","d":"string","e":"claimMappingActions"},{"b":"id","d":"string","e":"claimMappingActions"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.edit,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),\n\t\t\t\t\t\t\t\tdisabled: groupMappingState\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.remove,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => removeClaimMappingHandler(rowData.id)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]"},{"b":"numOfMenuItemDisplayed","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"items","d":"variable","e":"items"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: `${environmentsStr.environmentList.moreActionLabel}`,\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"environmentMoreActions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"key","d":"expression","e":"`${item.serviceId}-menu`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tService Details\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t\tonMenuItemClick: () => window.open(`/services/${item.serviceId}`, \"_blank\")?.focus()\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: \n\t\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..d74727c3b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/commonProps.json new file mode 100644 index 000000000..aaca31724 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":33},{"name":"message","count":33},{"name":"dataQa","count":8},{"name":"showCloseButton","count":5},{"name":"onClose","count":3},{"name":"dense","count":3},{"name":"showIcon","count":2},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/files.json new file mode 100644 index 000000000..a6d88e883 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/instances.json new file mode 100644 index 000000000..800160ef3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"message","d":"variable","e":"error"},{"b":"onClose","d":"function","e":"() => setError(null)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} \n\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.brokerSsoSetup}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.viewSettings}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","c":[{"b":"message","d":"expression","e":"en.tokens.text.thisCannotBeUndone"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","c":[{"b":"message","d":"expression","e":"en.tokens.text.anyApplicationsOrScriptsUsingThisToken"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{en.tokens.text.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.tokens.text.learnMore}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"en.viewMessageSpoolDetails.dialog.info"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"message","d":"expression","e":"userGroupManagement.noAdminMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t{userGroupManagement.saveChangesText}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{userGroupManagement.testAccess}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"message","d":"expression","e":"userGroupManagement.jitInfoMessage"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.environments.errors.duplicateName"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.environments.createDialogLabels.error.typeRequired"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"en.environments.createDialogLabels.info.typeCannotBeChanged"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenTopInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenBottomInfoLearnMore}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
"},{"b":"dataQa","d":"string","e":"environmentFirstUseCardTop"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseTopMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"messages.warning"},{"b":"dataQa","d":"string","e":"configurationTemplateWarning"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"deleteError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t{en.environments.labels.deleteDialogMessage}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn more in the documentation\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"message","d":"expression","e":"en.forgotPassword.errorSendingResetEmail"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","c":[{"b":"message","d":"expression","e":"en.notifications.fetchingNotificationsErrorNotLoggedIn"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t{en.privateRegions.emaInfoBanner.title}{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.privateRegions.emaInfoBanner.linkText}\n\t\t\t\t\t\n\t\t\t\t"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.learnMore}\n\t\t\t\t\n\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{outOfSynchMessageBox.outOfDate({\n\t\t\t\t\t\t\t\t\toutOfSynchServices: outOfSynchServices.length,\n\t\t\t\t\t\t\t\t\tassociatedServices: associateServicesCount\n\t\t\t\t\t\t\t\t})}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setSynchTracingDialog(true)}>\n\t\t\t\t\t\t\t\t\t\t{outOfSynchMessageBox.viewServices}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"message","d":"expression","e":"tracingLimits.errorMessage.retrieve"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorRetrievingTracingLimits"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"message","d":"expression","e":"tracingProfile.errorMessage.delete"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorDeletingTracingDestination"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"message","d":"expression","e":"tracingProfile.errorMessage.retrieve"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorRetrievingTracingDestinations"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"dataQa","d":"string","e":"failed-to-synch"},{"b":"key","d":"expression","e":"item.serviceId"},{"b":"message","d":"expression","e":"tracingSynchDialog.error(item.serviceName)"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.link.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"infoBox"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"message","d":"expression","e":"en.accountSettings.configNotComplete"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"message","d":"expression","e":"en.accountSettings.configNotYetApplied"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.overview.banner.WE_HIT_AN_ISSUE"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{text + \" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{link}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tI Agree\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/totalUsages.json new file mode 100644 index 000000000..dc7b54ad0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/totalUsages.json @@ -0,0 +1 @@ +33 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/usagesByMfe.json new file mode 100644 index 000000000..dc64949fc --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceMessageBox/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":33} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..e70ffcff0 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":2},{"name":"environment","count":1},{"name":"borderTop","count":1},{"name":"tabs","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/files.json new file mode 100644 index 000000000..4ac4b08f7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/instances.json new file mode 100644 index 000000000..c8cc77c59 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"title","d":"string","e":"Page Title"},{"b":"environment","d":"jsx","e":""},{"b":"borderTop","d":"variable","e":"bgColor"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx","c":[{"b":"title","d":"expression","e":"en.accountDetails.userSettings.settings"},{"b":"tabs","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/commonProps.json new file mode 100644 index 000000000..1b0f00308 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"totalResults","count":6},{"name":"pageSize","count":6},{"name":"activePage","count":6},{"name":"onPageSelection","count":6},{"name":"loading","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/files.json new file mode 100644 index 000000000..0d27e6ece --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/instances.json new file mode 100644 index 000000000..51531219f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"activePage","d":"expression","e":"meta?.pagination.pageNumber + 1"},{"b":"onPageSelection","d":"function","e":"(page) => fetchNewPage(page)"},{"b":"totalResults","d":"expression","e":"meta?.pagination.totalHitCount"},{"b":"pageSize","d":"expression","e":"meta?.pagination.pageSize"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"activePage","d":"number","e":"1"},{"b":"pageSize","d":"number","e":"10"},{"b":"totalResults","d":"expression","e":"rows.length"},{"b":"onPageSelection","d":"function","e":"() => undefined"},{"b":"loading","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"activePage","d":"expression","e":"notificationsResponse?.meta?.pageNumber + 1"},{"b":"onPageSelection","d":"function","e":"(page) => {\n\t\t\t\t\t\t\t\t\tsetPageNumber(page);\n\t\t\t\t\t\t\t\t}"},{"b":"totalResults","d":"expression","e":"notificationsResponse?.meta?.count"},{"b":"pageSize","d":"expression","e":"notificationsResponse?.meta?.pageSize"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"activePage","d":"variable","e":"userTablePage"},{"b":"pageSize","d":"variable","e":"USER_LIST_DATA_PER_PAGE"},{"b":"totalResults","d":"expression","e":"pageCount || 0"},{"b":"onPageSelection","d":"function","e":"(page) => setUserTablePage(page)"},{"b":"loading","d":"boolean","e":"false"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..8acbb71f7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/commonProps.json new file mode 100644 index 000000000..3282265f3 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":2},{"name":"label","count":2},{"name":"variant","count":2},{"name":"value","count":2},{"name":"onChange","count":2},{"name":"icons","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/files.json new file mode 100644 index 000000000..4d6bcb39b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/instances.json new file mode 100644 index 000000000..66d088047 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"name","d":"string","e":"color"},{"b":"label","d":"string","e":"Color"},{"b":"variant","d":"string","e":"colors"},{"b":"value","d":"expression","e":"dialogState.color"},{"b":"onChange","d":"variable","e":"handleEnvColorChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"name","d":"string","e":"icon"},{"b":"label","d":"string","e":"Icon"},{"b":"variant","d":"string","e":"icons"},{"b":"value","d":"expression","e":"dialogState.icon"},{"b":"onChange","d":"variable","e":"handleEnvIconChange"},{"b":"icons","d":"variable","e":"Icons24"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolacePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/commonProps.json new file mode 100644 index 000000000..071282a5f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/commonProps.json @@ -0,0 +1 @@ +[{"name":"key","count":3},{"name":"value","count":3},{"name":"name","count":3},{"name":"label","count":3},{"name":"id","count":2},{"name":"subText","count":2},{"name":"disabled","count":2},{"name":"checked","count":1},{"name":"onChange","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/files.json new file mode 100644 index 000000000..f7969e690 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/instances.json new file mode 100644 index 000000000..e8c8ef57e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"key","d":"string","e":"nonprod"},{"b":"id","d":"string","e":"nonprod"},{"b":"value","d":"expression","e":"\"false\""},{"b":"name","d":"string","e":"isProduction"},{"b":"label","d":"variable","e":"nonProductionLabel"},{"b":"subText","d":"expression","e":"en.environments.labels.nonProdSubText"},{"b":"disabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"key","d":"string","e":"prod"},{"b":"id","d":"string","e":"prod"},{"b":"value","d":"expression","e":"\"true\""},{"b":"name","d":"string","e":"isProduction"},{"b":"label","d":"variable","e":"productionLabel"},{"b":"subText","d":"expression","e":"en.environments.labels.prodSubText"},{"b":"disabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"checked","d":"expression","e":"resultPerPage === selectedPageSize"},{"b":"onChange","d":"function","e":"() => handleResultsPerPageChange(resultPerPage)"},{"b":"key","d":"expression","e":"`resultsPerPage_${resultPerPage}`"},{"b":"name","d":"string","e":"resultsPerPage"},{"b":"value","d":"expression","e":"`${resultPerPage}`"},{"b":"label","d":"expression","e":"`${resultPerPage}`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/usagesByMfe.json new file mode 100644 index 000000000..4acb5cb57 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadio/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/commonProps.json new file mode 100644 index 000000000..e24f363f8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":1},{"name":"name","count":1},{"name":"required","count":1},{"name":"bold","count":1},{"name":"value","count":1},{"name":"onChange","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/files.json new file mode 100644 index 000000000..4d6bcb39b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/instances.json new file mode 100644 index 000000000..a956ec276 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"id","d":"string","e":"isProduction"},{"b":"name","d":"string","e":"isProduction"},{"b":"required","d":"boolean","e":"true"},{"b":"bold","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"getIsProductionValue(dialogState.isProduction)"},{"b":"onChange","d":"variable","e":"handleEnvProductionChange"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceRadioGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/commonProps.json new file mode 100644 index 000000000..457432c81 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":10},{"name":"value","count":10},{"name":"onChange","count":10},{"name":"id","count":5},{"name":"dataQa","count":5},{"name":"label","count":5},{"name":"title","count":5},{"name":"helperText","count":5},{"name":"hasErrors","count":4},{"name":"readOnly","count":3},{"name":"disabled","count":2},{"name":"width","count":1},{"name":"required","count":1},{"name":"getOptionDisplayValue","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/files.json new file mode 100644 index 000000000..bbbb77333 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/instances.json new file mode 100644 index 000000000..151560821 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceRoleSelect"},{"b":"name","d":"string","e":"resourceRoleSelect"},{"b":"dataQa","d":"string","e":"resourceRoleSelect"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"value","d":"variable","e":"role"},{"b":"onChange","d":"function","e":"(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.timeRange"},{"b":"name","d":"string","e":"timeRange"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Time Range"},{"b":"value","d":"expression","e":"filters.timeRange.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.status"},{"b":"name","d":"string","e":"status"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Status"},{"b":"value","d":"expression","e":"filters.status.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.category"},{"b":"name","d":"string","e":"category"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Category"},{"b":"value","d":"expression","e":"filters.category.value"},{"b":"id","d":"string","e":"categoryFilter"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"disabled","d":"expression","e":"!filters.category.value"},{"b":"label","d":"expression","e":"en.auditLogs.event"},{"b":"name","d":"string","e":"event"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Event"},{"b":"value","d":"expression","e":"filters.event.value"},{"b":"helperText","d":"expression","e":"!filters.category.value ? en.auditLogs.selectCategory : \"\""},{"b":"id","d":"string","e":"eventFilter"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"width","d":"string","e":"20rem"},{"b":"id","d":"string","e":"userGroupDropdownId"},{"b":"name","d":"string","e":"userGroupDropdown"},{"b":"dataQa","d":"string","e":"userGroupDropdownQa"},{"b":"onChange","d":"variable","e":"handleSelectedUserGroupRole"},{"b":"title","d":"string","e":"User Group Select"},{"b":"value","d":"variable","e":"selectedUserGroupRole"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"environment"},{"b":"name","d":"variable","e":"name"},{"b":"label","d":"expression","e":"environments.moveDialogLabels.destinationEnvironment"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"},{"b":"getOptionDisplayValue","d":"function","e":"(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..cce0393e4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..3a13421a7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":7},{"name":"dataQa","count":7},{"name":"itemComponent","count":7},{"name":"optionsLabelCallback","count":7},{"name":"isOptionEqualToValueCallback","count":7},{"name":"itemMappingCallback","count":7},{"name":"fetchOptionsCallback","count":7},{"name":"options","count":7},{"name":"onChange","count":7},{"name":"id","count":6},{"name":"value","count":5},{"name":"required","count":5},{"name":"hasErrors","count":3},{"name":"helperText","count":3},{"name":"label","count":3},{"name":"getShowOptionDividerCallback","count":3},{"name":"multiple","count":3},{"name":"getOptionDisabledCallback","count":2},{"name":"width","count":2},{"name":"placeholder","count":1},{"name":"title","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..a18db3722 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..54ec80461 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[{"b":"name","d":"string","e":"userAccessSelect-search"},{"b":"dataQa","d":"expression","e":"`userAccessSelect-${resourceAssignment.userId}`"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option?.value === value?.value"},{"b":"itemMappingCallback","d":"function","e":"(option) => option ?? { name: \"\", value: \"\" }"},{"b":"fetchOptionsCallback","d":"function","e":"(searchTerm) => setSearchTerm(searchTerm)"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) =>\n\t\t\t\t!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]"},{"b":"options","d":"variable","e":"userOptions"},{"b":"value","d":"variable","e":"selectedOption"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"hasErrors","d":"expression","e":"!!resourceAssignment.error"},{"b":"helperText","d":"expression","e":"resourceAssignment.error"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.username"},{"b":"id","d":"string","e":"usernameSelectFilter"},{"b":"name","d":"string","e":"usernameSelectFilter"},{"b":"dataQa","d":"string","e":"usernameSelectFilter"},{"b":"onChange","d":"function","e":"(e) => handleEmailSelection(e.value as IEmailOption)"},{"b":"value","d":"expression","e":"filters.email.value ? selectedEmail : undefined"},{"b":"options","d":"expression","e":"emailSearchTerm ? matchingEmails : getEmails(usersDetails)"},{"b":"itemComponent","d":"function","e":"(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"id","d":"string","e":"claimMappingUserGroups"},{"b":"name","d":"string","e":"claimMappingUserGroups"},{"b":"dataQa","d":"string","e":"claimMappingUserGroups"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])"},{"b":"value","d":"variable","e":"selectedUserGroups"},{"b":"options","d":"expression","e":"userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)"},{"b":"itemComponent","d":"function","e":"(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tsubText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(\", \"),\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"label","d":"expression","e":"userGroupManagement.defaultUserGroupLabel"},{"b":"hasErrors","d":"boolean","e":"true"},{"b":"id","d":"string","e":"customizeUserGroup"},{"b":"name","d":"string","e":"customizeUserGroup"},{"b":"dataQa","d":"string","e":"customizeUserGroup"},{"b":"required","d":"boolean","e":"true"},{"b":"helperText","d":"expression","e":"!selectedUserGroup ? userGroupManagement.selectDefaultGroup : \"\""},{"b":"placeholder","d":"expression","e":"selectedUserGroup?.name"},{"b":"options","d":"expression","e":"userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)"},{"b":"itemComponent","d":"function","e":"(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleUserGroupSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"width","d":"string","e":"30rem"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"id","d":"string","e":"servicesDropdownId"},{"b":"name","d":"string","e":"servicesDropdown"},{"b":"dataQa","d":"string","e":"supportPageService"},{"b":"onChange","d":"variable","e":"handleServiceDropdown"},{"b":"fetchOptionsCallback","d":"variable","e":"handleServiceCallback"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"options","d":"variable","e":"services"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"value","d":"variable","e":"dropdownValueFromParam"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"id","d":"string","e":"userGroupRoleDropdownId"},{"b":"name","d":"string","e":"userGroupRoleDropdown"},{"b":"width","d":"string","e":"800px"},{"b":"label","d":"expression","e":"userGroups.ugDialog.roles"},{"b":"dataQa","d":"string","e":"userGroupRoleDropdownQa"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"handleUserGroupRoleChange"},{"b":"value","d":"expression","e":"dialogState.roleValue ? dialogState.roleValue : currentFilters"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFiltersCallback"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleRolesDisabled"},{"b":"hasErrors","d":"variable","e":"hasRoleError"},{"b":"helperText","d":"expression","e":"hasRoleError ? userGroups.ugDialog.ugRoleError : \"\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx","c":[{"b":"id","d":"string","e":"transferServicesDropdownSelect"},{"b":"name","d":"string","e":"transferServicesDropdownSelect"},{"b":"dataQa","d":"string","e":"transferServicesDropdownSelect"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchOptionsCallback"},{"b":"required","d":"boolean","e":"true"},{"b":"multiple","d":"boolean","e":"false"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"options","d":"variable","e":"usersDropdownList"},{"b":"title","d":"string","e":"Select a user to transfer services to"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..6274722d6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..c030c33a7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":2},{"name":"value","count":2},{"name":"supplementalText","count":1},{"name":"subText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..0273f4ef6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..d732c59d4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"expression","e":"tracingProfile.tracingType[TracingType.Insights]"},{"b":"value","d":"expression","e":"TracingType.Insights"},{"b":"supplementalText","d":"expression","e":"isInsights ? \"Default\" : \"Not Available\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"expression","e":"tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]"},{"b":"value","d":"expression","e":"TlsConnectionType.SecureSkipValidation"},{"b":"subText","d":"string","e":"Skips certificate authority validation"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..e2afb2bec --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/commonProps.json new file mode 100644 index 000000000..70d2d273e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/commonProps.json @@ -0,0 +1 @@ +[{"name":"showSidePanel","count":1},{"name":"sidePanelContent","count":1},{"name":"sidePanelWidth","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/files.json new file mode 100644 index 000000000..c40cc54e8 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/instances.json new file mode 100644 index 000000000..79d7667f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"showSidePanel","d":"variable","e":"panelOpen"},{"b":"sidePanelContent","d":"variable","e":"sidePanelMessage"},{"b":"sidePanelWidth","d":"variable","e":"MAX_WIDTH"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceSidePanelLayout/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/commonProps.json new file mode 100644 index 000000000..79e143ac6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"spacing","count":7},{"name":"paddingTop","count":2},{"name":"marginTop","count":2},{"name":"padding","count":2},{"name":"style","count":1},{"name":"direction","count":1},{"name":"gap","count":1},{"name":"bgcolor","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/files.json new file mode 100644 index 000000000..57f2f8209 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/instances.json new file mode 100644 index 000000000..6c935eb24 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"style","d":"object","e":"{ minHeight: \"45vh\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"spacing","d":"number","e":"1"},{"b":"marginTop","d":"variable","e":"marginTop"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"gap","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"marginTop","d":"number","e":"2"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/totalUsages.json new file mode 100644 index 000000000..3cacc0b93 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +12 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..19f5ea8d1 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/commonProps.json new file mode 100644 index 000000000..912137277 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":2},{"name":"required","count":2},{"name":"htmlForId","count":1},{"name":"bold","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/files.json new file mode 100644 index 000000000..3d17f9672 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/instances.json new file mode 100644 index 000000000..2ab02ac1b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"id","d":"expression","e":"`environment-type-label`"},{"b":"htmlForId","d":"expression","e":"`isProduction`"},{"b":"bold","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"required","d":"expression","e":"!!required"},{"b":"id","d":"expression","e":"id ?? name.toLowerCase()"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceStackLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/commonProps.json new file mode 100644 index 000000000..c18ccf9a9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/commonProps.json @@ -0,0 +1 @@ +[{"name":"rows","count":9},{"name":"columns","count":9},{"name":"sortCallback","count":9},{"name":"selectionType","count":9},{"name":"selectionChangedCallback","count":5},{"name":"renderCustomEmptyState","count":4},{"name":"loading","count":4},{"name":"showEmptyState","count":3},{"name":"dataQa","count":3},{"name":"selectedRowIds","count":2},{"name":"loadingMessage","count":2},{"name":"minHeight","count":2},{"name":"renderCustomRowActionItem","count":2},{"name":"maxHeight","count":1},{"name":"sortedColumn","count":1},{"name":"emptyStateMessage","count":1},{"name":"displayedColumns","count":1},{"name":"customContentDisplayChangeCallback","count":1},{"name":"displayedCustomContent","count":1},{"name":"expandableRowOptions","count":1},{"name":"rowActionMenuItems","count":1},{"name":"customMenuActions","count":1},{"name":"hasColumnHiding","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/files.json new file mode 100644 index 000000000..1eec74b63 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/instances.json new file mode 100644 index 000000000..9505bbcff --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"onRowSelected"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelectionsChange"},{"b":"sortCallback","d":"function","e":"() => null"},{"b":"rows","d":"variable","e":"auditLogsRows"},{"b":"columns","d":"variable","e":"AuditLogsTableColumns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomEmptyState","d":"variable","e":"emptyState"},{"b":"showEmptyState","d":"boolean","e":"true"},{"b":"loadingMessage","d":"expression","e":"en.auditLogs.loadingMessage"},{"b":"loading","d":"variable","e":"loading"},{"b":"maxHeight","d":"string","e":"40rem"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"rows","d":"expression","e":"showEmptyState ? [] : tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"function","e":"(columm) => handleSort(columm, drawdownData)"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"dataQa","d":"string","e":"drawdownUsageTable"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"variable","e":"sortClaimValuesDirection"},{"b":"rows","d":"expression","e":"groupMappingState ? [addMappingRow, ...tableRows] : tableRows"},{"b":"columns","d":"expression","e":"columns(groupMappingState)"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"loading","d":"boolean","e":"false"},{"b":"showEmptyState","d":"expression","e":"rows.length < 1"},{"b":"minHeight","d":"string","e":"476px"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"dataQa","d":"string","e":"notificationsTable"},{"b":"loading","d":"expression","e":"isLoading || isFetchingNotifications || deletingNotification"},{"b":"loadingMessage","d":"expression","e":"en.notifications[deletingNotification ? \"deletingNotifications\" : \"fetchingNotifications\"]"},{"b":"emptyStateMessage","d":"expression","e":"en.notifications.emptyStateMessage(showUnreadNotifications)"},{"b":"columns","d":"variable","e":"NOTIFICATION_TABLE_COLUMNS"},{"b":"displayedColumns","d":"variable","e":"NOTIFICATION_TABLE_COLUMNS"},{"b":"customContentDisplayChangeCallback","d":"function","e":"() => null"},{"b":"displayedCustomContent","d":"array","e":"[]"},{"b":"renderCustomRowActionItem","d":"variable","e":"getRowActionMenuItem"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\t\t\trenderChildren: (data) => {\n\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tsetExpandedRowIds: expandRowHandler\n\t\t\t\t\t\t\t}"},{"b":"rows","d":"expression","e":"notifications ?? []"},{"b":"sortCallback","d":"function","e":"() => null"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"dataQa","d":"string","e":"userGroupsTableQA"},{"b":"customMenuActions","d":"variable","e":"resultsPerPageActions"},{"b":"hasColumnHiding","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"rows","d":"expression","e":"distributedTracingLimits ?? []"},{"b":"columns","d":"variable","e":"limitColumn"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomEmptyState","d":"function","e":"() => {tracingLimits.emptyStateMessage}"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"rows","d":"expression","e":"tracingProfiles ?? []"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"customRowActionMenuItems"},{"b":"renderCustomEmptyState","d":"function","e":"() => {tracingProfile.emptyStateMessage}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"userManagementColumns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"loading","d":"boolean","e":"false"},{"b":"showEmptyState","d":"expression","e":"tableRows.length < 1"},{"b":"minHeight","d":"string","e":"476px"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/usagesByMfe.json new file mode 100644 index 000000000..e2afb2bec --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTable/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/commonProps.json new file mode 100644 index 000000000..12299a92a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"activeTabValue","count":2},{"name":"variant","count":2},{"name":"tabs","count":2},{"name":"size","count":2},{"name":"onTabClick","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/files.json new file mode 100644 index 000000000..3fabedf21 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/instances.json new file mode 100644 index 000000000..e7762b8fd --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"},{"b":"tabs","d":"variable","e":"TABS"},{"b":"size","d":"string","e":"md"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx","c":[{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"},{"b":"tabs","d":"variable","e":"TABS"},{"b":"size","d":"string","e":"md"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/commonProps.json new file mode 100644 index 000000000..cb5a04e7c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":9},{"name":"label","count":8},{"name":"onChange","count":8},{"name":"dataQa","count":7},{"name":"value","count":6},{"name":"maxLength","count":5},{"name":"fullWidth","count":5},{"name":"helperText","count":5},{"name":"hasErrors","count":4},{"name":"resizable","count":4},{"name":"title","count":3},{"name":"disabled","count":2},{"name":"width","count":2},{"name":"onBlur","count":1},{"name":"id","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/files.json new file mode 100644 index 000000000..1ee2b201f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/instances.json new file mode 100644 index 000000000..1d9da4ae4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx","c":[{"b":"maxLength","d":"number","e":"3000"},{"b":"label","d":"expression","e":"drawdownUsage.noDrawdownUsage.details"},{"b":"name","d":"string","e":"contactUsTextField"},{"b":"dataQa","d":"string","e":"contactUsTextField"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"({ value }) => setContactUseMessage(value)"},{"b":"hasErrors","d":"expression","e":"!validateText(contactUseMessage) ? false : true"},{"b":"helperText","d":"expression","e":"!validateText(contactUseMessage) ? \"\" : drawdownUsage.noDrawdownUsage.containsScript"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"name","d":"string","e":"limitChangeDetails"},{"b":"label","d":"expression","e":"en.serviceLimits.labels.details"},{"b":"onBlur","d":"variable","e":"onDetailsChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"limitChangeDetails\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"hasErrors","d":"variable","e":"descriptionError"},{"b":"helperText","d":"expression","e":"handleDescriptionError()"},{"b":"name","d":"string","e":"descriptionField"},{"b":"resizable","d":"string","e":"vertical"},{"b":"value","d":"variable","e":"descriptionValue"},{"b":"onChange","d":"variable","e":"handleDescriptionFieldValue"},{"b":"maxLength","d":"number","e":"5000"},{"b":"dataQa","d":"string","e":"supportPageIssue"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"maxLength","d":"number","e":"1500"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.environments.labels.descripiton"},{"b":"value","d":"expression","e":"dialogState.description"},{"b":"name","d":"string","e":"environmentDescription"},{"b":"onChange","d":"variable","e":"handleEnvDescriptionChange"},{"b":"helperText","d":"expression","e":"handleDescriptionErrorText()"},{"b":"hasErrors","d":"variable","e":"hasDescError"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"dataQa","d":"string","e":"envDescriptionTestId"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"maxLength","d":"number","e":"255"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"userGroups.ugDialog.descripiton"},{"b":"value","d":"expression","e":"dialogState.description"},{"b":"name","d":"string","e":"userGroupsDescription"},{"b":"onChange","d":"variable","e":"handleUGDescriptionChange"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"dataQa","d":"string","e":"userGroupsDescriptionQa"},{"b":"helperText","d":"expression","e":"handleDescriptionCount()"},{"b":"resizable","d":"string","e":"vertical"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","c":[{"b":"name","d":"expression","e":"\"sendRequest\""},{"b":"maxLength","d":"number","e":"1000"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.privateRegions.labels.newRequestDetails"},{"b":"onChange","d":"function","e":"(event) => setTicketBody(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"label","d":"expression","e":"en.accountSettings.additionalComments"},{"b":"name","d":"string","e":"additionalComments"},{"b":"onChange","d":"function","e":"(e) => setAdditionalCommentsText(e.value)"},{"b":"title","d":"expression","e":"en.accountSettings.additionalComments"},{"b":"value","d":"variable","e":"additionalCommentsText"},{"b":"dataQa","d":"string","e":"additionalCommentsTextField"},{"b":"hasErrors","d":"expression","e":"additionalCommentsText.length >= 255"},{"b":"helperText","d":"expression","e":"additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : \"\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"id","d":"string","e":"limitRequestTextArea"},{"b":"name","d":"string","e":"limitRequestTextArea"},{"b":"onChange","d":"function","e":"({ value }) => setRequestDetailsTexts(value)"},{"b":"title","d":"expression","e":"en.overview.eventPortalSection.requestDetailsTextArea"},{"b":"value","d":"variable","e":"requestDetailsTexts"},{"b":"label","d":"expression","e":"en.overview.eventPortalSection.requestDetailsTextArea"},{"b":"width","d":"string","e":"40rem"},{"b":"resizable","d":"string","e":"vertical"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"label","d":"expression","e":"en.overview.banner.additionalComments"},{"b":"name","d":"expression","e":"en.overview.banner.additionalComments"},{"b":"onChange","d":"function","e":"(e) => setAdditionalComments(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.additionalComments"},{"b":"value","d":"variable","e":"additionalComments"},{"b":"width","d":"string","e":"30vw"},{"b":"resizable","d":"string","e":"vertical"},{"b":"dataQa","d":"string","e":"additionalCommentsId"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/totalUsages.json new file mode 100644 index 000000000..f11c82a4c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/totalUsages.json @@ -0,0 +1 @@ +9 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/usagesByMfe.json new file mode 100644 index 000000000..e2afb2bec --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/commonProps.json new file mode 100644 index 000000000..0732f8b0a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":34},{"name":"value","count":32},{"name":"onChange","count":28},{"name":"hasErrors","count":22},{"name":"helperText","count":22},{"name":"dataQa","count":21},{"name":"width","count":11},{"name":"id","count":11},{"name":"label","count":9},{"name":"maxLength","count":9},{"name":"required","count":8},{"name":"title","count":8},{"name":"type","count":7},{"name":"readOnly","count":7},{"name":"placeholder","count":4},{"name":"disabled","count":2},{"name":"endAdornment","count":2},{"name":"onBlur","count":2},{"name":"aria-label","count":1},{"name":"data-lpignore","count":1},{"name":"autoFocus","count":1},{"name":"fullWidth","count":1},{"name":"size","count":1},{"name":"data-qa","count":1},{"name":"inlineLabel","count":1},{"name":"onFocus","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/files.json new file mode 100644 index 000000000..7ac4c389b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/instances.json new file mode 100644 index 000000000..22452bda4 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"value","d":"expression","e":"tokenFormValues.name"},{"b":"aria-label","d":"string","e":"Name"},{"b":"data-lpignore","d":"string","e":"true"},{"b":"width","d":"string","e":"500px"},{"b":"name","d":"string","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!nameError"},{"b":"helperText","d":"expression","e":"nameError ?? undefined"},{"b":"onChange","d":"function","e":"(e) => dispatch(setTokenName(e.value))"},{"b":"dataQa","d":"string","e":"tokenName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"name","d":"string","e":"serviceLimitValue"},{"b":"label","d":"expression","e":"en.serviceLimits.labels.newServiceLimit"},{"b":"type","d":"string","e":"number"},{"b":"required","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"onServiceLimitChange"},{"b":"value","d":"variable","e":"newServiceLimit"},{"b":"dataQa","d":"expression","e":"\"serviceLimitValue\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"id","d":"string","e":"addClaimValuesField"},{"b":"name","d":"string","e":"addClaimValuesField"},{"b":"value","d":"variable","e":"claimValuesMapping"},{"b":"onChange","d":"function","e":"({ value }) => setClaimValuesMapping(value)"},{"b":"helperText","d":"expression","e":"claimValueError ? userGroupManagement.claimValueErrorMessage : undefined"},{"b":"hasErrors","d":"variable","e":"claimValueError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","c":[{"b":"id","d":"string","e":"editClaimValuesFieldId"},{"b":"name","d":"string","e":"editClaimValuesField"},{"b":"value","d":"variable","e":"claimValuesMapping"},{"b":"onChange","d":"function","e":"({ value }) => setClaimValuesMapping(value)"},{"b":"helperText","d":"expression","e":"claimValueError ? userGroupManagement.claimValueErrorMessage :  "},{"b":"hasErrors","d":"variable","e":"claimValueError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"helperText","d":"expression","e":"userGroupManagement[\n\t\t\t\t\t\t\t\t\tclaimIdChanged && claimId.trim().length < 1 ? \"claimIdError\" : \"identityProviderHelperText\"\n\t\t\t\t\t\t\t\t]"},{"b":"hasErrors","d":"expression","e":"claimIdChanged && claimId.trim().length < 1"},{"b":"label","d":"expression","e":"userGroupManagement.identityProviderLabel"},{"b":"name","d":"string","e":"claimId"},{"b":"onChange","d":"function","e":"({ value }) => claimIdChangeHandler(value)"},{"b":"value","d":"variable","e":"claimId"},{"b":"dataQa","d":"string","e":"roleId"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"firstNameError"},{"b":"helperText","d":"expression","e":"firstNameError ? myProfile.firstNameError : \"\""},{"b":"name","d":"string","e":"userFirstName"},{"b":"id","d":"string","e":"userFirstName"},{"b":"dataQa","d":"string","e":"userFirstName"},{"b":"value","d":"variable","e":"firstNameValue"},{"b":"maxLength","d":"number","e":"150"},{"b":"onChange","d":"variable","e":"handleFirstName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"lastNameError"},{"b":"helperText","d":"expression","e":"lastNameError ? myProfile.lastNameError : \"\""},{"b":"name","d":"string","e":"userLastName"},{"b":"id","d":"string","e":"userLastName"},{"b":"dataQa","d":"string","e":"userLastName"},{"b":"value","d":"variable","e":"lastNameValue"},{"b":"maxLength","d":"number","e":"150"},{"b":"onChange","d":"variable","e":"handleLastName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"oldPasswordReq"},{"b":"helperText","d":"expression","e":"oldPasswordReq ? myProfile.oldPasswordReq : \"\""},{"b":"name","d":"string","e":"userOldPassword"},{"b":"type","d":"string","e":"password"},{"b":"id","d":"string","e":"userOldPassword"},{"b":"dataQa","d":"string","e":"userOldPassword"},{"b":"value","d":"variable","e":"oldPasswordValue"},{"b":"maxLength","d":"number","e":"50"},{"b":"onChange","d":"variable","e":"handleOldPasswordChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"expression","e":"newPasswordError.length > 0"},{"b":"helperText","d":"variable","e":"newPasswordError"},{"b":"name","d":"string","e":"userNewPassword"},{"b":"id","d":"string","e":"userNewPassword"},{"b":"type","d":"string","e":"password"},{"b":"dataQa","d":"string","e":"userNewPassword"},{"b":"value","d":"variable","e":"newPasswordValue"},{"b":"maxLength","d":"number","e":"50"},{"b":"onChange","d":"variable","e":"handleNewPasswordChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"confirmPasswordError"},{"b":"helperText","d":"expression","e":"confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning"},{"b":"name","d":"string","e":"userNewConfirmation"},{"b":"id","d":"string","e":"userNewConfirmation"},{"b":"type","d":"string","e":"password"},{"b":"dataQa","d":"string","e":"userNewConfirmation"},{"b":"value","d":"variable","e":"newPasswordValueConfirm"},{"b":"maxLength","d":"number","e":"50"},{"b":"onChange","d":"variable","e":"handleNewPasswordConfirmChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"hasErrors","d":"variable","e":"summaryError"},{"b":"helperText","d":"expression","e":"handleSummaryError()"},{"b":"name","d":"string","e":"summaryfield"},{"b":"id","d":"string","e":"supportPageSummary"},{"b":"dataQa","d":"string","e":"supportPageSummary"},{"b":"value","d":"variable","e":"summaryValue"},{"b":"onChange","d":"variable","e":"handleSummaryFieldValue"},{"b":"maxLength","d":"number","e":"150"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"hasErrors","d":"variable","e":"errorIdError"},{"b":"helperText","d":"expression","e":"handleErrorIdError()"},{"b":"name","d":"string","e":"errorField"},{"b":"id","d":"string","e":"supportPageErrorId"},{"b":"dataQa","d":"string","e":"supportPageErrorId"},{"b":"value","d":"variable","e":"errorIdValue"},{"b":"onChange","d":"variable","e":"handleErrorIdFieldValue"},{"b":"maxLength","d":"number","e":"350"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"label","d":"expression","e":"en.environments.labels.environmentName"},{"b":"value","d":"expression","e":"dialogState.name"},{"b":"name","d":"string","e":"environmentName"},{"b":"maxLength","d":"number","e":"100"},{"b":"onChange","d":"variable","e":"handleEnvNameChange"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"isDuplicate || hasError || hasNameRequiredError"},{"b":"helperText","d":"expression","e":"handleErrorText()"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"dataQa","d":"string","e":"envNameTestId"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"name","d":"string","e":"environmentFilter"},{"b":"placeholder","d":"expression","e":"environmentsStr.environmentList.filterPlaceholder"},{"b":"endAdornment","d":"array","e":"[]"},{"b":"onChange","d":"variable","e":"handleSearch"},{"b":"dataQa","d":"string","e":"environmentFilterInput"},{"b":"width","d":"expression","e":"\"313px\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"fullWidth","d":"boolean","e":"true"},{"b":"id","d":"string","e":"resetPasswordEmail"},{"b":"name","d":"string","e":"resetPasswordEmail"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"title","d":"expression","e":"en.forgotPassword.resetPasswordFieldTitle"},{"b":"placeholder","d":"expression","e":"en.forgotPassword.email"},{"b":"dataQa","d":"string","e":"resetPasswordEmailInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"name","d":"string","e":"userGroupSearch"},{"b":"dataQa","d":"string","e":"userGroupSearchQa"},{"b":"value","d":"variable","e":"userGroupSearchValue"},{"b":"onChange","d":"variable","e":"handleUserGroupSearchValue"},{"b":"placeholder","d":"expression","e":"userGroups.userGroupsHome.search"},{"b":"size","d":"number","e":"155"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tuserGroupSearchValue ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"},{"b":"width","d":"string","e":"20rem"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"userGroups.ugDialog.ugName"},{"b":"value","d":"expression","e":"dialogState.name"},{"b":"name","d":"string","e":"userGroupName"},{"b":"maxLength","d":"number","e":"100"},{"b":"onChange","d":"variable","e":"handleUGNameChange"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"hasNameError || isDuplicate || hasNoNameError || isDefaultError"},{"b":"helperText","d":"expression","e":"handleErrorText()"},{"b":"dataQa","d":"string","e":"userGroupNameQa"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx","c":[{"b":"name","d":"string","e":"search"},{"b":"width","d":"string","e":"45%"},{"b":"placeholder","d":"string","e":"Search..."},{"b":"onChange","d":"function","e":"(event) => setSearch(event.value)"},{"b":"value","d":"variable","e":"search"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"details_displayName"},{"b":"name","d":"expression","e":"tracingProfile.formFields.name.field"},{"b":"value","d":"expression","e":"tracingDestination?.displayName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.type.field"},{"b":"value","d":"expression","e":"tracingProfile.tracingType[tracingDestination?.tracingBackendType]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.connectionType.field"},{"b":"value","d":"expression","e":"tracingProfile.tlsConnectionType[tracingDestination.connectionType]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.region.field"},{"b":"value","d":"expression","e":"tracingProfile.datadogSite[tracingDestination.datadogSite]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.endpoint.field"},{"b":"value","d":"expression","e":"tracingDestination.endpoint"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"details_apiKey"},{"b":"name","d":"expression","e":"tracingProfile.formFields.datadogApiKey.field"},{"b":"value","d":"expression","e":"tracingDestination.datadogApiKey"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"label","d":"expression","e":"en.accountSettings.preferredSubdomain"},{"b":"name","d":"string","e":"preferredSubdomain"},{"b":"onChange","d":"function","e":"(e) => setPreferredSubdomainText({ edited: true, text: e.value })"},{"b":"required","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.accountSettings.preferredSubdomain"},{"b":"value","d":"expression","e":"preferredSubdomain.text"},{"b":"hasErrors","d":"expression","e":"preferredSubdomain.edited && !canSendRequest"},{"b":"helperText","d":"expression","e":"preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : \"\""},{"b":"width","d":"string","e":"100%"},{"b":"dataQa","d":"string","e":"preferredSubdomainTextField"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.clientId?.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : \"\""},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"clientId"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientIdErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientId, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.clientId"},{"b":"value","d":"expression","e":"configSettings.clientId.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.clientSecretKey.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : \"\""},{"b":"type","d":"expression","e":"hideSecretKey ? \"password\" : \"text\""},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"clientSecretKey"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientSecretKeyErrorMsg);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientSecretKey, value, errors } };\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.clientSecretKey"},{"b":"value","d":"expression","e":"configSettings.clientSecretKey.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.oidcDiscoveryUrl.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.oidcDiscoveryUrl.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.oidcDiscoveryUrl.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.discoveryUrlExpectedFormat"},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"oidcDiscoveryUrl"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.discoveryUrl"},{"b":"value","d":"expression","e":"configSettings.oidcDiscoveryUrl.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.additionalScopes.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.additionalScopes.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.additionalScopes.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.additionalScopesExpectedFormat"},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"additionalScopes"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.indexOf(\" \") >= 0) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.noWhiteSpaceAllowed);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.additionalScopes, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.additionalScopes"},{"b":"value","d":"expression","e":"configSettings.additionalScopes.value as string"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"id","d":"string","e":"limitRequestNumber"},{"b":"name","d":"string","e":"limitRequestNumber"},{"b":"onChange","d":"function","e":"({ value }) => setLimitRequestNumber(+value)"},{"b":"type","d":"string","e":"number"},{"b":"value","d":"variable","e":"limitRequestNumber"},{"b":"label","d":"expression","e":"en.overview.eventPortalSection.totalObjects"},{"b":"required","d":"boolean","e":"true"},{"b":"width","d":"string","e":"15rem"},{"b":"data-qa","d":"string","e":"limitRequestNumberInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"label","d":"expression","e":"en.overview.banner.contactEmail"},{"b":"name","d":"expression","e":"en.overview.banner.contactEmail"},{"b":"onChange","d":"function","e":"(e) => setContactEmail(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.contactEmail"},{"b":"value","d":"variable","e":"contactEmail"},{"b":"hasErrors","d":"expression","e":"!!contactEmail && !isValidEmail(contactEmail)"},{"b":"helperText","d":"expression","e":"!!contactEmail && !isValidEmail(contactEmail) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.overview.banner.errorHelperText}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.overview.advancedSettingsSection.password"},{"b":"name","d":"expression","e":"en.overview.advancedSettingsSection.password"},{"b":"onChange","d":"function","e":"({ value }) => setPassword(value)"},{"b":"title","d":"expression","e":"en.overview.advancedSettingsSection.password"},{"b":"value","d":"variable","e":"password"},{"b":"type","d":"string","e":"password"},{"b":"width","d":"string","e":"45rem"},{"b":"hasErrors","d":"variable","e":"inCorrectPassword"},{"b":"dataQa","d":"string","e":"password"},{"b":"helperText","d":"expression","e":"inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : \"\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"label","d":"string","e":"List of Emails"},{"b":"value","d":"variable","e":"handle"},{"b":"onChange","d":"function","e":"({ value }) => setHandle(value)"},{"b":"onFocus","d":"function","e":"() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))"},{"b":"onBlur","d":"function","e":"() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({\n\t\t\t\t\t\t...previous,\n\t\t\t\t\t\t[name]: { hasErrors: false, helperText: handle ? \"\" : helperText.warning(name) }\n\t\t\t\t\t}))"},{"b":"hasErrors","d":"expression","e":"helper.hasErrors"},{"b":"helperText","d":"expression","e":"helper.helperText"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/totalUsages.json new file mode 100644 index 000000000..3e932fe8f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/totalUsages.json @@ -0,0 +1 @@ +34 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/usagesByMfe.json new file mode 100644 index 000000000..47f26f5f5 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTextField/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":34} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/commonProps.json new file mode 100644 index 000000000..4edbb5363 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":2},{"name":"dataQa","count":2},{"name":"label","count":2},{"name":"name","count":2},{"name":"onChange","count":2},{"name":"title","count":2},{"name":"isOn","count":2},{"name":"helperText","count":1},{"name":"disabled","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/files.json new file mode 100644 index 000000000..d0140dc87 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/instances.json new file mode 100644 index 000000000..e024febd2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"helperText","d":"expression","e":"en.notifications[showUnreadNotifications ? \"showingUnreadNotifications\" : \"showingAllNotifications\"]"},{"b":"id","d":"string","e":"showUnreadNotifications"},{"b":"dataQa","d":"string","e":"showUnreadNotifications"},{"b":"label","d":"expression","e":"en.notifications.showUnreadNotifications"},{"b":"name","d":"string","e":"showUnreadNotifications"},{"b":"onChange","d":"function","e":"(e) => setShowUnreadNotifications(e.value)"},{"b":"title","d":"expression","e":"en.notifications.showUnreadNotifications"},{"b":"isOn","d":"variable","e":"showUnreadNotifications"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"id","d":"string","e":"securitySettingsPreAuth"},{"b":"label","d":"expression","e":"brandableTextValueConverter(\"PubSub+\", \"string\") + \" \" + en.accountSettings.preAuthText"},{"b":"name","d":"string","e":"securitySettingsPreAuth"},{"b":"onChange","d":"function","e":"(value) => togglePreAuth(value.value)"},{"b":"title","d":"string","e":"Security Settings Pre Auth"},{"b":"isOn","d":"expression","e":"!preOrgConfigResponse?.data.useAuthWebUILinks"},{"b":"disabled","d":"expression","e":"preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig"},{"b":"dataQa","d":"string","e":"preAuthText"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/usagesByMfe.json new file mode 100644 index 000000000..21ff4eee6 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggle/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/commonProps.json new file mode 100644 index 000000000..7a6443d18 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"dataQa","count":1},{"name":"options","count":1},{"name":"onChange","count":1},{"name":"activeValue","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/files.json new file mode 100644 index 000000000..e9056f16e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/instances.json new file mode 100644 index 000000000..6b4ec9e8e --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx","c":[{"b":"dataQa","d":"string","e":"userManagementToggle"},{"b":"options","d":"variable","e":"TAB_OPTIONS"},{"b":"onChange","d":"variable","e":"onToggleChangeHandler"},{"b":"activeValue","d":"variable","e":"filter"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/usagesByMfe.json new file mode 100644 index 000000000..b9cd64a0c --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceToggleButtonGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..bae52b336 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":28},{"name":"variant","count":18},{"name":"maxWidth","count":2},{"name":"dataQa","count":2},{"name":"key","count":2},{"name":"placement","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/files.json new file mode 100644 index 000000000..ab7473504 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/instances.json new file mode 100644 index 000000000..c7f0378ca --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"userName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","c":[{"b":"title","d":"expression","e":"chipProps.tooltip"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"textValue"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"variant","d":"string","e":"html"},{"b":"dataQa","d":"string","e":"pcuCalculationTooltip"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (\n\t\t\t\t\t\t\t\t\t\t{mappedRolesData[item].name}\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"rowData.claimValues"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"variable","e":"name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{rowData.userGroups\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)\n\t\t\t\t\t\t\t\t\t\t.map(({ name, value }) => (\n\t\t\t\t\t\t\t\t\t\t\t{name}\n\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"getStatusLabel(c.status)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"getStatusLabel(mc.status)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"title","d":"expression","e":"`The environment type cannot be changed.`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"title","d":"expression","e":"`The environment type cannot be changed.`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"environment.name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"key","d":"expression","e":"`${testItem.id}-${testItem.name}-template-warning`"},{"b":"title","d":"expression","e":"environmentsStr.configurationTemplates.warning"},{"b":"dataQa","d":"string","e":"runtimeTemplatesWarning"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"user.email"},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.notReadyTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.readyTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.notReadyTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.inMaintenanceTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.dcOperational"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.dcNotoperational"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"row?.epCapabilities == Status.ERROR ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.eventManagementAgentErrorText}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) : undefined"},{"b":"variant","d":"string","e":"rich"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"placement","d":"string","e":"bottom-start"},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"title","d":"expression","e":"tracingDestinationLimitReached\n\t\t\t\t\t\t\t\t\t? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)\n\t\t\t\t\t\t\t\t\t: undefined"},{"b":"variant","d":"string","e":"html"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"title","d":"variable","e":"tooltip"},{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"en.overview.eventPortalSection[\n\t\t\t\t\t\t\t\t\t\t\tuser?.eventPortal2AccessEnabled ? \"totalObjectsTooltip1\" : \"totalObjectsTooltip2\"\n\t\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.totalObjectsCountText}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.objectsCountLearnLinkText}\n\t\t\t\t\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{roleIdNameMap &&\n\t\t\t\t\t\t\t\t\tuser.roles\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)\n\t\t\t\t\t\t\t\t\t\t.map((role) => {roleIdNameMap[role]})}\n\t\t\t\t\t\t\t"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..d99e90eb9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +29 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..aa39c60f2 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":29} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/commonProps.json new file mode 100644 index 000000000..8049829c9 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":49},{"name":"fontWeight","count":19},{"name":"sx","count":16},{"name":"mt","count":16},{"name":"className","count":13},{"name":"mb","count":12},{"name":"fontSize","count":9},{"name":"display","count":8},{"name":"key","count":6},{"name":"textAlign","count":5},{"name":"style","count":5},{"name":"data-qa","count":4},{"name":"mr","count":4},{"name":"pb","count":4},{"name":"component","count":3},{"name":"marginTop","count":2},{"name":"marginBottom","count":2},{"name":"pt","count":2},{"name":"ml","count":2},{"name":"color","count":2},{"name":"paddingTop","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/customization.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/files.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/files.json new file mode 100644 index 000000000..73f11cf1a --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/instances.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/instances.json new file mode 100644 index 000000000..1ee0f2e25 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"string","e":"role"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"expression","e":"`roles-${label}`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"className","d":"string","e":"detailsLabel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"className","d":"string","e":"detailsLabel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"className","d":"string","e":"capitalize"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"className","d":"string","e":"name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"sx","d":"object","e":"{ whiteSpace: \"initial\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"className","d":"string","e":"title"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"className","d":"string","e":"subTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"14px\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"16px\", fontWeight: \"500\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"14px\" }"},{"b":"marginTop","d":"number","e":"2"},{"b":"marginBottom","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"marginTop","d":"number","e":"2"},{"b":"marginBottom","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"fontSize","d":"string","e":"24px"},{"b":"fontWeight","d":"string","e":"500"},{"b":"textAlign","d":"string","e":"right"},{"b":"data-qa","d":"string","e":"pcuCostValue"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","c":[{"b":"key","d":"variable","e":"item"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"mt","d":"number","e":"0.5"},{"b":"mb","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"1.33rem\", marginBottom: \".3rem\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[{"b":"key","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","c":[{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"sx","d":"object","e":"{ fontWeight: \"bolder\", color: \"inherit\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"mt","d":"number","e":"4"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"fontWeight","d":"number","e":"400"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"fontSize","d":"number","e":"14"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"display","d":"expression","e":"\"block\""},{"b":"data-qa","d":"string","e":"supportModalSuccessMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"display","d":"expression","e":"\"contents\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"display","d":"expression","e":"\"block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontWeight","d":"number","e":"400"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"className","d":"string","e":"message"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"pt","d":"number","e":"2"},{"b":"pb","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pb","d":"number","e":"3"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pb","d":"number","e":"2"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pb","d":"number","e":"2"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"className","d":"variable","e":"attachReadStateClassName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"className","d":"variable","e":"attachReadStateClassName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"className","d":"string","e":"messageHeading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"className","d":"string","e":"messageHeading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"className","d":"string","e":"messageHeading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"data-qa","d":"string","e":"noProblemText"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"style","d":"object","e":"{ alignContent: \"center\" }"},{"b":"fontSize","d":"number","e":"24"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"style","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"mt","d":"number","e":"4"},{"b":"fontWeight","d":"number","e":"500"},{"b":"style","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"16"},{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"14"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontSize","d":"number","e":"14"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"14"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"mt","d":"number","e":"3"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","c":[{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"mt","d":"number","e":"3"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"mt","d":"number","e":"3.3"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"mt","d":"string","e":"1rem"},{"b":"sx","d":"object","e":"{ opacity: 0.8 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"data-qa","d":"string","e":"securitySettingsWarning"},{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"mt","d":"number","e":"1"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"className","d":"string","e":"desc"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"style","d":"object","e":"{ paddingLeft: \"0\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx","c":[{"b":"style","d":"object","e":"{ paddingLeft: \"0\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"ml","d":"number","e":"2"},{"b":"key","d":"variable","e":"index"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ wordBreak: \"break-all\", whiteSpace: \"normal\" }"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"sx","d":"object","e":"{ wordBreak: \"break-all\", whiteSpace: \"normal\" }"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ paddingRight: theme.spacing() }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: theme.palette.text.secondary }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"sx","d":"object","e":"{ paddingRight: theme.spacing() }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"16"},{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"14"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"key","d":"variable","e":"role"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..946b551d7 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +191 \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..b28eb4407 --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":191} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/saas/total_stats.json b/mrc-usage-report-data/per-application/maas-ui/saas/total_stats.json new file mode 100644 index 000000000..2c1cfa96f --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/saas/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":191,"SolaceButton":109,"SolaceGrid":70,"SolaceTooltip":29,"SolaceLabel":11,"SolaceMessageBox":33,"SolaceConfirmationDialog":34,"SolaceTextField":34,"SolaceStack":12,"SolaceSelect":10,"SolaceCheckBox":27,"SolaceAccordion":7,"SolaceMenu":8,"SolaceTable":9,"SolaceAttributeBadge":4,"SolaceSelectAutocompleteItem":9,"SolaceCard":10,"SolaceSelectAutocomplete":7,"SolacePagination":6,"SolaceChip":6,"SolaceTabs":2,"SolaceCircularProgress":6,"SolaceToggle":2,"SolaceDetailMessage":4,"SolaceGridList":6,"SolaceRadio":3,"SolaceListItem":5,"SolaceSidePanelLayout":1,"SolaceTextArea":9,"SolacePageHeader":2,"SolaceList":2,"SolaceEnvironmentChip":1,"SolaceEnvironmentLabel":6,"SolaceBackDrop":7,"SolaceDrawer":1,"SolaceRadioGroup":1,"SolaceBreadcrumb":2,"SolacePicker":2,"SolaceErrorBox":2,"SolaceToggleButtonGroup":1,"SolaceStackLabel":2,"SolaceDatePicker":1,"SolaceAttributeValuePairForm":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-application/maas-ui/total_stats.json b/mrc-usage-report-data/per-application/maas-ui/total_stats.json new file mode 100644 index 000000000..47674ef6b --- /dev/null +++ b/mrc-usage-report-data/per-application/maas-ui/total_stats.json @@ -0,0 +1 @@ +{"SolaceTypography":667,"SolaceButton":702,"SolaceGrid":227,"SolaceTooltip":298,"SolaceLabel":302,"SolaceMessageBox":233,"SolaceConfirmationDialog":192,"SolaceTextField":161,"SolaceStack":132,"SolaceSelect":104,"SolaceCheckBox":82,"SolaceAccordion":75,"SolaceMenu":65,"SolaceTable":31,"SolaceAttributeBadge":50,"SolaceSelectAutocompleteItem":53,"SolaceCard":56,"SolaceSelectAutocomplete":44,"SolaceTruncatableLink":48,"SolacePagination":29,"SolaceChip":27,"SolaceTabs":31,"SolaceCircularProgress":27,"SolaceToggle":32,"SolaceDetailMessage":23,"SolaceGridList":23,"SolaceRadio":25,"SolaceListItem":16,"SolaceSidePanelLayout":21,"SolaceTextArea":21,"SolacePageHeader":17,"SolaceCodeEditor":13,"SolaceList":14,"SolaceEnvironmentChip":19,"SolaceEnvironmentLabel":17,"SolaceBackDrop":10,"SolaceDrawer":16,"SolaceRadioGroup":15,"SolaceBreadcrumb":9,"SolacePicker":13,"SolaceErrorBox":8,"SolaceSearchAndFilter":10,"SolaceToggleButtonGroup":9,"SolaceTag":4,"SolaceStackLabel":2,"SolaceSelectAutocompleteResponsiveTags":8,"SolaceLearningButton":7,"SolaceResponsiveItemList":7,"SolaceCategorizedSearch":6,"SolaceToasts":2,"SolacePopover":6,"SolaceListItemButton":5,"SolaceLinearProgress":4,"SolaceDatePicker":2,"SolaceAttributeValuePairForm":4,"SolaceEnvironmentSelectChip":4,"SolaceStepper":3,"SolaceFeatureTag":3,"SolaceFileUploader":3,"SolaceJsonSchemaForm":2,"SolaceSplitPane":2,"SolaceTextDiff":2,"SolaceMenuItem":1,"SolaceDonutChart":1,"SolaceEmptyStateBanner":1,"SolaceGridListMultiSelect":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAccordion/commonProps.json b/mrc-usage-report-data/per-component/SolaceAccordion/commonProps.json new file mode 100644 index 000000000..a139daf2a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAccordion/commonProps.json @@ -0,0 +1 @@ +[{"name":"summary","count":86},{"name":"details","count":86},{"name":"expanded","count":86},{"name":"onChange","count":86},{"name":"dataQa","count":52},{"name":"border","count":39},{"name":"key","count":27},{"name":"backgroundColor","count":11},{"name":"hover","count":8},{"name":"indicatorVariant","count":6}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAccordion/customization.json b/mrc-usage-report-data/per-component/SolaceAccordion/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAccordion/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAccordion/files.json b/mrc-usage-report-data/per-component/SolaceAccordion/files.json new file mode 100644 index 000000000..35bddf87e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAccordion/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAccordion/instances.json b/mrc-usage-report-data/per-component/SolaceAccordion/instances.json new file mode 100644 index 000000000..7f954931a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAccordion/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"summary","d":"expression","e":"getSummary(group, item, messages.preview.noChange, null, null)"},{"b":"details","d":"expression","e":"getDetails(item, group)"},{"b":"expanded","d":"expression","e":"accordionOpenStatus[key]"},{"b":"onChange","d":"function","e":"() => handleChangeAccordion(key)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"key"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails(associatedEnvironmentList)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"string","e":"applicationsToDelete"},{"b":"expanded","d":"variable","e":"applicationsExpanded"},{"b":"onChange","d":"variable","e":"handleApplicationClick"},{"b":"summary","d":"expression","e":"renderEntitySummary(\"Application Domains\", appDomains.length)"},{"b":"details","d":"expression","e":"renderEntityDetails(appDomains)"},{"b":"dataQa","d":"string","e":"applicationsToDelete"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"string","e":"memsToDelete"},{"b":"expanded","d":"variable","e":"memsExpanded"},{"b":"onChange","d":"variable","e":"handleMEMClick"},{"b":"summary","d":"expression","e":"renderEntitySummary(\"Modeled Event Meshes\", mems.length)"},{"b":"details","d":"expression","e":"renderEntityDetails(mems)"},{"b":"dataQa","d":"string","e":"memsToDelete"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"string","e":"environmentsToDelete"},{"b":"expanded","d":"variable","e":"environmentsExpanded"},{"b":"onChange","d":"variable","e":"handleEnvironmentClick"},{"b":"summary","d":"expression","e":"renderEntitySummary(\"Environments\", environments.length)"},{"b":"details","d":"expression","e":"renderEntityDetails(environments)"},{"b":"dataQa","d":"string","e":"environmentsToDelete"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[{"b":"dataQa","d":"expression","e":"entityType ? `customAttributes-${entityType}-accordion` : null"},{"b":"hover","d":"boolean","e":"true"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t{`Custom Attributes (${count})`}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"details","d":"jsx","e":"<>\n\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t{errorMsg && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{errorMsg}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{!errorMsg && <>{customAttributeValueList}}\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEventVersionDetails"},{"b":"summary","d":"variable","e":"getEventDetailsTitle"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"summary","d":"variable","e":"getEntityDetailsTitle"},{"b":"details","d":"variable","e":"getEntityDetailsPanel"},{"b":"dataQa","d":"expression","e":"`${entityType}DetailsAccordion`"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"key","d":"expression","e":"eventApiProductVersion.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetail()"},{"b":"dataQa","d":"expression","e":"dataQa ?? `eap-${eventApiProductVersion.id}`"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"key","d":"expression","e":"item.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"variable","e":"accordionDetails"},{"b":"indicatorVariant","d":"expression","e":"indicatorVariant ?? null"},{"b":"dataQa","d":"expression","e":"dataQa ?? null"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"key","d":"expression","e":"item.environmentId"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetail()"},{"b":"dataQa","d":"expression","e":"dataQa ?? `messagingService-${item.environmentId}`"},{"b":"indicatorVariant","d":"expression","e":"environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? \"error\" : undefined"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx","c":[{"b":"summary","d":"jsx","e":"Appearance"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t{formMethods && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"entityAppearance"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"summary","d":"variable","e":"summary"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"isErrorDetailsExpanded"},{"b":"onChange","d":"function","e":"(event, expanded) => errorDetailsMessageExpandHandler(expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"summary","d":"variable","e":"summary"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"isErrorDetailsExpanded"},{"b":"onChange","d":"function","e":"(event, expanded) => errorDetailsMessageExpandHandler(expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"dataQa","d":"expression","e":"`newNodeAccordion-${brokerType.value}`"},{"b":"key","d":"expression","e":"brokerType.value"},{"b":"border","d":"boolean","e":"false"},{"b":"expanded","d":"expression","e":"dragNDropPanelExpansions[brokerType.value]"},{"b":"onChange","d":"function","e":"() =>\n\t\t\t\t\t\tsetDragNDropPanelExpansions((prev) => {\n\t\t\t\t\t\t\tconst newState = { ...prev };\n\n\t\t\t\t\t\t\tnewState[brokerType.value] = !prev[brokerType.value];\n\n\t\t\t\t\t\t\treturn newState;\n\t\t\t\t\t\t})"},{"b":"summary","d":"jsx","e":"{`${brokerType.label} Objects`}"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].application);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Application\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].event);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tShared Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"key","d":"expression","e":"`${consumer.name}-consumerAccordion`"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","c":[{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => handleExpandClick()"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"summary","d":"expression","e":"getAccordionSummary()"},{"b":"details","d":"expression","e":"getAccordionDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"summary","d":"expression","e":"getDomainAccordionSummary(domain)"},{"b":"details","d":"expression","e":"getDomainAccordionDetails(domain)"},{"b":"dataQa","d":"expression","e":"`domainAccordion-${domain.id}`"},{"b":"expanded","d":"expression","e":"expandedDomainMap[domain.id] === true"},{"b":"onChange","d":"function","e":"() => onAccordionChange(domain.id, expandedDomainMap)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","c":[{"b":"id","d":"expression","e":"\"importDomainValidationAccordion\""},{"b":"dataQa","d":"string","e":"importDomainValidationAccordion"},{"b":"summary","d":"expression","e":"customAttributeValidations?.validationMessage"},{"b":"details","d":"expression","e":"customAttributeValidations?.validations"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"border","d":"boolean","e":"false"},{"b":"square","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"summary","d":"expression","e":"`${topicDomain.length} affected Topic Domains`"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t{topicDomain.map((topicDomainEntry) => (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{duplicate && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tUsed in\n\t\t\t\t\t\t\t\t\t\t\t{topicDomainEntry?.applicationDomains?.map(({ name }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t\t\t\t{renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t
"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"summary","d":"jsx","e":"Conflicting Objects"},{"b":"details","d":"variable","e":"conflictingObjects"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"key","d":"expression","e":"`restDeliveryPointAccordion`"},{"b":"summary","d":"variable","e":"accordionSummary"},{"b":"details","d":"variable","e":"restConsumers"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"key","d":"expression","e":"`${configurationName}-${type}-${index}-requestHeader`"},{"b":"summary","d":"expression","e":"getRequestHeaderSummary(header, type, index)"},{"b":"details","d":"expression","e":"getRequestHeaderDetails(header, type, index)"},{"b":"expanded","d":"expression","e":"expandedHeaders[expandKey]"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\tsetExpandedHeaders((prev) => {\n\t\t\t\t\t\tprev[expandKey] = !prev[expandKey];\n\n\t\t\t\t\t\treturn { ...prev };\n\t\t\t\t\t});\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"summary","d":"variable","e":"queueBindingSummary"},{"b":"details","d":"variable","e":"queueBindingDetails"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"summary","d":"variable","e":"queueBindingSummary"},{"b":"details","d":"expression","e":"getQueueBindingDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"key","d":"expression","e":"request.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"variable","e":"accordionDetails"},{"b":"indicatorVariant","d":"expression","e":"indicatorVariant ?? null"},{"b":"dataQa","d":"expression","e":"dataQa ?? null"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"dataQa","d":"expression","e":"\"topicAddressHelp\""},{"b":"details","d":"jsx","e":""},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\tTips and Tricks for Topic Addresses\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"expandTopicAddressHelp"},{"b":"onChange","d":"function","e":"() => setExpandTopicAddressHelp(!expandTopicAddressHelp)"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"square","d":"boolean","e":"false"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"border","d":"boolean","e":"true"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleAccordianClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetail()"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"key","d":"expression","e":"`${application.applicationName}-events`"},{"b":"summary","d":"jsx","e":"{\"Published Events\"}"},{"b":"details","d":"expression","e":"getDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"expression","e":"application.applicationName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"key","d":"expression","e":"`${application.applicationName}-subscriptions`"},{"b":"summary","d":"jsx","e":"{\"Subscribed Events\"}"},{"b":"details","d":"expression","e":"getDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"expression","e":"application.applicationName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"key","d":"variable","e":"applicationDomainName"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t{messages.applicationDomain.label}\n\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t"},{"b":"details","d":"expression","e":"getDetails(applications)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"applicationDomainName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"jsx","e":""},{"b":"disablePadding","d":"boolean","e":"true"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"handleAccordionClick"},{"b":"border","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEventApiVersionDetails"},{"b":"summary","d":"expression","e":"getEventApiDetailsTitle(selectedEventApi)"},{"b":"details","d":"expression","e":"eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"variable","e":"onAccordionChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEventApiProductVersionDetails"},{"b":"summary","d":"expression","e":"getEventApiProductDetailsTitle(selectedEventApiProduct)"},{"b":"details","d":"expression","e":"eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"variable","e":"onAccordionChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"dataQa","d":"string","e":"catalogApplicationVersionDetails"},{"b":"summary","d":"expression","e":"getApplicationDetailsTitle()"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"dataQa","d":"string","e":"catalogEnumVersionDetails"},{"b":"summary","d":"variable","e":"getEnumDetailsTitle"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"dataQa","d":"string","e":"catalogSchemaVersionDetails"},{"b":"summary","d":"variable","e":"getSchemaDetailsTitle"},{"b":"details","d":"expression","e":"getDetailsPanel(true)"},{"b":"expanded","d":"variable","e":"accordionExpanded"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"onChange","d":"function","e":"() => toggleAccordion()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"dataQa","d":"string","e":"demoAccordionList"},{"b":"expanded","d":"expression","e":"serviceAccordionControl[item.id]"},{"b":"onChange","d":"function","e":"() => handleServiceAccordionControl(item.id)"},{"b":"details","d":"expression","e":"renderAccordionDetail(item)"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"id","d":"string","e":"existingMessagingServiceList"},{"b":"summary","d":"expression","e":"renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)"},{"b":"details","d":"expression","e":"renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)"},{"b":"dataQa","d":"string","e":"existingMessagingServiceList"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleRuntimeAgentExpanded"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","c":[{"b":"key","d":"variable","e":"dataQa"},{"b":"summary","d":"variable","e":"summaryElement"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","c":[{"b":"dataQa","d":"expression","e":"dataQa ?? \"importPreviewAccordion\""},{"b":"summary","d":"expression","e":"renderSummary()"},{"b":"details","d":"expression","e":"renderDetails()"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"key","d":"expression","e":"applicationVersion.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleItemClick"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderDetails()"},{"b":"indicatorVariant","d":"expression","e":"isSelected ? \"success\" : null"},{"b":"dataQa","d":"expression","e":"dataQa ?? null"},{"b":"hover","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"dataQa","d":"string","e":"messagingService[Accordion]"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t onTitleLinkClick(messagingService)}\n\t\t\t\t\t\t\t\tdataQa=\"messagingService[Accordion][Title]\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{isCloudBased && } {!messagingService?.eventMeshId && }\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{brokerTypeLabel[messagingService.messagingServiceType] ?? \"Solace\"}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t{!messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t removeMessagingService(messagingService)} title=\"Remove\" dataQa=\"removeMessagingService\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\tConnected Modeled Event Mesh\n\t\t\t\t\t\t{eventMesh ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{eventMesh?.name}{\" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\tNone\n\t\t\t\t\t\t)}\n\t\t\t\t\t
"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"indicatorVariant","d":"expression","e":"hasIndicator ? \"info\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t{title}\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t handleDownloadFile(evt, details, emaType, downloadButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleCopyFile(evt, details, emaType, copyButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
"},{"b":"details","d":"jsx","e":"
{details}
"},{"b":"onChange","d":"function","e":"() => onToggle()"},{"b":"expanded","d":"variable","e":"expanded"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\tConnection File Details\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t handleDownloadFile(evt)}>\n\t\t\t\t\t\t\t\t\tDownload\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tCopy\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":"
{confFileContent}
"},{"b":"onChange","d":"function","e":"() => handleChange(\"confFile\")"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"dataQa","d":"string","e":"connectionFileDownloadDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"EmaPreflightCheckListAccordion"},{"b":"details","d":"expression","e":"renderSummary(emaMode)"},{"b":"expanded","d":"variable","e":"isOpen"},{"b":"onChange","d":"variable","e":"toggle"},{"b":"summary","d":"expression","e":"renderSideInfoBlurbSummary()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"key","d":"variable","e":"summary"},{"b":"summary","d":"jsx","e":"{summary}"},{"b":"details","d":"variable","e":"details"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"border","d":"boolean","e":"false"},{"b":"onChange","d":"variable","e":"onChange"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"summary","d":"expression","e":"connectorTypeDetails?.name ?? \"\""},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":"{renderVendorConfigurationDetails()}"},{"b":"expanded","d":"variable","e":"showSourceDetails"},{"b":"onChange","d":"function","e":"() => setShowSourceDetails(!showSourceDetails)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"summary","d":"expression","e":"\"Solace\""},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.eventBrokerService}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{(serviceDetails?.name && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{serviceDetails.name}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)) || {\"-\"}}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.bindingDestination}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{getConnectorSummaryValue(solaceDestination)}\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"showTargetDetails"},{"b":"onChange","d":"function","e":"() => setShowTargetDetails(!showTargetDetails)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"summary","d":"expression","e":"en.connectors.labels.advancedAuthenticationProperties"},{"b":"dataQa","d":"string","e":"advancedAuthenticationPropsAccordion"},{"b":"border","d":"boolean","e":"false"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"summary","d":"expression","e":"en.connectors.labels.advancedAuthenticationProperties"},{"b":"dataQa","d":"string","e":"advancedAuthenticationPropsAccordion"},{"b":"border","d":"boolean","e":"false"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tvalue={clientCertValues.sslKeyStoreFormat}\n\t\t\t\t\t\t\treadOnly={readOnly}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sslKeyStoreFormatTypes.map((option, index) => {\n\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{option}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslKeyStorePassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslPrivateKeyPassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonBlur={() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\thasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}\n\t\t\t\t\t\t\thelperText={\n\t\t\t\t\t\t\t\t!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t/>\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"summary","d":"expression","e":"t({ id: \"id_spool_resource_calc\", message: \"Expanded Spool Size Billing\" })"},{"b":"expanded","d":"variable","e":"showCalculations"},{"b":"onChange","d":"variable","e":"handleShowCalculations"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"key","d":"expression","e":"section.label"},{"b":"expanded","d":"expression","e":"expanded[index]"},{"b":"summary","d":"expression","e":"section.label"},{"b":"onChange","d":"function","e":"() => handleSection(index)"},{"b":"details","d":"jsx","e":"{renderProperties(section.data, section.properties)}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"border","d":"boolean","e":"true"},{"b":"square","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"client-profile-advanced-settings"},{"b":"summary","d":"expression","e":"t({ id: \"id_advanced_settings\", message: \"Advanced Settings\" })"},{"b":"details","d":"jsx","e":""},{"b":"expanded","d":"variable","e":"advancedSettings"},{"b":"onChange","d":"function","e":"(_, expanded) => setAdvancedSettings(expanded)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","c":[{"b":"summary","d":"expression","e":"t({ id: \"id_used_by_n_services\", message: plural(cluster?.serviceNames.length ?? 0, { one: \"Used by # service\", other: \"Used by # services\" }) })"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"function","e":"() => setExpanded(!expanded)"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"cluster-name-services"},{"b":"details","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{cluster.serviceNames.map((serviceName) => (\n\t\t\t\t\t\t\t\t\t
{serviceName}
\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 1: Configuration on the Event Broker\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tYou must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Broker Manager's Telemetry\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"step-1-accordion"},{"b":"expanded","d":"variable","e":"expandStep1"},{"b":"onChange","d":"variable","e":"handleExpandStep1Click"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 2: Trace Collection\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCheck Status\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{isConfigured ? Update Configuration : Deploy Configuration}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t{distributedTracingStatus === \"notConfigured\" || distributedTracingStatus === \"pending\" || !telemetryProfileName ? (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t{distributedTracingStatus === \"pending\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\tData Collection is not configured.\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"success\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"success\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
"},{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"step-2-accordion"},{"b":"expanded","d":"variable","e":"expandStep2"},{"b":"onChange","d":"variable","e":"handleExpandStep2Click"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"id","d":"expression","e":"`${endpoint.id}Accordion`"},{"b":"key","d":"expression","e":"endpoint.id"},{"b":"border","d":"boolean","e":"false"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{endpoint.name}\n\t\t\t\t\t\t\t\t\t\t\t\t{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{i18n._(accessTypes[endpoint.accessType])}\n\t\t\t\t\t\t\t\t\t\t{endpoint.description}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa=\"actions\"\n\t\t\t\t\t\t\t\t\t\t\t\tid={`public_actions`}\n\t\t\t\t\t\t\t\t\t\t\t\titems={[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tProtocols\n\t\t\t\t\t\t\t\t\t\t\t\tStatus\n\t\t\t\t\t\t\t\t\t\t\t\tPort\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{protocols.map((port) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst value = ports.get(port.protocol);\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{port.label}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? \"Enabled\" : \"Disabled\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? value.port : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
"},{"b":"expanded","d":"expression","e":"expandPublicEndpoint[index]"},{"b":"onChange","d":"function","e":"(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"expanded","d":"expression","e":"expanded[id]"},{"b":"summary","d":"jsx","e":""},{"b":"onChange","d":"variable","e":"handleExpanded"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","c":[{"b":"summary","d":"jsx","e":""},{"b":"expanded","d":"variable","e":"showEndpoints"},{"b":"onChange","d":"variable","e":"handleShowEndpoint"},{"b":"square","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\tClone Options\n\t\t\t\t\t"},{"b":"dataQa","d":"string","e":"clone_options"},{"b":"expanded","d":"variable","e":"showCloneProps"},{"b":"onChange","d":"variable","e":"handleShowCloneProps"},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx","c":[{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\tAdvanced Connection Options\n\t\t\t\t\t"},{"b":"dataQa","d":"string","e":"advanced_connection_options"},{"b":"expanded","d":"variable","e":"showAdvancedProps"},{"b":"onChange","d":"variable","e":"handleShowAdvancedProps"},{"b":"border","d":"boolean","e":"false"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx","c":[{"b":"summary","d":"jsx","e":""},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"handleExpanded"},{"b":"border","d":"boolean","e":"false"},{"b":"indicatorVariant","d":"expression","e":"state.showError ? \"error\" : state.showWarning ? \"warn\" : undefined"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"dataQa","d":"string","e":"brokerSSONestedAccordion"},{"b":"onChange","d":"function","e":"() => toggleBrokerAccordion()"},{"b":"summary","d":"expression","e":"en.brokerSSOConfig.instructionsText"},{"b":"expanded","d":"variable","e":"isBrokerAccordionExpanded"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1. Click Manage Brokers, then select which event broker services to\n\t\t\t\t\t\t\t\tenable to use Broker SSO.
\n\t\t\t\t\t\t\t\t2. Click Enable SSO.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t3. Click Copy Broker URIs.
\n\t\t\t\t\t\t\t\t4. Add the URIs you've copied to your identity provider.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t5. After you complete these steps for your event broker services, you can use SSO to access them.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tTroubleshooting tip\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tIf a broker has more than one URI, the URIs are copied as comma-separated list. If your identity\n\t\t\t\t\t\t\t\t\tprovider does not support this format, manually enter each URI separately.\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","c":[{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"dataQa","d":"string","e":"tokenDetailsAccordion"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"summary","d":"expression","e":"`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`"},{"b":"details","d":"jsx","e":"<>{renderDetails(false)}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","c":[{"b":"key","d":"expression","e":"token.id"},{"b":"expanded","d":"variable","e":"expanded"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"summary","d":"expression","e":"renderAccordionSummary()"},{"b":"details","d":"expression","e":"renderAccordionDetails()"},{"b":"square","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"dataQa","d":"string","e":"openAuditFilterOptionsSection"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Time Range\"\n\t\t\t\t\t\t\t\tvalue={filters.timeRange.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{timeRangeLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Status\"\n\t\t\t\t\t\t\t\tvalue={filters.status.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{statusLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Category\"\n\t\t\t\t\t\t\t\tvalue={filters.category.value}\n\t\t\t\t\t\t\t\tid=\"categoryFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.category}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{autoCompleteField()}\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Event\"\n\t\t\t\t\t\t\t\tvalue={filters.event.value}\n\t\t\t\t\t\t\t\thelperText={!filters.category.value ? en.auditLogs.selectCategory : \"\"}\n\t\t\t\t\t\t\t\tid=\"eventFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"onChange","d":"function","e":"() => setShowFilterOptions((state) => !state)"},{"b":"expanded","d":"variable","e":"showFilterOptions"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.auditLogs.filters}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{selectedFilters?.map((filter, index) => (\n\t\t\t\t\t\t\t\t\t deleteFilter(filter.key)}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t{selectedFilters.length > 0 ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.auditLogs.clearAll}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"summary","d":"jsx","e":""},{"b":"expanded","d":"expression","e":"expanded[index]"},{"b":"onChange","d":"function","e":"() => handleExpanded(index)"},{"b":"border","d":"boolean","e":"true"},{"b":"details","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"dataQa","d":"string","e":"usersAccordion"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"summary","d":"expression","e":"renderUserSummary(0)"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{usersList.map((user, index) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t{isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{hasMore && !showMore && !isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showMore}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{showMore && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showLess}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"border","d":"boolean","e":"false"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"hover","d":"boolean","e":"true"},{"b":"disabled","d":"variable","e":"loading"},{"b":"expanded","d":"variable","e":"isExpanded"},{"b":"onChange","d":"variable","e":"handleAccordionChange"},{"b":"details","d":"jsx","e":""},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\tUpgrade Run Details\n\t\t\t\t\t"},{"b":"dataQa","d":"string","e":"upgrade-run-details"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"sidekickDeploymentInfoExpand"},{"b":"summary","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tConnector Deployment Info\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentDetailsRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshDetailsInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshDetailsInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setSidekickDeploymentInfoExpand(!sidekickDeploymentInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"sidekickDeploymentStatusExpand"},{"b":"summary","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tConnector Deployment Status\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentStatusRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshStatusInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshStatusInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setSidekickDeploymentStatusExpand(!sidekickDeploymentStatusExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"serviceInfoExpand"},{"b":"summary","d":"string","e":"Associated Service"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setServiceInfoExpand(!serviceInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"expanded","d":"variable","e":"sidekickDeploymentDetailsExpand"},{"b":"summary","d":"string","e":"Connector Deployment Details"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setSidekickDeploymentDetailsExpand(!sidekickDeploymentDetailsExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"key","d":"expression","e":"result.role"},{"b":"dataQa","d":"string","e":"agentStatus"},{"b":"details","d":"jsx","e":""},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t{result.role}\n\t\t\t\t\t\t\t\t\t\t"},{"b":"onChange","d":"function","e":"() => handleExpandChange(result.role)"},{"b":"expanded","d":"expression","e":"expandStates[result.role]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"border","d":"boolean","e":"false"},{"b":"dataQa","d":"string","e":"datadogIntegrationsAccordion"},{"b":"summary","d":"expression","e":"\"Datadog Integrations\""},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t"},{"b":"expanded","d":"variable","e":"datadogIntegrationsExpand"},{"b":"onChange","d":"function","e":"() => setDatadogIntegrationsExpand(!datadogIntegrationsExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dataQa","d":"string","e":"manuallyConfigureLogFacetsAccordion"},{"b":"expanded","d":"variable","e":"manuallyConfigureLogExpand"},{"b":"onChange","d":"function","e":"() => setManuallyConfigureLogExpand(!manuallyConfigureLogExpand)"},{"b":"summary","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\tManually configure Log Facets in{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tDatadog\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"},{"b":"details","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tFacets List to create in Datadog:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"expanded","d":"variable","e":"collectorInfoExpand"},{"b":"summary","d":"jsx","e":"
\n\t\t\t\t\t\t\t\tCollector Info\n\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{refreshInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setCollectorInfoExpand(!collectorInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"expanded","d":"variable","e":"serviceInfoExpand"},{"b":"summary","d":"string","e":"Associated Service"},{"b":"details","d":"jsx","e":""},{"b":"onChange","d":"function","e":"() => setServiceInfoExpand(!serviceInfoExpand)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"expanded","d":"variable","e":"collectorConfigExpand"},{"b":"summary","d":"string","e":"Collector Configuration"},{"b":"details","d":"jsx","e":" getCollectorConfig({ infrastructureId: service?.infrastructureId as string })}\n\t\t\t\t\t\t\t/>"},{"b":"onChange","d":"function","e":"() => setCollectorConfigExpand(!collectorConfigExpand)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAccordion/totalUsages.json b/mrc-usage-report-data/per-component/SolaceAccordion/totalUsages.json new file mode 100644 index 000000000..8bfa2f5ec --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAccordion/totalUsages.json @@ -0,0 +1 @@ +86 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAccordion/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceAccordion/usagesByMfe.json new file mode 100644 index 000000000..6f50ff224 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAccordion/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":52,"intg":4,"mc":12,"saas":7,"maas-ops-react":11} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeBadge/commonProps.json b/mrc-usage-report-data/per-component/SolaceAttributeBadge/commonProps.json new file mode 100644 index 000000000..32e3fb2e2 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeBadge/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":62},{"name":"fillColor","count":24},{"name":"size","count":24},{"name":"labelColor","count":21},{"name":"boldLabel","count":20},{"name":"dataQa","count":14},{"name":"height","count":13},{"name":"variant","count":10},{"name":"...","count":10},{"name":"compressed","count":9}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeBadge/customization.json b/mrc-usage-report-data/per-component/SolaceAttributeBadge/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeBadge/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeBadge/files.json b/mrc-usage-report-data/per-component/SolaceAttributeBadge/files.json new file mode 100644 index 000000000..863f9662b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeBadge/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","../../../maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeBadge/instances.json b/mrc-usage-report-data/per-component/SolaceAttributeBadge/instances.json new file mode 100644 index 000000000..3484d29ce --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeBadge/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SMOKE_GREY"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","c":[{"b":"label","d":"expression","e":"\"Update Required\""},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.INFO_LIGHT_BG_BLUE"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.INFO_BLUE_LABEL"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"tagName"},{"b":"labelColor","d":"variable","e":"tagTextColor"},{"b":"fillColor","d":"variable","e":"tagBgColor"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"messages.selectDialog.default"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"dataQa","d":"expression","e":"`${caKey}-toDelete`"},{"b":"size","d":"string","e":"sm"},{"b":"height","d":"string","e":"md"},{"b":"label","d":"expression","e":"\"To Be Deleted\""},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Unavailable\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"false"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"string","e":"Current"},{"b":"variant","d":"string","e":"filled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"string","e":"To Be Removed"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"pubSubStatus"},{"b":"variant","d":"expression","e":"\"filled\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx","c":[{"b":"...","d":"spread","e":"StateChipStyleProps[stateName]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx","c":[{"b":"label","d":"variable","e":"stateName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"label","d":"expression","e":"\"Added\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"label","d":"jsx","e":"{eventMesh.environmentName}"},{"b":"size","d":"expression","e":"\"sm\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"maxWidth","d":"expression","e":"\"100px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"label","d":"variable","e":"state"},{"b":"fillColor","d":"expression","e":"getColor(state).fillColor ?? undefined"},{"b":"labelColor","d":"expression","e":"getColor(state).labelColor ?? undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"label","d":"expression","e":"`${\n\t\t\t\t\t\t\t\texpandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0\n\t\t\t\t\t\t\t\t\t? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length\n\t\t\t\t\t\t\t\t\t: 0\n\t\t\t\t\t\t\t} Added`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isSub ? \"filled\" : \"outlined\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.sub"},{"b":"size","d":"expression","e":"\"xs\""},{"b":"disabled","d":"expression","e":"!isSub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isPub ? \"filled\" : \"outlined\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.pub"},{"b":"size","d":"expression","e":"\"xs\""},{"b":"disabled","d":"expression","e":"!isPub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"expression","e":"dataQa ?? \"overriddenBadge\""},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.INFO_LIGHT_BG_BLUE"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.INFO_BLUE_LABEL"},{"b":"label","d":"expression","e":"en.application.configuration.overridden"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t{`${schemaVersionSelectedMap[row.id].length} Added`}\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t{\"Selected\"}\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"label","d":"expression","e":"\"Declined\""},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Source\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Destination\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Sub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Pub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isSub ? \"filled\" : \"outlined\""},{"b":"label","d":"expression","e":"\"Sub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"disabled","d":"expression","e":"!isSub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"isPub ? \"filled\" : \"outlined\""},{"b":"label","d":"expression","e":"\"Pub\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"disabled","d":"expression","e":"!isPub"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"label","d":"variable","e":"label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"status"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_BLUE"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SMOKE_GREY"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"status"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","c":[{"b":"size","d":"string","e":"xs"},{"b":"label","d":"string","e":"New"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.INFO_BLUE_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.INFO_LIGHT_BG_BLUE"},{"b":"boldLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"label","d":"expression","e":"eventMesh.environmentName"},{"b":"variant","d":"string","e":"filled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"variant","d":"expression","e":"\"filled\""},{"b":"label","d":"expression","e":"\"Recommended\""},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Unavailable\""},{"b":"size","d":"expression","e":"\"xs\""},{"b":"height","d":"expression","e":"\"sm\""},{"b":"compressed","d":"boolean","e":"false"},{"b":"borderRadius","d":"expression","e":"\"sm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx","c":[{"b":"...","d":"spread","e":"badgePropsForStatus"},{"b":"label","d":"variable","e":"status"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"t({ id: \"id_default\", message: \"Default\" })"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"label","d":"expression","e":"ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]"},{"b":"dataQa","d":"expression","e":"dataQa ?? \"connector_status_badge\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"t({ id: \"id_default\", message: \"Default\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"label","d":"expression","e":"i18n._(getEventMeshState(eventMesh))"},{"b":"fillColor","d":"expression","e":"getEventMeshStateFillColor(eventMesh)"},{"b":"labelColor","d":"expression","e":"getEventMeshStateLabelColor(eventMesh)"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"label","d":"expression","e":"language.name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"fillColor","d":"variable","e":"fillColor"},{"b":"labelColor","d":"variable","e":"labelColor"},{"b":"label","d":"variable","e":"label"},{"b":"dataQa","d":"string","e":"statusChip"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_expired\", message: \"Expired\" })"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_expires_soon\", message: \"Expires Soon\" })"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.warnYellow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"label","d":"expression","e":"hasSsoError ? t({ id: \"id_service_outofsync_short\", message: \"SSO out-of-sync\" }) : i18n._(getServiceState(service))"},{"b":"fillColor","d":"expression","e":"getServiceStateFillColor(service, hasSsoError)"},{"b":"labelColor","d":"expression","e":"getServiceStateLabelColor(service, hasSsoError)"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_event_mesh\", message: \"Event Mesh\" })"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"environmentsStr.labels.defaultEnvironment"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"expression","e":"environmentsStr.labels.defaultEnvironment"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"active"},{"b":"label","d":"string","e":"Active"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"inactive"},{"b":"label","d":"string","e":"Inactive"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"dataQa","d":"string","e":"clustersListStatus"},{"b":"label","d":"variable","e":"state"},{"b":"fillColor","d":"variable","e":"fillColor"},{"b":"labelColor","d":"variable","e":"labelColor"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"label","d":"expression","e":"formatStatus(runState)"},{"b":"labelColor","d":"expression","e":"getLabelColor(runState)"},{"b":"fillColor","d":"expression","e":"getFillColor(runState)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"label","d":"expression","e":"formatStatus(row[key])"},{"b":"labelColor","d":"expression","e":"getLabelColor(row[key])"},{"b":"fillColor","d":"expression","e":"getFillColor(row[key])"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"props"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"generateStatusChipProps(\"default\")"},{"b":"size","d":"string","e":"xxs"},{"b":"label","d":"string","e":"TLS Disabled"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"generateStatusChipProps(\"warning\")"},{"b":"size","d":"string","e":"xxs"},{"b":"label","d":"string","e":"Not Latest"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"...","d":"spread","e":"generateStatusChipProps(\"warning\")"},{"b":"label","d":"string","e":"Not Latest"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"label","d":"expression","e":"EMA_STATUS_LABELS.success"},{"b":"...","d":"spread","e":"generateStatusChipProps(POLLING_STATUS.success)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"label","d":"expression","e":"EMA_STATUS_LABELS.error"},{"b":"...","d":"spread","e":"generateStatusChipProps(POLLING_STATUS.error)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"label","d":"expression","e":"EMA_STATUS_LABELS.inProgress"},{"b":"...","d":"spread","e":"generateStatusChipProps(POLLING_STATUS.inProgress)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"label","d":"string","e":"Latest"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.infoBgBlue"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.infoBlue"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"dataQa","d":"string","e":"default-env"},{"b":"label","d":"string","e":"Default"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"dataQa","d":"string","e":"production-env"},{"b":"label","d":"string","e":"Production"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"label","d":"expression","e":"chipInfo.chipLabel"},{"b":"fillColor","d":"expression","e":"chipInfo.fillColor"},{"b":"labelColor","d":"expression","e":"chipInfo.labelColor"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeBadge/totalUsages.json b/mrc-usage-report-data/per-component/SolaceAttributeBadge/totalUsages.json new file mode 100644 index 000000000..4b6f9c39e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeBadge/totalUsages.json @@ -0,0 +1 @@ +64 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeBadge/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceAttributeBadge/usagesByMfe.json new file mode 100644 index 000000000..33cbfe195 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeBadge/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":36,"intg":2,"mc":8,"saas":4,"infra":1,"maas-ops-react":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/commonProps.json b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/commonProps.json new file mode 100644 index 000000000..e710a96e1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":5},{"name":"avpList","count":5},{"name":"labelForKeys","count":5},{"name":"labelForValues","count":5},{"name":"id","count":4},{"name":"onAVPListUpdate","count":4},{"name":"enableRequiredKeyFieldIndicator","count":3},{"name":"keyIsRequiredMessage","count":3},{"name":"hasErrors","count":3},{"name":"helperText","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/customization.json b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/files.json b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/files.json new file mode 100644 index 000000000..4f17b9819 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/instances.json b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/instances.json new file mode 100644 index 000000000..0fdb36029 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"avpList","d":"expression","e":"value || []"},{"b":"labelForKeys","d":"expression","e":"\"Value\""},{"b":"labelForValues","d":"expression","e":"\"Description\""},{"b":"avpKeyValidationCallback","d":"variable","e":"validateEnumKeys"},{"b":"avpValueValidationCallback","d":"variable","e":"validateEnumValues"},{"b":"enableRequiredKeyFieldIndicator","d":"boolean","e":"true"},{"b":"keyIsRequiredMessage","d":"string","e":"Enumeration value is required"},{"b":"onAVPListUpdate","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e);\n\t\t\t\t\t\t\t\t\t}"},{"b":"emptyFieldDisplayValue","d":"string","e":"-"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getErrorMessage(error) : null"},{"b":"avpListMaxHeight","d":"expression","e":"enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined"},{"b":"virtualizedAvpListOption","d":"expression","e":"enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50,\n\t\t\t\t\t\t\t\t\t\t\t\t\tinitialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"id","d":"expression","e":"\"enumerationVersion[values]\""},{"b":"name","d":"expression","e":"\"enumerationVersion[values]\""},{"b":"avpList","d":"expression","e":"enumerationVersion.values"},{"b":"labelForKeys","d":"expression","e":"\"Value\""},{"b":"labelForValues","d":"expression","e":"\"Description\""},{"b":"enableRequiredKeyFieldIndicator","d":"boolean","e":"true"},{"b":"emptyFieldDisplayValue","d":"string","e":"-"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"avpListMaxHeight","d":"expression","e":"enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined"},{"b":"virtualizedAvpListOption","d":"expression","e":"enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50\n\t\t\t\t\t\t\t\t\t\t\t }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"name","d":"string","e":"targetHeaderMapping"},{"b":"avpList","d":"variable","e":"values"},{"b":"labelForValues","d":"expression","e":"() as unknown as string"},{"b":"labelForKeys","d":"expression","e":"en.connectors.targetHeaderMapping.targetHeader"},{"b":"onAVPListUpdate","d":"function","e":"(avpList) => setValues([...avpList])"},{"b":"disableReorder","d":"boolean","e":"true"},{"b":"keyRequired","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"avpList","d":"expression","e":"value || []"},{"b":"labelForKeys","d":"string","e":"Key"},{"b":"labelForValues","d":"string","e":"Value"},{"b":"enableRequiredKeyFieldIndicator","d":"boolean","e":"true"},{"b":"enableRequiredValueFieldIndicator","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"false"},{"b":"keyRequired","d":"boolean","e":"true"},{"b":"keyIsRequiredMessage","d":"string","e":"Required Field!"},{"b":"avpKeyValidationCallback","d":"function","e":"(currentInput, values) => keyValidator(currentInput, values)"},{"b":"avpValueValidationCallback","d":"function","e":"(currentInput, values) => valueValidator(currentInput, values)"},{"b":"onAVPListUpdate","d":"function","e":"(e) => onChange(e)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"avpList","d":"expression","e":"value || []"},{"b":"labelForKeys","d":"string","e":"Key"},{"b":"labelForValues","d":"string","e":"Value"},{"b":"keyRequired","d":"boolean","e":"true"},{"b":"keyIsRequiredMessage","d":"string","e":"Key should exist with the value"},{"b":"onAVPListUpdate","d":"function","e":"(e) => onChange(e)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"disableReorder","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/totalUsages.json b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/usagesByMfe.json new file mode 100644 index 000000000..d68552105 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceAttributeValuePairForm/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2,"intg":1,"saas":1,"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBackDrop/commonProps.json b/mrc-usage-report-data/per-component/SolaceBackDrop/commonProps.json new file mode 100644 index 000000000..8ff102f9d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBackDrop/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":17},{"name":"data-qa","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBackDrop/customization.json b/mrc-usage-report-data/per-component/SolaceBackDrop/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBackDrop/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBackDrop/files.json b/mrc-usage-report-data/per-component/SolaceBackDrop/files.json new file mode 100644 index 000000000..2f9a96996 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBackDrop/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBackDrop/instances.json b/mrc-usage-report-data/per-component/SolaceBackDrop/instances.json new file mode 100644 index 000000000..c4d698528 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBackDrop/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"open","d":"expression","e":"connectorDetailsLoading || connectorMetricsLoading"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"open","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx","c":[{"b":"open","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"open","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","c":[{"b":"open","d":"variable","e":"tokenIsLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"open","d":"expression","e":"isPageLoading || createTokenIsLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"open","d":"variable","e":"isTokensListLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"open","d":"variable","e":"saveInProgress"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"open","d":"variable","e":"loading"},{"b":"data-qa","d":"string","e":"loading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"open","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"open","d":"expression","e":"isLoading && isLoadingMicroIntegrations && isLoadingAgents"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"open","d":"variable","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"open","d":"variable","e":"loadingOrgDetails"},{"b":"data-qa","d":"string","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"open","d":"variable","e":"loadingInfrastructures"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"open","d":"variable","e":"datacenterLoading"},{"b":"data-qa","d":"string","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"open","d":"variable","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"open","d":"variable","e":"loading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBackDrop/totalUsages.json b/mrc-usage-report-data/per-component/SolaceBackDrop/totalUsages.json new file mode 100644 index 000000000..8e2afd342 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBackDrop/totalUsages.json @@ -0,0 +1 @@ +17 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBackDrop/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceBackDrop/usagesByMfe.json new file mode 100644 index 000000000..c3948d909 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBackDrop/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3,"saas":7,"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBreadcrumb/commonProps.json b/mrc-usage-report-data/per-component/SolaceBreadcrumb/commonProps.json new file mode 100644 index 000000000..96c440bc4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBreadcrumb/commonProps.json @@ -0,0 +1 @@ +[{"name":"paths","count":16},{"name":"maxItems","count":8},{"name":"onRouteClick","count":8},{"name":"dataQa","count":6},{"name":"id","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBreadcrumb/customization.json b/mrc-usage-report-data/per-component/SolaceBreadcrumb/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBreadcrumb/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBreadcrumb/files.json b/mrc-usage-report-data/per-component/SolaceBreadcrumb/files.json new file mode 100644 index 000000000..6487218fc --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBreadcrumb/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBreadcrumb/instances.json b/mrc-usage-report-data/per-component/SolaceBreadcrumb/instances.json new file mode 100644 index 000000000..8143643c4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBreadcrumb/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","c":[{"b":"paths","d":"variable","e":"breadcrumbs"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: \"Micro-Integrations\", link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: `/${id}`,\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"paths","d":"expression","e":"breadcrumbsPaths2()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: en.connectors.connectorFlows, link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: \"editV2\",\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_cert_auths\", message: \"Certificate Authorities\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_service_authentications\", message: \"Service Authentications\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_client_profiles\", message: \"Client Profiles\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"id","d":"string","e":"groupManagementBreadcrumb"},{"b":"maxItems","d":"number","e":"2"},{"b":"dataQa","d":"string","e":"groupManagementBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/account-details/user-groups\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.userManagement}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.groupManagement}`\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"maxItems","d":"number","e":"2"},{"b":"dataQa","d":"string","e":"NotificationLinksBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(route) => history.push(route)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/notifications\",\n\t\t\t\t\t\t\ttitle: en.notifications.notifications\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: notificationTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"id","d":"string","e":"connectorBreadcrumb"},{"b":"maxItems","d":"number","e":"3"},{"b":"dataQa","d":"string","e":"connectorBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Connector Deployments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"onRouteClick","d":"variable","e":"onBreadcumbClick"},{"b":"paths","d":"variable","e":"customerDetailsPath"},{"b":"maxItems","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"onRouteClick","d":"variable","e":"onBreadcumbClick"},{"b":"paths","d":"variable","e":"customerDetailsPath"},{"b":"maxItems","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","c":[{"b":"paths","d":"variable","e":"breadcrumbs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"id","d":"string","e":"environmentsBreadcrumb"},{"b":"maxItems","d":"number","e":"3"},{"b":"dataQa","d":"string","e":"environmentsBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Environments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"id","d":"string","e":"distributedTracingBreadcrumb"},{"b":"maxItems","d":"number","e":"3"},{"b":"dataQa","d":"string","e":"distributedTracingBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"id","d":"string","e":"distributedTracingBreadcrumb"},{"b":"maxItems","d":"number","e":"4"},{"b":"dataQa","d":"string","e":"distributedTracingBreadcrumb"},{"b":"onRouteClick","d":"function","e":"(link) => history.push(link)"},{"b":"paths","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + service?.orgId,\n\t\t\t\t\t\t\ttitle: service?.orgId as string\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: `/organizations/${service?.orgId}/distributed-tracing`,\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing Collector Details\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBreadcrumb/totalUsages.json b/mrc-usage-report-data/per-component/SolaceBreadcrumb/totalUsages.json new file mode 100644 index 000000000..19c7bdba7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBreadcrumb/totalUsages.json @@ -0,0 +1 @@ +16 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceBreadcrumb/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceBreadcrumb/usagesByMfe.json new file mode 100644 index 000000000..a3ca19d53 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceBreadcrumb/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":4,"mc":3,"saas":2,"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceButton/commonProps.json b/mrc-usage-report-data/per-component/SolaceButton/commonProps.json new file mode 100644 index 000000000..3e0cddecd --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":810},{"name":"onClick","count":593},{"name":"dataQa","count":407},{"name":"href","count":214},{"name":"isDisabled","count":174},{"name":"title","count":91},{"name":"dense","count":72},{"name":"key","count":52},{"name":"id","count":32},{"name":"type","count":16}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceButton/customization.json b/mrc-usage-report-data/per-component/SolaceButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceButton/files.json b/mrc-usage-report-data/per-component/SolaceButton/files.json new file mode 100644 index 000000000..f02725d23 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx","../../../maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/components/ToastAction.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","../../../maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx","../../../maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx","../../../maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","../../../maas-ops-ui/micro-frontends/infra/src/utils/helper.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","../../../broker-manager/src/pages/help/learning-centre/react-components/section.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceButton/instances.json b/mrc-usage-report-data/per-component/SolaceButton/instances.json new file mode 100644 index 000000000..91df8453b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"jsonSchemaSpecLink"},{"b":"href","d":"string","e":"https://json-schema.org/specification.html"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"smfTopics\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"smfTopics\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"toggleCheckbox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => onDownload(false)"},{"b":"dataQa","d":"string","e":"downloadButton"},{"b":"isDisabled","d":"expression","e":"!Object.values(namingStrategy).includes(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"expression","e":"onOpenVersion ?? onClose"},{"b":"dataQa","d":"string","e":"returnToApplicationButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleUndo"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"function","e":"() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleDisplayDiscrepancyTable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"cancel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"linkToApplicationVersionDetails"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"component","d":"string","e":"span"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://www.solace.com"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleDisplayDiscrepancyTable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeConfigSidePanelButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"resourceAssignmentDelete"},{"b":"title","d":"expression","e":"messages.remove"},{"b":"onClick","d":"function","e":"() => onRemoveResourceAssignment(resourceAssignment)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"outline\""},{"b":"onClick","d":"function","e":"() => onAddResourceAssignment(displayedUserTypes[0])"},{"b":"isDisabled","d":"variable","e":"isDisabled"},{"b":"dataQa","d":"string","e":"addUser"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClear"},{"b":"dataQa","d":"expression","e":"`${dataQa}-clear`"},{"b":"title","d":"string","e":"Clear Topic Address"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClear"},{"b":"dataQa","d":"expression","e":"`${dataQa}-clear`"},{"b":"title","d":"string","e":"Clear Topic Address"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleEditClick"},{"b":"dataQa","d":"string","e":"configureVarButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAdd"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"isDisabled","d":"variable","e":"removeDisabled"},{"b":"onClick","d":"function","e":"() => handleRemove(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicSubscriptions\", \"link\")"},{"b":"data-qa","d":"string","e":"infoBlurbLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion.clientProfileNameRemove`"},{"b":"onClick","d":"variable","e":"handlRemoveClientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageClientProfile"},{"b":"dataQa","d":"string","e":"manageClientProfileName-button"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleStartOverriding"},{"b":"dataQa","d":"string","e":"overrideClientProfileName-button"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleResetOverride"},{"b":"dataQa","d":"string","e":"resetOverrideClientProfileName-button"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageClientProfile"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion.clientProfileNameRemove`"},{"b":"onClick","d":"variable","e":"handlRemoveClientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://semver.org"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleEdit"},{"b":"dataQa","d":"string","e":"editDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSave"},{"b":"isDisabled","d":"variable","e":"saveInProgress"},{"b":"dataQa","d":"string","e":"saveDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"dataQa","d":"string","e":"changeVersionState"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onChangeVersionState"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","c":[{"b":"key","d":"expression","e":"\"customAttributeDefinitionsEditorButton\""},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleOpenCustomAttributeDialog()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleNavigateBackToOrigin"},{"b":"dense","d":"boolean","e":"true"},{"b":"underline","d":"string","e":"none"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"selectedVersionInEdit"},{"b":"onClick","d":"function","e":"() => handleVersionEdit(selectedVersion)"},{"b":"dataQa","d":"string","e":"editThisVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"selectedVersionInEdit"},{"b":"onClick","d":"function","e":"() => handleVersionEdit(selectedVersion)"},{"b":"dataQa","d":"string","e":"editThisVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"isDisabled","d":"variable","e":"disableFormButtons"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancelVersion"},{"b":"dataQa","d":"string","e":"discardChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || disableFormButtons"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleSubmitVersionClick"},{"b":"dataQa","d":"string","e":"saveVersionButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || disableFormButtons"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSubmitAndCloseVersionClick"},{"b":"dataQa","d":"string","e":"saveVersionAndCloseButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCloseVersion"},{"b":"dataQa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onVersionAdd"},{"b":"dataQa","d":"string","e":"addVersionButton"},{"b":"title","d":"string","e":"Add New Version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowVersionDetails(false)"},{"b":"title","d":"string","e":"Hide Version List"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowVersionDetails(true)"},{"b":"title","d":"string","e":"Show Version List"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx","c":[{"b":"dataQa","d":"string","e":"createVersion"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreateVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"setKafkaPreferences"},{"b":"onClick","d":"expression","e":"onSetKafkaPreferences ? onSetKafkaPreferences : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"eventMeshLink"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, \"_self\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learningCenterLink"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(\"/learningCenter\", \"_self\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_environments"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/environments.htm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"lcVideoTutorialsLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"videoTutorials\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"trainingCoursesLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"courses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"epOverviewDocsLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"overviewDocs\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-viewall-button`"},{"b":"onClick","d":"function","e":"() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"customAttributes\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"customAttributes\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"dataQa","d":"expression","e":"`${caKey}-add`"},{"b":"variant","d":"string","e":"text"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => onAdd(entityType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Edit"},{"b":"dataQa","d":"expression","e":"`${caKey}-edit`"},{"b":"onClick","d":"function","e":"() => onEditName(entityType, index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`${caKey}-delete`"},{"b":"onClick","d":"function","e":"() => handleDelete(entityType, index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBackButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onViewInDesigner(version)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"expression","e":"\"cancelAddEventToApplication\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSave"},{"b":"dataQa","d":"expression","e":"\"saveAddEventToApplication\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"expression","e":"\"closeDetailsDialog\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBackButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onViewInDesigner?.(version)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onAddToApplication(version)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`${protocol}//${host}/environments`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx","c":[{"b":"dataQa","d":"string","e":"commandBlockCopyButton"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCopy"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][addSchemaRegistry]"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddSchemaRegistry"},{"b":"isDisabled","d":"expression","e":"schemaAuthArray?.length > 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/account-details/private-regions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseMessagingServiceDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOpenMessagingServiceDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","c":[{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx","c":[{"b":"aria-label","d":"expression","e":"\"More Actions\""},{"b":"...","d":"spread","e":"buttonProps"},{"b":"onClick","d":"variable","e":"handleMenuClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"latestGraphUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onDismiss"},{"b":"title","d":"string","e":"Close"},{"b":"dataQa","d":"string","e":"close-btn-inline-banner"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx","c":[{"b":"id","d":"string","e":"action-btn-inline-banner"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"variable","e":"isButtonDisabled"},{"b":"onClick","d":"variable","e":"onButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"recenterGraph"},{"b":"title","d":"expression","e":"\"Center Graph\""},{"b":"isDisabled","d":"variable","e":"graphEmpty"},{"b":"dataQa","d":"string","e":"centerGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"recenterGraph"},{"b":"title","d":"expression","e":"\"Center Graph\""},{"b":"dataQa","d":"string","e":"centerGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"docUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"docUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"docUrl"},{"b":"onClick","d":"function","e":"() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onDismiss"},{"b":"title","d":"string","e":"Close"},{"b":"dataQa","d":"string","e":"close-btn-inline-banner"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://semver.org"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"dataQa","d":"expression","e":"action.dataQa"},{"b":"key","d":"expression","e":"action.id"},{"b":"...","d":"spread","e":"action"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`${customAttributeFilterType}-delete`"},{"b":"onClick","d":"variable","e":"handleDeleteFilter"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`${filterType}-delete`"},{"b":"onClick","d":"function","e":"() => handleDelete(filterType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters(true, true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"variable","e":"handleApply"},{"b":"isDisabled","d":"expression","e":"!hasUnsavedChanges"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learnMore"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"key","d":"string","e":"goToRuntime"},{"b":"dataQa","d":"string","e":"goToRuntime"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\thistory.push(`/ep/runtime`);\n\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"key","d":"string","e":"goToDesigner"},{"b":"dataQa","d":"string","e":"goToDesigner"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\thistory.push(`/ep/designer`);\n\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => handleGoToSelectedApplicationDomain()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"title","d":"string","e":"Edit"},{"b":"onClick","d":"variable","e":"onEdit"},{"b":"dataQa","d":"string","e":"domainGraphSidePanel-details-editBtn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleOpenFullConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClickCancel"},{"b":"dataQa","d":"string","e":"cancelDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => handleSave(existingLatestNonRetiredVersion)"},{"b":"isDisabled","d":"expression","e":"!isDirty || saveInProgress || isWritingEpCore"},{"b":"dataQa","d":"string","e":"saveDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelCustomAttributesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => handleSave()"},{"b":"isDisabled","d":"expression","e":"!isDirty || isWritingEpCore || saveInProgress"},{"b":"dataQa","d":"string","e":"saveCustomAttributesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"title","d":"string","e":"Edit"},{"b":"onClick","d":"variable","e":"onEdit"},{"b":"dataQa","d":"expression","e":"`${entityType}NodeSidePanelCustomAttributeEditButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleOpenFullConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"aria-label","d":"expression","e":"\"Add To Graph\""},{"b":"title","d":"string","e":"Add To Graph"},{"b":"variant","d":"string","e":"outline"},{"b":"endIcon","d":"jsx","e":""},{"b":"dataQa","d":"string","e":"addToGraph-button"},{"b":"isDisabled","d":"expression","e":"!!nodeIdWithUnsavedChanges"},{"b":"onClick","d":"variable","e":"handleMenuClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseInfoBlurb"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Edit Appearance"},{"b":"onClick","d":"variable","e":"handleEditAppearance"},{"b":"dataQa","d":"string","e":"edit-appearance-button"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClosePanel"},{"b":"dataQa","d":"string","e":"leftSidePanelCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseInfoBlurb"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"(e) => handleNavigateToComponentList(e, entityType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseSearchPanel"},{"b":"dataQa","d":"string","e":"searchPanelCollapseButton"},{"b":"title","d":"string","e":"Collapse"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"dataQa","d":"string","e":"findOnGraph"},{"b":"key","d":"expression","e":"\"findOnGraph\""},{"b":"onClick","d":"function","e":"() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)"},{"b":"isDisabled","d":"variable","e":"searchButtonDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"dataQa","d":"expression","e":"DomainGraphLeftPanelMode.ADD_OBJECTS"},{"b":"key","d":"expression","e":"DomainGraphLeftPanelMode.ADD_OBJECTS"},{"b":"onClick","d":"function","e":"() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)"},{"b":"isDisabled","d":"expression","e":"leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => refreshGraphCallback?.(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => goToComponentLists?.()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRefreshGraph"},{"b":"title","d":"expression","e":"\"Refresh graph with the latest versions and layout\""},{"b":"dataQa","d":"string","e":"refreshGraph-button"},{"b":"isDisabled","d":"expression","e":"graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"en.common.button.download"},{"b":"dataQa","d":"expression","e":"`${name}-configDownload`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\tdownload(new Blob([configuration]), getConfigurationName(name), \"application/json\");\n\t\t\t}"},{"b":"isDisabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"(e) => handleEventVersionSelect(e, item)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleToggleEventsExpand"},{"b":"isDisabled","d":"expression","e":"sortedItems.length === 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleFindEventsClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddButtonClick"},{"b":"isDisabled","d":"expression","e":"!editableSubscriptions"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${consumerIndex}.add`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => setShowSuggestedEvents(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"isDisabled","d":"expression","e":"consumerIdInSidepanel === id && sidePanelOpen"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.delete`"},{"b":"onClick","d":"variable","e":"handleDeleteButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleAdd"},{"b":"isDisabled","d":"expression","e":"subscription === \"\" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress"},{"b":"dataQa","d":"string","e":"subscriptionAddButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${consumerIndex}.${index}.remove`"},{"b":"onClick","d":"function","e":"() => handleDeleteButtonClick(consumerId, index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${consumer.name}-manageConfigButton`"},{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleManageConfiguration"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleInitiateOverride"},{"b":"dataQa","d":"expression","e":"`${consumer.name}-overrideConfigButton`"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`${consumer.name}-clearOverrideButton`"},{"b":"onClick","d":"variable","e":"handleResetOverride"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${consumer.name}-manageConfigButton`"},{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleManageConfiguration"},{"b":"isDisabled","d":"expression","e":"openedSidePanel === SidePanel.manageConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"en.common.button.remove"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.configurationRemove`"},{"b":"onClick","d":"function","e":"() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onAutoCreateConsumers"},{"b":"isDisabled","d":"variable","e":"autoCreateConsumersInProgress"},{"b":"dataQa","d":"string","e":"autoCreateConsumersButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"sampleDocs\", \"link\")"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => Mixpanel.track(\"clickSampleDocumentationLink\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"id","d":"string","e":"createAppDomain-btn"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreate"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"id","d":"string","e":"importAppDomain-btn"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => importDomainsFileRef.current?.click()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSetUserAccess"},{"b":"dataQa","d":"string","e":"userAccessButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleOpen"},{"b":"dataQa","d":"string","e":"openApplicationDomainButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.eventApiProduct.labels.approvalTypes.url"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.eventApiProduct.labels.availability.url"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setOpen(true)"},{"b":"isDisabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.eventApiProduct.labels.availability.dialogUrl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(handleSaveEntityAndVersion)"},{"b":"isDisabled","d":"expression","e":"createEventApiProduct.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"expression","e":"`planDeleteButton-${index}`"},{"b":"onClick","d":"function","e":"() => onPlanDelete(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"eapAddPlanButton"},{"b":"isDisabled","d":"expression","e":"planFields.length === 5"},{"b":"onClick","d":"variable","e":"onAddPlanClicked"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"dataQa","d":"string","e":"createEventApiProductButton"},{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"onClick","d":"variable","e":"launchUserAccessDialog"},{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"getRrbacRoles.isLoading || getAttributeAssignments.isLoading"},{"b":"dataQa","d":"string","e":"userAccessButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"isSaveButtonDisabled()"},{"b":"onClick","d":"expression","e":"handleSubmit(onFormSubmit)"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleEdit"},{"b":"dataQa","d":"string","e":"editApplicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleClose"},{"b":"dataQa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"title","d":"expression","e":"\"Launch link\""},{"b":"dataQa","d":"string","e":"launchTopicAddressResourceLink"},{"b":"href","d":"variable","e":"resource"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"\"Edit link\""},{"b":"dataQa","d":"string","e":"topicAddressResourcesEdit"},{"b":"onClick","d":"function","e":"() => setIsEditing(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"expression","e":"\"Delete link\""},{"b":"dataQa","d":"string","e":"topicAddressResourcesDelete"},{"b":"onClick","d":"function","e":"() => onDelete()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"topicAddressResourcesAdd"},{"b":"onClick","d":"function","e":"() => setIsEditing(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"addTopicDomain"},{"b":"onClick","d":"variable","e":"handleAddTopicDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"deleteTopicDomain"},{"b":"onClick","d":"function","e":"() => handleDeleteFromUI(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"deleteTopicDomain"},{"b":"onClick","d":"function","e":"() => handleDeleteFromBackend(topicDomain.id)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"source === \"application\" ? en.application.links.extension : en.eventApi.links.extension"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"version === \"2.5.0\" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.application.links.asyncApi"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(handleSaveEntityAndVersion)"},{"b":"isDisabled","d":"expression","e":"createEventApi.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"id","d":"expression","e":"item.id"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t\tonFilterButtonClicked(item);\n\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`filterButton-${item.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","c":[{"b":"variant","d":"expression","e":"selectedEventApiVersionIds.includes(versionData.id) ? \"text\" : \"outline\""},{"b":"id","d":"expression","e":"`${versionData.id}-versionButton`"},{"b":"key","d":"expression","e":"`${versionData.id}-versionButton`"},{"b":"onClick","d":"function","e":"() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? \"remove\" : \"add\", versionData)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageEventApis"},{"b":"isDisabled","d":"variable","e":"sidePanelOpen"},{"b":"dataQa","d":"string","e":"manageEventApisButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"expression","e":"messages[configType].emptyLinkref"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"string","e":"selectAnotherTemplateAction"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"onSelect"},{"b":"isDisabled","d":"variable","e":"isSelectDisabled"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"expression","e":"\"customizeAction\""},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onCustomize"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"dataQa","d":"expression","e":"\"refreshAction\""},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onRefresh"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"variant","d":"expression","e":"action.variant || \"text\""},{"b":"onClick","d":"expression","e":"action.onClick"},{"b":"dataQa","d":"expression","e":"action.dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"expression","e":"`switchModeAction-${modeToSelect}`"},{"b":"title","d":"variable","e":"selectMessage"},{"b":"onClick","d":"function","e":"() => setModeSelectionToConfirm(modeToSelect)"},{"b":"isDisabled","d":"expression","e":"modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"applyAction"},{"b":"title","d":"expression","e":"messagesCommon.button.apply"},{"b":"onClick","d":"variable","e":"applyChanges"},{"b":"isDisabled","d":"expression","e":"!!fetchError || templateNotFound || !!templateOutOfSync"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddConsumer"},{"b":"dataQa","d":"string","e":"addConsumerButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"custom-learnMore"},{"b":"href","d":"expression","e":"en.application.links.queueConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"template-learnMore"},{"b":"href","d":"expression","e":"messagesTemplate.solaceQueue.infoBlurb.linkHref"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`switchModeAction-${modeToSelect}`"},{"b":"title","d":"variable","e":"selectMessage"},{"b":"onClick","d":"function","e":"() => handleModeSelection(modeToSelect)"},{"b":"isDisabled","d":"expression","e":"modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"applyAction"},{"b":"title","d":"expression","e":"messagesCommon.button.apply"},{"b":"onClick","d":"variable","e":"applyChanges"},{"b":"isDisabled","d":"expression","e":"!!fetchError ||\n\t\t\t\t\t\t(templates?.length && (templateNotFound || !!templateOutOfSync)) ||\n\t\t\t\t\t\ttemplateHasSchemaErrors ||\n\t\t\t\t\t\t!!errors[FormNameConfiguration]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setShowConsumerType(true)"},{"b":"dataQa","d":"string","e":"rdpShowConsumerType"},{"b":"isDisabled","d":"variable","e":"showConsumerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRemoveRestDeliveryPointConfiguration"},{"b":"dataQa","d":"string","e":"rdpShowReset"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOverrideRestDeliveryPointConfiguration"},{"b":"dataQa","d":"string","e":"rdpShowOverride"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRemoveRestDeliveryPointConfiguration"},{"b":"title","d":"string","e":"Delete"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setShowRestConsumer(true)"},{"b":"isDisabled","d":"expression","e":"showRestConsumer || !configurationTypeId || !isEditing"},{"b":"dataQa","d":"string","e":"rdpShowRestConsumer"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","c":[{"b":"onClick","d":"variable","e":"handleOnDelete"},{"b":"variant","d":"expression","e":"\"icon\""},{"b":"title","d":"string","e":"Delete"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => onRemove(type, header)"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"removeRequestHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"addQueueBinding"},{"b":"isDisabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOverride"},{"b":"dataQa","d":"string","e":"overrideQueueBinding"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClearOverride"},{"b":"dataQa","d":"string","e":"clearOverrideQueueBinding"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleRemoveConfiguration()"},{"b":"title","d":"string","e":"Delete"},{"b":"dataQa","d":"string","e":"removeQueueBinding"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setShowRequestHeaderDialog(true)"},{"b":"dataQa","d":"string","e":"addRequestHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOnAddQueueBinding"},{"b":"dataQa","d":"expression","e":"isGlobal ? \"addQueueBinding\" : \"overrideQueueBinding\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"enumerations\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleUndoUpload(valuesToUndo)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t}"},{"b":"isDisabled","d":"variable","e":"fileUploading"},{"b":"dataQa","d":"string","e":"enumerationVersion[values]-importFromFileButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit((data) => {\n\t\t\t\t\t\t\t\tif (!validateEnumValueSets()) {\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst preparedData = prepareEntityForBackend(data);\n\n\t\t\t\t\t\t\t\treturn handleSaveEntityAndVersion(preparedData);\n\t\t\t\t\t\t\t})"},{"b":"isDisabled","d":"expression","e":"createEnumeration.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageSchemas"},{"b":"isDisabled","d":"variable","e":"sidePanelOpen"},{"b":"dataQa","d":"expression","e":"`manage${keyOrValue}SchemasButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageSchemasForPrimitiveType"},{"b":"isDisabled","d":"variable","e":"sidePanelOpen"},{"b":"dataQa","d":"expression","e":"`manage${keyOrValue}SchemasForPrimitiveTypeButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRemoveSchema"},{"b":"dataQa","d":"expression","e":"`remove${keyOrValue}SchemaButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertVersionForSave)"},{"b":"isDisabled","d":"expression","e":"createEvent.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"topicAddresses\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleSchemaVersionSelect"},{"b":"isDisabled","d":"expression","e":"sharedSearchCriteria && !schema.shared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSchemaVersionRemove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleSchemaVersionSelect"},{"b":"isDisabled","d":"expression","e":"sharedSearchCriteria && !schema.shared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSchemaVersionRemove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"notifyParentOfSchemaVersionSelection"},{"b":"dataQa","d":"string","e":"selectPrimitiveTypeButton"},{"b":"isDisabled","d":"expression","e":"!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBackButton"},{"b":"dataQa","d":"string","e":"backButton"},{"b":"title","d":"string","e":"Back"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSchemaVersionSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSchemaVersionRemove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"exampleSchemasButton"},{"b":"href","d":"string","e":"https://www.jsonschemavalidator.net/"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(handleSaveEntityAndVersion)"},{"b":"data-qa","d":"string","e":"createAndSelectButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOpenQuickCreateSchema"},{"b":"dataQa","d":"expression","e":"\"quickCreateSchemaButton\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kafkaEvents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Back to add subscription"},{"b":"onClick","d":"function","e":"() => handleManageSubscriptions(currentSubscription, consumerName)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"string","e":"Quick Create Event"},{"b":"onClick","d":"function","e":"() => handleOpenDialog(\"quickCreateEvent\")"},{"b":"dataQa","d":"string","e":"quickCreateEventButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tremove();\n\t\t\t\t\t\t\t\tremoveToast();\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAutoCreateConsumers"},{"b":"isDisabled","d":"variable","e":"autoCreateConsumersInProgress"},{"b":"dataQa","d":"string","e":"autoCreateConsumersButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageEvents"},{"b":"isDisabled","d":"expression","e":"sidePanelOpen && openedSidePanel === SidePanel.manageEvents"},{"b":"dataQa","d":"string","e":"manageEventsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onToggleInputBType"},{"b":"title","d":"variable","e":"title"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetIsEditing(true);\n\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"credentialsEdit"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCloseTopicAddressHelp"},{"b":"data-qa","d":"string","e":"topicAddressHelpCloseButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertVersionForSave)"},{"b":"data-qa","d":"string","e":"createAndSelectButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"gotoRuntimeTab"},{"b":"isDisabled","d":"expression","e":"!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"launchRDPDeploymentDialog"},{"b":"dataQa","d":"string","e":"addRDPToBrokerButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"key","d":"expression","e":"dataQa + \"-expandAll\""},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleToggleRequestsExpand"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSendAllRequests"},{"b":"dataQa","d":"string","e":"sendRequestButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"declinedRequests.length + requestsToCreate.length === 0 ? \"outline\" : \"call-to-action\""},{"b":"dataQa","d":"string","e":"manageRequestButton"},{"b":"onClick","d":"variable","e":"handleOpenRequestPanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"isDisabled","d":"expression","e":"isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)"},{"b":"onClick","d":"function","e":"() => setAddToEnvironmentData({ ...eventBrokerRecord })"},{"b":"dataQa","d":"expression","e":"`${eventBroker.id}-addApplicationButton`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageRelationshipBtnClick"},{"b":"dataQa","d":"string","e":"manageLinksBtn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`sub-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.sub ? \"call-to-action\" : \"outline\""},{"b":"isDisabled","d":"expression","e":"versionData.stateName.toLowerCase() === \"retired\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`pub-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.pub ? \"call-to-action\" : \"outline\""},{"b":"isDisabled","d":"expression","e":"versionData.stateName.toLowerCase() === \"retired\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEventVersionSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${ApplicationFlowDirection.Source}-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.source ? \"call-to-action\" : \"outline\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });\n\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"versionData.filtered"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","c":[{"b":"dataQa","d":"expression","e":"`${ApplicationFlowDirection.Destination}-${versionData.id}`"},{"b":"variant","d":"expression","e":"versionData.destination ? \"call-to-action\" : \"outline\""},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });\n\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"versionData.filtered"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleClose"},{"b":"dataQa","d":"string","e":"closeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonAddSubscription(item);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"data-qa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"!isValid || !isDirty"},{"b":"onClick","d":"expression","e":"mode === \"existingConsumer\" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)"},{"b":"data-qa","d":"string","e":"addSubscriptionButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertFormValuesForSave)"},{"b":"isDisabled","d":"expression","e":"createApplication.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setInternalSearchText(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setTriggerVersionDuplication(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"exampleSchemasButton"},{"b":"href","d":"string","e":"https://www.jsonschemavalidator.net/"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleManageReferencedSchemas"},{"b":"isDisabled","d":"expression","e":"sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas"},{"b":"dataQa","d":"string","e":"manageReferencedSchemasButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"onClick","d":"variable","e":"handleCreate"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"expression","e":"handleSubmit(convertVersionForSave)"},{"b":"isDisabled","d":"expression","e":"createSchema.isLoading"},{"b":"dataQa","d":"string","e":"saveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onReviewClick"},{"b":"dataQa","d":"string","e":"reviewButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onReviewClick"},{"b":"dataQa","d":"string","e":"revokeButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onReviewClick"},{"b":"dataQa","d":"string","e":"approveButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Delete"},{"b":"onClick","d":"variable","e":"handleClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"variable","e":"label"},{"b":"onClick","d":"variable","e":"handleClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"variable","e":"variant"},{"b":"startIcon","d":"expression","e":"showSparkle ? : undefined"},{"b":"onClick","d":"variable","e":"handleClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"dataQa","d":"expression","e":"`${camelCase(title)}-${secondaryAction.completed}-button`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsecondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);\n\t\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"secondaryAction?.disabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpEMA\");\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpMEM\");\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"sampleApplicationsDomainsLink"},{"b":"href","d":"expression","e":"brandableText.solace.links.sampleDocs"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\thandleOpenLink(\"design\");\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"dismissExploreSample"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\thandleOpenLink(\"videoTutorials\");\n\t\t\t\t\t\t\t\t}"},{"b":"endIcon","d":"jsx","e":""},{"b":"dataQa","d":"string","e":"howToVideosButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleOpenUserManagement"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => handleOpenAddToApplicationModal(selectedEvent)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","c":[{"b":"variant","d":"variable","e":"variant"},{"b":"onClick","d":"function","e":"() => handleCollectData(selectedMessagingService)"},{"b":"dataQa","d":"string","e":"runDiscoveryScan"},{"b":"isDisabled","d":"variable","e":"isDiscoveryScanButtonDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleAddExistingMessagingService"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"dataQa","d":"string","e":"connectEventBrokerButton"},{"b":"onClick","d":"variable","e":"handleAddExistingMessagingService"},{"b":"key","d":"expression","e":"\"addMessageService\""},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"id","d":"string","e":"viewConnectionDetailsButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleViewConnectionDetails"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleDeleteMessagingService(selectedMessagingService)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(\"/account-details/private-regions\")"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"datacenters\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"datacenters\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setIsAddMode(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"title","d":"string","e":"Back to manage associations"},{"b":"onClick","d":"function","e":"() => setIsAddMode(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleRemoveVersionEntity(entityVersion.id)"},{"b":"dataQa","d":"string","e":"removeEntityFromListButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"backToGraphView"},{"b":"dataQa","d":"string","e":"backToGraphView"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => showObjectRelationshipsForFirstObjectCallback?.()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"onClick","d":"function","e":"() => refreshGraphCallback?.(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRefreshEventMeshDetails"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"designerTool\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleRefreshEventMeshDetails()"},{"b":"title","d":"expression","e":"\"Refresh graph with the latest objects and layout\""},{"b":"dataQa","d":"string","e":"refreshGraph-button"},{"b":"isDisabled","d":"expression","e":"graphLoading || graphUpdating || drawInProgress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"memSidePanelCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!item?.auth?.canOpenModelEventMesh"},{"b":"onClick","d":"variable","e":"onViewDetail"},{"b":"dataQa","d":"string","e":"viewMEMDetailsButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreateMem"},{"b":"dataQa","d":"string","e":"createModeledEventMeshButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"key","d":"string","e":"viewEventManagementAgentConnections"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => history.push(\"/account-details/private-regions\")"},{"b":"dataQa","d":"string","e":"viewEMAConnections"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"key","d":"string","e":"viewEventManagementAgentConnections"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleViewEventManagementAgentConnections"},{"b":"dataQa","d":"string","e":"viewEMAConnections"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateMemDialogOpen"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","c":[{"b":"onClick","d":"variable","e":"handleGoToMessagingServiceTab"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","c":[{"b":"onClick","d":"variable","e":"handleGoToDesigner"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"modeledEventMesh\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onBack"},{"b":"dataQa","d":"expression","e":"\"backCompareConfigDialog\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => onViewConfiguration(isSchemaParent)"},{"b":"dataQa","d":"expression","e":"\"showFullConfiguration\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setOpenCelebratoryDialog(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"auditImport-action"},{"b":"onClick","d":"variable","e":"action"},{"b":"underline","d":"string","e":"none"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClearAll"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setAutoCollectDialogOpen(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"key","d":"string","e":"refreshAllAuditResults"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setRefresh(true)"},{"b":"dataQa","d":"string","e":"refreshAllAuditResults"},{"b":"title","d":"string","e":"Refresh all audit results"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"auditRuntimeData\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"auditRuntimeData\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCompareVersions"},{"b":"dataQa","d":"expression","e":"\"compareVersionsBtn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleUndoTagAction(request)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"variable","e":"handleOnClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"auditImportJob-close"},{"b":"title","d":"string","e":"Remove"},{"b":"onClick","d":"function","e":"() => handleDismissJob(jobId)"},{"b":"underline","d":"string","e":"none"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => onVersionItemClick(version.id)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => onVersionItemClick(version.id)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleShowMore"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"onClick","d":"variable","e":"onCompare"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"onClick","d":"variable","e":"onCompare"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onDeselectAll"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(eventDetail.parent, eventDetail)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"variant","d":"expression","e":"buttonVariant || \"outline\""},{"b":"isDisabled","d":"variable","e":"disabled"},{"b":"dataQa","d":"string","e":"chooseImportOptionButton"},{"b":"onClick","d":"function","e":"() =>\n\t\t\t\t\t\thandleImport(\n\t\t\t\t\t\t\tauditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent\n\t\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleDeselect"},{"b":"dataQa","d":"string","e":"validationErrorDeselect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"id","d":"string","e":"linkButton"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/ep/runtime/modeled-event-meshes/${eventMeshId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"id","d":"string","e":"linkButton"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"designerLink"},{"b":"dataQa","d":"string","e":"designerLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"id","d":"string","e":"linkButton"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"/ep/catalog\""},{"b":"dataQa","d":"string","e":"catalogLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"applicationDomain\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"isDisabled","d":"expression","e":"isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()"},{"b":"variant","d":"expression","e":"\"text\""},{"b":"onClick","d":"function","e":"() => onVersionSelection(applicationVersion)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"hideSecondaryPanel"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Go Back"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onCloseDetails"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"string","e":"Go to Selection Panel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleViewEventBrokerConnections"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"underline","d":"string","e":"none"},{"b":"onClick","d":"function","e":"() => handleRefreshAuditResult()"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleMessagingService(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => handleMessagingService(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"openMessagingServiceDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"closeSidePanelCloseButton"},{"b":"title","d":"string","e":"Close Side Panel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => removeMessagingService(messagingService)"},{"b":"title","d":"string","e":"Remove"},{"b":"dataQa","d":"string","e":"removeMessagingService"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"latestJarFileLink"},{"b":"href","d":"expression","e":"eventManagementAgentResources.version.needUpgradeLink"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"key","d":"expression","e":"\"create\""},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateRuntimeAgent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"key","d":"string","e":"viewModeledEventMeshes"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleViewModeledEventMeshes"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventManagementAgents\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/account-details/private-regions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceLabs/event-management-agent/blob/main/README.md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"id","d":"variable","e":"downloadButtonId"},{"b":"dataQa","d":"variable","e":"downloadButtonId"},{"b":"onClick","d":"function","e":"(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"id","d":"variable","e":"copyButtonId"},{"b":"dataQa","d":"variable","e":"copyButtonId"},{"b":"onClick","d":"function","e":"(evt) => handleCopyFile(evt, details, emaType, copyButtonId)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceProducts/event-management-agent/releases"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/ep/runtime?sortBy=name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace-sso.solace.cloud/support/error-id-help"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleFinishClick"},{"b":"dataQa","d":"string","e":"finishWalkthroughButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleFinishClick"},{"b":"dataQa","d":"string","e":"finishWalkthroughButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCompleteInstallationSetupClick"},{"b":"dataQa","d":"string","e":"comnpleteInstallationSetupButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSkipButton"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"dataQa","d":"string","e":"connectEventBrokerButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleOpenSidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleOpenSidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"cancelButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || !eventManagementAgent?.eventManagementAgentRegionId"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCreateAgent"},{"b":"dataQa","d":"string","e":"saveAndCreateConnectionFileButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCancel"},{"b":"dataQa","d":"string","e":"discardChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isDisabled","d":"expression","e":"loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleEditAgent"},{"b":"dataQa","d":"string","e":"saveAndCreateConnectionFileButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"(evt) => handleDownloadFile(evt)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCopyFile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"EMA_PREREQUISITES_LINK"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"agentSidePanelCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => handleDownloadConnectionFile(item.id, item.name)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://github.com/SolaceLabs/event-management-agent/blob/main/README.md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"linkHref"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"onClick","d":"variable","e":"onCancel"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"cancelTemplate"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"onClick","d":"variable","e":"onSave"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"saveTemplate"},{"b":"isDisabled","d":"expression","e":"createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas\""},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleSetToDefault"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleOpenDeleteTemplateDialog(true, row)"},{"b":"dataQa","d":"string","e":"deleteTemplateButton"},{"b":"title","d":"string","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateTemplate"},{"b":"dataQa","d":"string","e":"createTemplateButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learnMoreTooltipLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"learnMoreCardLink"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_environments"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`solace-header-action-${getDataQaValue(action.title)}`"},{"b":"dataTags","d":"expression","e":"action.title"},{"b":"onClick","d":"variable","e":"handleAction"},{"b":"isDisabled","d":"expression","e":"action.disabled"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.targetHeaderMapping.learnMore.href"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.targetHeaderMapping.learnMore.href"},{"b":"dataQa","d":"string","e":"headerLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"goToDocumentationButtonLink"},{"b":"href","d":"expression","e":"connectorType.integrationHubUrl"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"dataQa","d":"string","e":"deployButton"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleDeployState"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"dataQa","d":"string","e":"openConnectorFlowButton"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleViewDetails"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/services/${serviceDetails?.id}`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setSelectedRowIds([])"},{"b":"dataQa","d":"string","e":"closeButton"},{"b":"title","d":"expression","e":"en.connectors.buttons.close"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace-sso.solace.cloud/support/question"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleViewErrorLogs"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dataQa","d":"string","e":"goToDocumentationButtonLink"},{"b":"href","d":"expression","e":"connectorType.integrationHubUrl"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => history.push(CONNECTOR_AVAILABLE)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"title","d":"string","e":"Delete"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"expression","e":"onDropPropertyClick(label)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"key","d":"expression","e":"showSensitiveField ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showSensitiveField ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowSensitiveField(!showSensitiveField)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"(e: any) => onClick && onClick(e)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","c":[{"b":"key","d":"expression","e":"showPassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showPassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowPassword(!showPassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"key","d":"expression","e":"showClientSecret ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showClientSecret ? \"showClientSecretButton\" : \"hideClientSecretButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowClientSecret(!showClientSecret)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"key","d":"expression","e":"showSslKeyStorePassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showSslKeyStorePassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowSslKeyStorePassword(!showSslKeyStorePassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"key","d":"expression","e":"showSslPrivateKeyPassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showSslPrivateKeyPassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onAdd"},{"b":"dataQa","d":"expression","e":"`add_${inputOrOutput}_button`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => onRemove(handle)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.buttons.transformationsLink.hrefLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"id","d":"string","e":"viewTransformationButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleAddTransformation(ShowTransformation.READ_ONLY)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"id","d":"string","e":"addTransformationButton"},{"b":"dataQa","d":"string","e":"addTransformationButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleAddTransformation(ShowTransformation.CREATE)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"id","d":"string","e":"editTransformationButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleAddTransformation(ShowTransformation.EDIT)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"removeRelation"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setSelectedRelation(relation)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"maxTargetHeaderCountReached()"},{"b":"dataQa","d":"expression","e":"`add-header-button-${direction}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetAddHeaderDialog(true);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"openUploadModal"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetReImport(true);\n\t\t\t\t\t\t\t\topenUploadModal();\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"startIcon","d":"jsx","e":""},{"b":"onClick","d":"variable","e":"handleMapWithAI"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"expression","e":"`edit-${fieldType}-button`"},{"b":"onClick","d":"variable","e":"handleEdit"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"expression","e":"`delete-${fieldType}-button`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetIdToDelete(id);\n\t\t\t\t\t\t\tsetShowDeleteDialog(true);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-add-header-dialog"},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"expression","e":"`add-custom-header-button-${direction}`"},{"b":"onClick","d":"variable","e":"handleAddHeader"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-add-header-dialog"},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"add-constant-button"},{"b":"onClick","d":"variable","e":"handleAddConstant"},{"b":"isDisabled","d":"expression","e":"!!constantNameError"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-add-header-dialog"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetCustomHeaderField({});\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"id","d":"string","e":"edit-custom-header-button"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"expression","e":"`edit-custom-header-button-${direction}`"},{"b":"onClick","d":"variable","e":"applyHeaderEdit"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"close-edit-constant-dialog"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetConstantField({});\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"id","d":"string","e":"edit-constant-button"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"edit-constant-button"},{"b":"onClick","d":"variable","e":"applyConstantEdit"},{"b":"isDisabled","d":"expression","e":"!!constantNameError"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.connectors.buttons.transformationsLink.hrefLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"maxTargetHeaderCountReached()"},{"b":"dataQa","d":"expression","e":"`add-constant-button-${direction}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tsetAddConstantDialog(true);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"dataQa","d":"string","e":"zeroStateDocLink"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"key","d":"expression","e":"showPassword ? \"eyeIcon\" : \"hideEyeIcon\""},{"b":"dataQa","d":"expression","e":"showPassword ? \"showPasswordButton\" : \"hidePasswordButton\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setShowPassword(!showPassword)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t? connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t: en.connectors.buttons.integrationHub.hrefLink"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onClearFilterClick"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"link\""},{"b":"href","d":"variable","e":"href"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"onClick","d":"variable","e":"handleFilterToggle"},{"b":"dataQa","d":"string","e":"filterToggleButton"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"variant","d":"expression","e":"\"icon\""},{"b":"onClick","d":"variable","e":"handleFilterToggle"},{"b":"dataQa","d":"expression","e":"`${id}_filterToggleButton`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearFilters()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/ToastAction.tsx","c":[{"b":"dataQa","d":"string","e":"intg-toast-action"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRedirect"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[{"b":"href","d":"variable","e":"href"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"key","d":"string","e":"editButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleEditButton"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace-sso.solace.cloud/support/question"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleViewErrorLogs"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"id","d":"string","e":"discard"},{"b":"dataQa","d":"string","e":"discard"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onDiscard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"id","d":"string","e":"cloneButton"},{"b":"dataQa","d":"string","e":"cloneButton"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => onSubmit(false)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"id","d":"string","e":"cloneAndDeployButton"},{"b":"dataQa","d":"string","e":"cloneAndDeployButton"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => onSubmit(true)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"onClick","d":"variable","e":"handleDownloadLog"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"key","d":"string","e":"createconnector"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"id","d":"string","e":"discard"},{"b":"dataQa","d":"string","e":"discard"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onDiscard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"id","d":"string","e":"save"},{"b":"dataQa","d":"string","e":"save"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => onSubmit(false)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"id","d":"string","e":"saveDeploy"},{"b":"dataQa","d":"string","e":"saveDeploy"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => onSubmit(true)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"key","d":"string","e":"createAgent"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"resourceAssignmentDelete"},{"b":"title","d":"expression","e":"messages.remove"},{"b":"onClick","d":"function","e":"() => onRemoveResourceAssignment(resourceAssignment)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"outline\""},{"b":"onClick","d":"function","e":"() => onAddResourceAssignment(displayedUserTypes[0])"},{"b":"isDisabled","d":"variable","e":"isDisabled"},{"b":"dataQa","d":"string","e":"addUser"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_deleteprotection"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_service_deletion_protection.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_migration"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_broker_sso_settings"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_broker_sso_settings"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_dist_tracing"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-dt-for-cloud.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_storage"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Configure-Message-Spools.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"dataQa","d":"string","e":"help_environments"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, helpLink)"},{"b":"dataQa","d":"string","e":"help-no-access"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, secondaryHelpLink)"},{"b":"dataQa","d":"string","e":"secondary-help-no-access"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx","c":[{"b":"variant","d":"expression","e":"action.variant ?? \"text\""},{"b":"isDisabled","d":"expression","e":"action.disabled"},{"b":"href","d":"expression","e":"action.href ? action.href : undefined"},{"b":"dataQa","d":"string","e":"solace-header-action"},{"b":"dataTags","d":"expression","e":"action.title"},{"b":"onClick","d":"variable","e":"handleAction"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleViewPassword"},{"b":"title","d":"expression","e":"showPassword ? t({ id: \"id_hide_password\", message: \"Hide password\" }) : t({ id: \"id_view_password\", message: \"View password\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCopy"},{"b":"title","d":"expression","e":"t({ id: \"id_copy\", message: \"Copy\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => onDismiss()"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => history.push(`/mesh-manager/${eventMesh.id}`)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"key","d":"string","e":"create_event_mesh"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCreateMesh"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"id","d":"string","e":"close"},{"b":"dataQa","d":"string","e":"close"},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleClose"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"tutorial.url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.api"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.download[0].url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"dw.url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"readOnly"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tconst fileInput = fileInputRef?.current;\n\t\t\t\t\t\tif (fileInput) {\n\t\t\t\t\t\t\tif (fileInput.value) {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tfileInput.value = \"\";\n\t\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t\t// that's fine\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfileInput.click();\n\t\t\t\t\t\t}\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.api"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.tutorial"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.download[0].url"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"expression","e":"handleCancel(idx)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"expression","e":"handleSave(idx)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleAddGroup"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI(path)) || \"\""},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\ttrack(TRACK_ELEMENT_CLICK, { \"element-id\": dataQa });\n\t\t\t\t\t\t\topenWindow(getBrokerWebUI(path), serviceId);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnableStandardDomainCertAuth"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleAddClientCertAuth"},{"b":"dataQa","d":"string","e":"add-client-cert-auth"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"variable","e":"hasOngoingOperation"},{"b":"onClick","d":"variable","e":"handleAddDomainCertAuth"},{"b":"dataQa","d":"string","e":"add-domain-cert-auth"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"service-auth-open-broker-manager"},{"b":"endIcon","d":"jsx","e":""},{"b":"onClick","d":"variable","e":"handleOpenBrokerManager"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"service-auth-edit-client-auth"},{"b":"onClick","d":"variable","e":"handleShowAuthentication"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleProfileShowDialog"},{"b":"dataQa","d":"string","e":"service-auth-edit-profile"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleAdd"},{"b":"dataQa","d":"string","e":"client-profile-create"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || isDisabled"},{"b":"onClick","d":"variable","e":"handleShowMessageSpoolSize"},{"b":"dataQa","d":"string","e":"edit-message-spool-size"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || !curClusterName"},{"b":"onClick","d":"variable","e":"handleShowClusterName"},{"b":"dataQa","d":"string","e":"edit-cluster-name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/edit-cluster-name.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"},{"b":"dataQa","d":"string","e":"launchBrokerManagerClientProfiles"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || \"\""},{"b":"onClick","d":"variable","e":"handleOpenBrokerManager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || !canConfigure || !canEnable"},{"b":"onClick","d":"variable","e":"handleEnableLdapManagement"},{"b":"dataQa","d":"string","e":"enable-ldap-management"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleProfileShowDialog"},{"b":"dataQa","d":"string","e":"ldap-management-profile"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"variable","e":"handleAccessShowDialog"},{"b":"dataQa","d":"string","e":"ldap-management-access"},{"b":"isDisabled","d":"expression","e":"!canConfigure || !allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"usernames.length === 0 || !allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleShowRotatePasswords"},{"b":"dataQa","d":"string","e":"rotate_passwords"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleToggle"},{"b":"isDisabled","d":"expression","e":"!hasERPLimit || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"toggle_erp_event_addon"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/erp-add-on.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnable"},{"b":"dataQa","d":"string","e":"monitoring-enable"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || !canConfigure || !!configuringMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES"},{"b":"onClick","d":"variable","e":"handleShowCreateHostname"},{"b":"dataQa","d":"string","e":"create-hostname"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"dataQa","d":"string","e":"help_storage"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-hostnames.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleDisableDistributedTracing"},{"b":"isDisabled","d":"expression","e":"distributedTracingStatus == \"error\" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"distributed-tracing-disable"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnableDistributedTracing"},{"b":"isDisabled","d":"expression","e":"isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"distributed-tracing-enable"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || \"\""},{"b":"dataQa","d":"string","e":"launchBrokerManagerTelemetryProfiles"},{"b":"onClick","d":"variable","e":"handleOpenBrokerManager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCheckConnectionStatus"},{"b":"isDisabled","d":"expression","e":"!isConfigured || !allowServiceQueries"},{"b":"dataQa","d":"string","e":"dt-button-status"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleConfigureDataCollection"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"dataQa","d":"string","e":"dt-button-deploy"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleShowMateLinkEncryption"},{"b":"dataQa","d":"string","e":"toggle_mate_link_encryption"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || mateLinkEncryption.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleEnableDisable"},{"b":"dataQa","d":"string","e":"toggle_semp_request"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleAdd"},{"b":"dataQa","d":"string","e":"syslog-forwarding-create"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries || syslogs.length >= 3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!allowServiceQueries"},{"b":"onClick","d":"variable","e":"handleCreateEndpoint"},{"b":"dataQa","d":"string","e":"create-endpoint"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"dataQa","d":"string","e":"help_port_config"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ggs_tryme.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"launchTryMe"},{"b":"endIcon","d":"jsx","e":""},{"b":"onClick","d":"variable","e":"handleOpenTryMe"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"view-scaleup-logs"},{"b":"onClick","d":"variable","e":"handleViewScaleUpLogs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"plan-upgrade-open"},{"b":"onClick","d":"variable","e":"onOpen"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setViewLogs(true)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setViewLogs(true)"},{"b":"isDisabled","d":"expression","e":"(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/upgrade-event-broker.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"view-upgrade-logs"},{"b":"onClick","d":"variable","e":"handleViewUpgradeLogs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"truststoreUri ?? \"https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"open-ticket"},{"b":"href","d":"expression","e":"buildSupportURL(isSAP, service.errorId, service.id)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/account-details/distributed-tracing"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"plan-upgrade-open"},{"b":"onClick","d":"variable","e":"handleOpenUpgradeDialog"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"type","d":"string","e":"button"},{"b":"onClick","d":"variable","e":"onCancel"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSelectLibrary(null)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleShowLibraryDialog"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleSelection(item)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"key","d":"string","e":"open-broker-manager"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"launchBrokerManager"},{"b":"isDisabled","d":"expression","e":"!allowBrokerRequests"},{"b":"href","d":"expression","e":"(allowBrokerRequests && getBrokerWebUI()) || \"\""},{"b":"onClick","d":"variable","e":"openBrokerManager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleCustomize"},{"b":"isDisabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"key","d":"string","e":"reset"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleResetPort"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onClick"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx","c":[{"b":"dataQa","d":"string","e":"cloning-documentation"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/cloud-clone-service.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","c":[{"b":"dataQa","d":"string","e":"help_port_config"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx","c":[{"b":"dataQa","d":"string","e":"help_cloud"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/choose-cloud-provider.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx","c":[{"b":"dataQa","d":"string","e":"help_regions"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_regions.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx","c":[{"b":"dataQa","d":"string","e":"help_services"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_pick_service_type.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"id","d":"string","e":"cancel"},{"b":"dataQa","d":"string","e":"cancel"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"onCancel"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"id","d":"string","e":"createService"},{"b":"dataQa","d":"string","e":"createService"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"isDisabled","d":"variable","e":"createServiceDisabled"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"key","d":"string","e":"create_service"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"solace-header-action"},{"b":"onClick","d":"variable","e":"handleCreateService"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx","c":[{"b":"dataQa","d":"string","e":"help_user_access"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRetry"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"service.name"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: \"status\" }))"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"resourceAssignmentDelete"},{"b":"title","d":"expression","e":"messages.remove"},{"b":"onClick","d":"function","e":"() => onRemoveResourceAssignment(resourceAssignment)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"expression","e":"\"outline\""},{"b":"onClick","d":"function","e":"() => onAddResourceAssignment(displayedUserTypes[0])"},{"b":"isDisabled","d":"variable","e":"isDisabled"},{"b":"dataQa","d":"string","e":"addUser"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(\"/\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"isDisabled","d":"expression","e":"!ssoBrokerEnabled"},{"b":"onClick","d":"variable","e":"handleManageBrokerButton"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"manageBrokerButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"onClick","d":"variable","e":"handleViewSettingMapping"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleButtonClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx","c":[{"b":"onClick","d":"variable","e":"onRegenerateTokenClick"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"regenerateTokenButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleCopyToken"},{"b":"dataQa","d":"string","e":"copyTokenButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"solaceOpenAPIV2\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"variant","d":"expression","e":"mode === \"create\" ? \"text\" : \"call-to-action\""},{"b":"onClick","d":"variable","e":"handleCancel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleSubmit"},{"b":"isDisabled","d":"variable","e":"createTokenIsLoading"},{"b":"dataQa","d":"string","e":"createTokenBtn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"underline","d":"string","e":"always"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"tokenManagementHelpLink\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"onClick","d":"variable","e":"onCreateTokenClick"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"variable","e":"hasMaxNumberOfTokens"},{"b":"dataQa","d":"string","e":"createApiTokenButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => setSelectedRow(null)"},{"b":"dataQa","d":"string","e":"logDetailsCloseButton"},{"b":"title","d":"string","e":"Close"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"downloadAuditLogs"},{"b":"dataQa","d":"string","e":"downloadAuditLogsJsonLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"clearAllButton"},{"b":"onClick","d":"variable","e":"discardFilterChanges"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"discardFilterChanges"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/drawdown.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"key","d":"expression","e":"`limitChangeButton-${index}`"},{"b":"id","d":"expression","e":"`limitChangeButton-${index}`"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"onClick","d":"variable","e":"cancelAddMapping"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"cancelAddClaimMapping"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"onClick","d":"variable","e":"addMappingHandler"},{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!groupMappingState ||\n\t\t\t\t\t\tselectedUserGroups.length < 1 ||\n\t\t\t\t\t\t!claimValuesMapping ||\n\t\t\t\t\t\tclaimValueError ||\n\t\t\t\t\t\tclaimValuesMapping.trim().length < 1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"onClick","d":"variable","e":"addGroupMappingHandler"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"claimMappingToEdit !== -1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace.com"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"variable","e":"handleTestAccessClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"isDisabled","d":"expression","e":"!claimId"},{"b":"onClick","d":"variable","e":"handleTestAccessClick"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"isDisabled","d":"expression","e":"!canDiscardChanges"},{"b":"onClick","d":"variable","e":"discardChanges"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"discardChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"onClick","d":"expression","e":"!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"!canSave || !(canDiscardChanges || !isEnabled)"},{"b":"dataQa","d":"string","e":"saveChangesButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace.com"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsDialogOpen(true)"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","c":[{"b":"onClick","d":"variable","e":"cancelClaimMappingEditHandler"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","c":[{"b":"onClick","d":"function","e":"() => saveMappingDetails(rowData.id)"},{"b":"variant","d":"string","e":"outline"},{"b":"isDisabled","d":"expression","e":"!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"setup-idp-link\", \"link\")"},{"b":"onClick","d":"variable","e":"handleGroupClaimHelpLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"isDisabled","d":"expression","e":"!canSave"},{"b":"onClick","d":"function","e":"() => saveNotifyPreferences()"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"discardChanges"},{"b":"isDisabled","d":"expression","e":"checkIfChangesDone()"},{"b":"onClick","d":"variable","e":"handleCancelButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"checkIfSaveDisabled()"},{"b":"dataQa","d":"string","e":"saveProfileButton"},{"b":"id","d":"string","e":"saveButton"},{"b":"onClick","d":"variable","e":"handleApplyButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"supportFormCancel"},{"b":"onClick","d":"variable","e":"handleCancelButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"supportFormSubmit"},{"b":"onClick","d":"variable","e":"handleSaveButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"solaceCloudStatus\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"createEnvButton"},{"b":"onClick","d":"variable","e":"onCreateEnvClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"environmentTypeInfo\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"environmentsInfo\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/ep/runtime/event-management-agents"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"memSidePanelCloseButton"},{"b":"title","d":"string","e":"Close Side Panel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleButtonClick"},{"b":"dataQa","d":"string","e":"buttonEventManager"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"/ep/runtime/templates"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/environments.htm"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"href","d":"string","e":"/ep/runtime?sortBy=environment"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"key","d":"expression","e":"`${testItem.id}-${testItem.name}-template-enabled`"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\thistory.push(`/ep/runtime/templates`);\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"runtimeTemplatesLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => history.push(`/user-settings/notify-settings`)"},{"b":"dataQa","d":"string","e":"notificationSettingsButton"},{"b":"title","d":"expression","e":"en.notifications.settings"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"dataQa","d":"string","e":"refreshNotificationSettingsButton"},{"b":"onClick","d":"function","e":"() => refetchNotifications()"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"dataQa","d":"string","e":"markAllNotificationsReadButton"},{"b":"onClick","d":"function","e":"() => markAllRead()"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"dataQa","d":"string","e":"sendEmailButton"},{"b":"isDisabled","d":"expression","e":"!email.isValid"},{"b":"type","d":"string","e":"submit"},{"b":"onClick","d":"variable","e":"handleSubmit"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"onClick","d":"variable","e":"handleNavigateToLogin"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"onClick","d":"variable","e":"handleGroupMapping"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"groupManagementButton"},{"b":"isDisabled","d":"expression","e":"ugCount <= 0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"onClick","d":"variable","e":"handleCreateGroup"},{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"createGroupButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"key","d":"expression","e":"\"searchIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"onClick","d":"variable","e":"handleCreateGroup"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"createGroupButton2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleShowMore"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleShowLess"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"eventPortalCloudEma\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.contactSupport"},{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"supportPage\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dataQa","d":"string","e":"viewServicesButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setSynchTracingDialog(true)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"tracingLimits.infoMessage.link.href"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"expression","e":"tracingDestinationCreationIsDisabled ? \"text\" : \"outline\""},{"b":"isDisabled","d":"variable","e":"tracingDestinationCreationIsDisabled"},{"b":"onClick","d":"function","e":"() => setTracingDialog({ mode: Mode.Create, isOpen: true })"},{"b":"dataQa","d":"string","e":"createTracingProfile"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"tracingDestinationLink\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"update"},{"b":"key","d":"expression","e":"`${item.serviceId}-update`"},{"b":"isDisabled","d":"expression","e":"!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)"},{"b":"onClick","d":"function","e":"() => handleUpdate(item)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"href","d":"expression","e":"`/services/${item.serviceId}`"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"tracingProfile.infoMessage.link.href"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.otlpHttp"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"links.otlpHttp"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"expression","e":"`${header.key}-copy`"},{"b":"onClick","d":"function","e":"() => navigator.clipboard.writeText(header.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsDialogOpen(true)"},{"b":"variant","d":"string","e":"outline"},{"b":"id","d":"string","e":"testSsoConfigurationButton"},{"b":"dataQa","d":"string","e":"testSsoConfiguration"},{"b":"isDisabled","d":"expression","e":"!isSsoConfigured"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx","c":[{"b":"onClick","d":"function","e":"() => updateSsoConfiguration({ state: \"enabled\" })"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"id","d":"string","e":"saveSsoConfigurationButton"},{"b":"dataQa","d":"string","e":"saveSsoConfigurationButton"},{"b":"isDisabled","d":"expression","e":"!haveStagedChangesToSave"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsDialogOpen(true)"},{"b":"variant","d":"string","e":"outline"},{"b":"id","d":"string","e":"enableSsoConfigurationButton"},{"b":"dataQa","d":"string","e":"enableSsoConfigurationButton"},{"b":"isDisabled","d":"expression","e":"!isSsoConfigured"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"onClick","d":"variable","e":"handleSsoSetup"},{"b":"variant","d":"string","e":"outline"},{"b":"id","d":"string","e":"setupSsoButton"},{"b":"dataQa","d":"string","e":"setUpSsoButton"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"en.accountSettings.learnMoreSSODoc"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"editSsoConfigurationButton"},{"b":"id","d":"string","e":"editSsoConfigurationButton"},{"b":"onClick","d":"function","e":"() => editSSOConfiguration()"},{"b":"isDisabled","d":"expression","e":"!hasLoginSubdomain"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"onClick","d":"function","e":"() => setHideSecretKey((state) => !state)"},{"b":"title","d":"expression","e":"en.accountSettings[hideSecretKey ? \"showKey\" : \"hideKey\"]"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setIsRequestLimitChangeDialogOpen(true)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"onClick","d":"function","e":"() => history.push(`/support/question`)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"},{"b":"href","d":"expression","e":"en.overview.eventPortalSection.objectCountHelpLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => history.push(`/account-details/service-limits`)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"onClick","d":"function","e":"() => setIsRequestUpgradeDialogOpen(true)"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => history.push(`/account-details/users`)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"advancedSettingsButton"},{"b":"onClick","d":"function","e":"() => setIsAdvancedSettingsHidden((x) => !x)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"dataQa","d":"string","e":"deleteAccountButton"},{"b":"onClick","d":"function","e":"() => setIsDeleteAccountDialogOpen(true)"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://solace.com/contact/"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"href","d":"expression","e":"brandableTextValueConverter(\"insights-notifications\", \"link\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"stopNotification"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"isFetching || mutating"},{"b":"onClick","d":"function","e":"() => setOpenConfirmationDialog(true)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"string","e":"discardChanges"},{"b":"variant","d":"string","e":"text"},{"b":"isDisabled","d":"expression","e":"isFetching || !formIsDirty || mutating"},{"b":"onClick","d":"variable","e":"onDiscardChanges"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"dataQa","d":"expression","e":"NotificationIsActive ? \"updateNotifications\" : \"activateNotifications\""},{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"expression","e":"isFetching || !formIsDirty || mutating"},{"b":"onClick","d":"variable","e":"onSubmission"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"href","d":"expression","e":"brandableTextValueConverter(\"insights-email-integrations\", \"link\")"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"brandableTextValueConverter(\"group-management-link\", \"link\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"handleGotoUserGroups"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"variable","e":"hyperLink"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"isDisabled","d":"variable","e":"aupIsLoading"},{"b":"onClick","d":"variable","e":"handleAgree"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/utils/helper.tsx","c":[{"b":"href","d":"variable","e":"link"},{"b":"isDisabled","d":"expression","e":"!link"},{"b":"variant","d":"string","e":"link"},{"b":"openLinkInNewTab","d":"boolean","e":"false"},{"b":"dataQa","d":"expression","e":"`link-${text}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"exportCloseButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"downloadCSV"},{"b":"isDisabled","d":"expression","e":"isFetching || !!error"},{"b":"dataQa","d":"string","e":"exportDownloadButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/datacenters/${item.name}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"onRefresh"},{"b":"isDisabled","d":"expression","e":"!cluster?.id || isRefreshing"},{"b":"dataQa","d":"string","e":"refresh-cluster-button"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleClearAllFilters"},{"b":"dataQa","d":"string","e":"clearAllButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"toggleShowExportDialog"},{"b":"dataQa","d":"string","e":"exportCSVButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleClearSearchText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","c":[{"b":"href","d":"string","e":"https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"exitFormQa"},{"b":"onClick","d":"variable","e":"handleExitFormButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"reviewSaveFormQa"},{"b":"isDisabled","d":"variable","e":"isFieldReadOnly"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tif (!isEmailValid || inputError || error || validation || orgDetails.error || !readyToSave) {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(false);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(true);\n\t\t\t\t\t\t\t\thandleReviewSaveButton();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"href","d":"expression","e":"createBizOrganization.messages.runbookLink"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"variant","d":"string","e":"text"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"isDisabled","d":"expression","e":"!isEmail(currentEmailEntry)"},{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => addEmail()"},{"b":"dataQa","d":"string","e":"addEmailButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"connectorDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/connector-deployments/${row?.deploymentId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"connectorDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/connector-deployments/${row?.deploymentId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`details-${request.deploymentId}`"},{"b":"onClick","d":"function","e":"() => setErrorDetails(`${request.deploymentId}-disable`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"href","d":"string","e":"insights-settings"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"title","d":"string","e":"Refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"href","d":"string","e":"https://app.datadoghq.com/logs?query=service%3Amaas-monitoring%20%40logger_name%3Acom.solace.maas.monitoring.%2A%20%28%40event%3AINSIGHTS_ONBOARDING%20OR%20%40event%3AINSIGHTS_OFFBOARDING%29%20&cols=host%2Cservice&index=%2A&messageDisplay=inline&refresh_mode=sliding&stream_sort=desc&viz=stream&live=true"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refreshSubOrgs"},{"b":"onClick","d":"function","e":"() => dispatch(fetchAllDatadogInfos())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refreshArtifactVersion"},{"b":"onClick","d":"function","e":"() => dispatch(fetchDatadogArtifactVersion())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"dataQa","d":"string","e":"refreshDT"},{"b":"onClick","d":"function","e":"() => dispatch(fetchDistributedTracingDetails())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"href","d":"string","e":"distributed-tracing"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"href","d":"string","e":"insights-settings"},{"b":"variant","d":"string","e":"link"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"title","d":"string","e":"Refresh"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","c":[{"b":"key","d":"string","e":"create-plan"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleModal()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => setQueryShow(true)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => add()"},{"b":"isDisabled","d":"expression","e":"!attribute || !operator || !value"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","c":[{"b":"key","d":"string","e":"manage-upgrade-button"},{"b":"onClick","d":"function","e":"() => handlePlanRoute()"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"create"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"isDisabled","d":"expression","e":"!autoUpgrades"},{"b":"onClick","d":"variable","e":"setCreateOpen"},{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"schedule-upgrade-run"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","c":[{"b":"variant","d":"variable","e":"variant"},{"b":"onClick","d":"variable","e":"onClick"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleManageContacts(item.type)"},{"b":"isDisabled","d":"variable","e":"readOnlyAccess"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleCopyEmails(item.emails, item.type)"},{"b":"isDisabled","d":"expression","e":"!item.emails"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => refetch()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.solace.com/Cloud/drawdown.htm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"dataQa","d":"string","e":"refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSidekickDeploymentDetailsRefresh()"},{"b":"isDisabled","d":"variable","e":"refreshDetailsInProgress"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"dataQa","d":"string","e":"refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSidekickDeploymentStatusRefresh()"},{"b":"isDisabled","d":"variable","e":"refreshStatusInProgress"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => window.open(link)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"refetch"},{"b":"dataQa","d":"string","e":"retrieve"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handelCopy"},{"b":"isDisabled","d":"expression","e":"!details"},{"b":"dataQa","d":"string","e":"copy"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dataQa","d":"string","e":"moreDetailsErrorButton"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleDetails(errorKey)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"pushLogPipelines"},{"b":"dataQa","d":"string","e":"createUpdateLogPipelineButton"},{"b":"isDisabled","d":"expression","e":"monitoringJobStatus === TaskStatus.QUEUED || monitoringJobStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"queryTestLog"},{"b":"dataQa","d":"string","e":"validateLogFacets"},{"b":"isDisabled","d":"expression","e":"queryTestLogStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"dataQa","d":"string","e":"updateAllMonitorsButton"},{"b":"onClick","d":"function","e":"() => setOpenDialog(true)"},{"b":"isDisabled","d":"expression","e":"notificationUpdateStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"validateDatadogResources"},{"b":"dataQa","d":"string","e":"validateResources"},{"b":"isDisabled","d":"expression","e":"validateStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateServicesMonitoringConfigButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateOrgDefaultsButton"},{"b":"isDisabled","d":"expression","e":"_.isEmpty(dirtyFields) || errorFetchingOrgDetails"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"link"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\tsetDatadogProxyDialogService(service);\n\t\t\t\t\t\tsetOpenDatadogProxyDialog(true);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\tsetAgentStatusDialogService(service);\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(true);\n\t\t\t\t\t\t}"},{"b":"isDisabled","d":"expression","e":"!service.monitoringAgentEnabled"},{"b":"dataQa","d":"expression","e":"`agentVersionButton_${service.name}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"serviceDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/org-services/${row?.serviceId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateRMMSSettingsButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"configureNewDDSubOrgButton"},{"b":"onClick","d":"variable","e":"createNewDatadogSuborg"},{"b":"isDisabled","d":"variable","e":"createDatadogSuborgLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"validateAPIKeysButton"},{"b":"onClick","d":"variable","e":"validateKeys"},{"b":"isDisabled","d":"expression","e":"validateApiKeysStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"createInsightsRolesButton"},{"b":"onClick","d":"variable","e":"createInsightsRoles"},{"b":"isDisabled","d":"expression","e":"!ddOrgData?.apiKey || createInsightsRolesLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://app.datadoghq.com/"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/995065871/PE+Enable+PubSub+Insights#PE%3AEnablePubSub%2BInsights-SettinguptheDatadogSubOrgintegrations"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"createUpdateLogPipelineButton"},{"b":"onClick","d":"variable","e":"pushLogPipelines"},{"b":"isDisabled","d":"expression","e":"pushLogPipelinesStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"pushTestLogButton"},{"b":"onClick","d":"variable","e":"pushTestLog"},{"b":"isDisabled","d":"variable","e":"pushTestLogLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://app.datadoghq.com/"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"string","e":"https://docs.datadoghq.com/logs/explorer/facets/#create-facets"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"validateLogFacetsButton"},{"b":"onClick","d":"variable","e":"queryTestLog"},{"b":"isDisabled","d":"expression","e":"queryTestLogStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"updateDDHandlesAndResourcesButton"},{"b":"isDisabled","d":"expression","e":"notificationUpdateStatus == TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"validateMonitorsDashboardsButton"},{"b":"onClick","d":"variable","e":"validateDatadogResources"},{"b":"isDisabled","d":"expression","e":"validateDatadogResourcesStatus === TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"enableInsightsPolicyButton"},{"b":"onClick","d":"variable","e":"enableInsightsPolicy"},{"b":"isDisabled","d":"expression","e":"enableInsightsPolicyStatus == TaskStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"type","d":"string","e":"submit"},{"b":"dataQa","d":"string","e":"inviteAdminUsersButton"},{"b":"onClick","d":"function","e":"() => inviteAdminUsers(adminUsersList)"},{"b":"isDisabled","d":"variable","e":"inviteAdminUsersLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/organizations/${secondary}`"},{"b":"title","d":"expression","e":"secondary.toString()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","c":[{"b":"variant","d":"expression","e":"props.isEnabled ? \"outline\" : \"call-to-action\""},{"b":"onClick","d":"variable","e":"handleToggleClick"},{"b":"data-qa","d":"expression","e":"props.isEnabled ? \"disable-button\" : \"enable-button\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/organizations/${row.orgId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/organizations/${row.orgId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"`/datacenters/${row.datacenterId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"onClick","d":"function","e":"() => setOpenUpdateDialog(true)"},{"b":"variant","d":"string","e":"call-to-action"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"onClick","d":"function","e":"() => setOpenRollbackDialog(true)"},{"b":"variant","d":"string","e":"outline"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleEdit"},{"b":"dataQa","d":"string","e":"editMetadata"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"dataQa","d":"string","e":"create"},{"b":"onClick","d":"function","e":"() => setCreateDialog(true)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handleRefresh"},{"b":"dataQa","d":"string","e":"refresh"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setClearFiltersFlag(true)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"key","d":"expression","e":"\"closeIcon\""},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"function","e":"() => handleSearchField(EMPTY_STRING)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleToggleSearchPanel"},{"b":"dataQa","d":"string","e":"openFilterIcon"},{"b":"title","d":"string","e":"Manage Filters"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => handleClearAllFilters()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => history.push(`/organizations/spool-configs`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"startIcon","d":"jsx","e":""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => history.push(`/organizations/create`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"function","e":"() => history.push(`/organizations/createorganization`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"onClick","d":"function","e":"(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\twindow.open(`/datacenters/${row.id}`);\n\t\t\t\t\t\t\t\t}"},{"b":"variant","d":"string","e":"link"},{"b":"dense","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"string","e":"collectorDetails"},{"b":"onClick","d":"function","e":"() => window.open(`/distributed-tracing-collectors/${row?.serviceId}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dataQa","d":"expression","e":"row?.id + \"_RefreshButton\""},{"b":"isDisabled","d":"expression","e":"row?.collectorLoadingStatus == CollectorLoadingStatus.IN_PROGRESS ||\n\t\t\t\t\t\t\t\t\trow?.collectorLoadingStatus == CollectorLoadingStatus.INITIAL"},{"b":"onClick","d":"function","e":"() => handleRefresh(row?.infrastructureId)"},{"b":"title","d":"string","e":"Refresh"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"dataQa","d":"expression","e":"`details-${request.infrastructureId}`"},{"b":"onClick","d":"function","e":"() => setErrorDetails(request.infrastructureId)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"onClick","d":"function","e":"() => history.push(`/organizations/${orgId}`)"},{"b":"title","d":"string","e":"Close"},{"b":"variant","d":"string","e":"icon"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"dataQa","d":"string","e":"refresh"},{"b":"variant","d":"string","e":"icon"},{"b":"onClick","d":"variable","e":"handleCollectorInfoRefresh"},{"b":"isDisabled","d":"variable","e":"refreshInProgress"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"function","e":"() => window.open(link)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"refetch"},{"b":"dataQa","d":"string","e":"retrieve"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"onClick","d":"variable","e":"handelCopy"},{"b":"isDisabled","d":"expression","e":"!configs?.data"},{"b":"dataQa","d":"string","e":"copy"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Broker, isOpen: true })"},{"b":"isDisabled","d":"variable","e":"readOnlyAccess"},{"b":"dataQa","d":"string","e":"addBrokerButton"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"variant","d":"string","e":"outline"},{"b":"onClick","d":"function","e":"() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Collector, isOpen: true })"},{"b":"isDisabled","d":"variable","e":"readOnlyAccess"},{"b":"dataQa","d":"string","e":"addCollectorButton"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"href","d":"expression","e":"sublink.url"},{"b":"variant","d":"string","e":"link"},{"b":"target","d":"string","e":"_blank"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"onClick","d":"variable","e":"handleTutorialClick"},{"b":"variant","d":"string","e":"text"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/section.js","c":[{"b":"variant","d":"string","e":"link"},{"b":"href","d":"expression","e":"footer.url"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceButton/totalUsages.json b/mrc-usage-report-data/per-component/SolaceButton/totalUsages.json new file mode 100644 index 000000000..8e44f67f0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceButton/totalUsages.json @@ -0,0 +1 @@ +812 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceButton/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceButton/usagesByMfe.json new file mode 100644 index 000000000..db521ced1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceButton/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":426,"intg":67,"mc":100,"saas":109,"infra":8,"maas-ops-react":99,"broker-manager":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCard/commonProps.json b/mrc-usage-report-data/per-component/SolaceCard/commonProps.json new file mode 100644 index 000000000..68776e5db --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCard/commonProps.json @@ -0,0 +1 @@ +[{"name":"backgroundColor","count":32},{"name":"showCloseButton","count":25},{"name":"onClose","count":22},{"name":"title","count":20},{"name":"dataQa","count":20},{"name":"width","count":2},{"name":"minWidth","count":1},{"name":"readOnly","count":1},{"name":"cardHeaderProps","count":1},{"name":"height","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCard/customization.json b/mrc-usage-report-data/per-component/SolaceCard/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCard/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCard/files.json b/mrc-usage-report-data/per-component/SolaceCard/files.json new file mode 100644 index 000000000..5faab51ef --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCard/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","../../../broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCard/instances.json b/mrc-usage-report-data/per-component/SolaceCard/instances.json new file mode 100644 index 000000000..ea03740c1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCard/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"string","e":"Want to subscribe to specific values?"},{"b":"onClose","d":"function","e":"() => setShowInfoBlurb(false)"},{"b":"dataQa","d":"string","e":"addSubscriptionInfoBlurb"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"jsx","e":"

{brandableTextValueConverter(\"Environments in PubSub+ Cloud\", \"string\")}

"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"string","e":"What is an Event Management Agent?"},{"b":"onClose","d":"variable","e":"handleCloseInfoBlurb"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleDismissEducationalCard"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"dataQa","d":"string","e":"attractedEventsNoResults"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"title","d":"string","e":"Defining Topic Domains"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"dataQa","d":"string","e":"topicAddressResources"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"dataQa","d":"string","e":"topicAddressResourcesMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\n\t\t\t\t\tReferenced Schema Names Require Manual Updates\n\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"title","d":"expression","e":"reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? \"Conflicting Topic Address\" : \"Conflicting Objects\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.warning.w10"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowRDPInfo(false)"},{"b":"dataQa","d":"string","e":"restDeliveryPointInformation"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"title","d":"expression","e":"\"Upload From JSON File\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseEnumVauesHelp"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.default"},{"b":"dataQa","d":"expression","e":"\"enumValuesHelp\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"title","d":"expression","e":"\"Tips and Tricks for Topic Addresses\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseTopicAddressHelp"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"dataQa","d":"expression","e":"\"topicAddressHelp\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"dataQa","d":"string","e":"eventBrokers-noBrokers"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"dataQa","d":"string","e":"eventBrokers-noMatchingBrokers"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"title","d":"expression","e":"messages.projectDefinition.help"},{"b":"dataQa","d":"string","e":"projectDefinitionHelp"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.warning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInstructionMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInstructionMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"getCardTitle(selectedAudit.auditEntityType)"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.background.w20"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"onClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleDismissReuseIndexInfoCard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"dataQa","d":"expression","e":"popover ? \"popoverInfo\" : \"infoCard\""},{"b":"showCloseButton","d":"expression","e":"!popover"},{"b":"onClose","d":"function","e":"() => (popover ? undefined : onClose && onClose)"},{"b":"title","d":"string","e":"Setting Values for Target Headers"},{"b":"backgroundColor","d":"expression","e":"popover ? \"inherit\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => handleCloseDisplayMessage()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"onClose","d":"function","e":"() => setTranformationBlurbDismissedAtom(true)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"onClose","d":"function","e":"() => {\n\t\t\t\t\t\tsetShowEducationBlurb(false);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"title","d":"string","e":"What is an Automated Upgrade?"},{"b":"backgroundColor","d":"expression","e":"theme.palette.ux.learning.w10"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setNeedHelp(false)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"title","d":"string","e":"What is an Automated Upgrade?"},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.paper"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"title","d":"string","e":"Release Notes"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"backgroundColor","d":"string","e":"#ffffff"},{"b":"dataQa","d":"string","e":"brokerSSOCard"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.background.paper"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"drawdownUsage.messages.title"},{"b":"dataQa","d":"string","e":"drawdownUsageFormulaCard"},{"b":"backgroundColor","d":"string","e":"#E6F2FF"},{"b":"onClose","d":"variable","e":"handleCloseDisplayMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.primary.contrastText"},{"b":"dataQa","d":"string","e":"drawdownCard"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"environmentsStr.messages.firstOpenBottomInfoTitle"},{"b":"dataQa","d":"string","e":"environmentFirstUseCardBottom"},{"b":"backgroundColor","d":"string","e":"#E6F2FF"},{"b":"onClose","d":"variable","e":"handleCloseBottomMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"backgroundColor","d":"string","e":"rgba(236, 240, 252, 1)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tMessage Service Alerts & Notification\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"backgroundColor","d":"string","e":"#fff"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"title","d":"string","e":"Who Can Receive Notifications?"},{"b":"dataQa","d":"string","e":"notificationAd"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","c":[{"b":"title","d":"string","e":"Logs Retention"},{"b":"backgroundColor","d":"string","e":"#fff"},{"b":"dataQa","d":"string","e":"logsRetentionCard"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"backgroundColor","d":"string","e":"rgba(236, 240, 252, 1)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"dataQa","d":"string","e":"standard-card"},{"b":"minWidth","d":"string","e":"371px"},{"b":"width","d":"string","e":"475px"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"cardHeaderProps","d":"object","e":"{\n title: title,\n subTitle: description,\n icon: (\n \n ),\n actionElements: (\n
\n \n Tutorials\n \n ,\n title: 'Actions',\n variant: 'icon',\n }}\n items={generateMenuItems()}\n numOfMenuItemDisplayed={3}\n />\n
\n ),\n }"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js","c":[{"b":"dataQa","d":"string","e":"top-level-card"},{"b":"height","d":"string","e":"300px"},{"b":"width","d":"string","e":"300px"},{"b":"padding","d":"string","e":"0px"},{"b":"onClick","d":"function","e":"() => window.open(url, \"_blank\")"},{"b":"cardContent","d":"jsx","e":"
\n {image && }\n
\n
{title}
\n

{description}

\n
\n
"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCard/totalUsages.json b/mrc-usage-report-data/per-component/SolaceCard/totalUsages.json new file mode 100644 index 000000000..4800c7da6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCard/totalUsages.json @@ -0,0 +1 @@ +58 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCard/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceCard/usagesByMfe.json new file mode 100644 index 000000000..b582cbeed --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCard/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":35,"intg":6,"mc":5,"saas":10,"broker-manager":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCategorizedSearch/commonProps.json b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/commonProps.json new file mode 100644 index 000000000..be295e379 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":6},{"name":"searchValue","count":6},{"name":"onSearchValueChange","count":6},{"name":"selectedCategoryValue","count":6},{"name":"onCategoryChange","count":6},{"name":"categoryOptions","count":6},{"name":"searchInputWidth","count":5},{"name":"equalButtonWidth","count":4},{"name":"categoryOptionsWidth","count":4},{"name":"onSearchInputFocus","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCategorizedSearch/customization.json b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCategorizedSearch/files.json b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/files.json new file mode 100644 index 000000000..6b7e167a8 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCategorizedSearch/instances.json b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/instances.json new file mode 100644 index 000000000..8636b7767 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"expression","e":"\"iconSearchAndFilter\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChagned"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"onSearchInputFocus","d":"function","e":"() => setAutoFocusItem(false)"},{"b":"onSearchInputBlur","d":"function","e":"() => setAutoFocusItem(true)"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"expression","e":"\"iconSearchAndFilter\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChagned"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"onSearchInputFocus","d":"function","e":"() => setAutoFocusItem(false)"},{"b":"onSearchInputBlur","d":"function","e":"() => setAutoFocusItem(true)"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"name","d":"expression","e":"\"iconSearchAndFilter\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChagned"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"onSearchInputFocus","d":"function","e":"() => setAutoFocusItem(false)"},{"b":"onSearchInputBlur","d":"function","e":"() => setAutoFocusItem(true)"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx","c":[{"b":"name","d":"expression","e":"\"iconCategorizedSearch\""},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchValueChanged"},{"b":"selectedCategoryValue","d":"variable","e":"selectedCategory"},{"b":"onCategoryChange","d":"variable","e":"handleCategoryChanged"},{"b":"categoryOptions","d":"variable","e":"toggleGroupOptions"},{"b":"equalButtonWidth","d":"boolean","e":"true"},{"b":"searchInputWidth","d":"string","e":"100%"},{"b":"categoryOptionsWidth","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"id","d":"string","e":"searchInput"},{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Filter by Name"},{"b":"layout","d":"expression","e":"SolaceCategorizedSearchLayout.horizontal"},{"b":"categoryOptions","d":"variable","e":"tabOptions"},{"b":"selectedCategoryValue","d":"variable","e":"activeTab"},{"b":"onCategoryChange","d":"variable","e":"handleTabChange"},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchTextChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"id","d":"string","e":"searchInput"},{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Filter by Name"},{"b":"layout","d":"expression","e":"SolaceCategorizedSearchLayout.horizontal"},{"b":"categoryOptions","d":"expression","e":"entityFilterOptions.length > 0 ? entityFilterOptions : []"},{"b":"selectedCategoryValue","d":"variable","e":"selectedEntityTypeFilter"},{"b":"onCategoryChange","d":"variable","e":"handleEntityTypeFilterChange"},{"b":"searchValue","d":"variable","e":"searchText"},{"b":"onSearchValueChange","d":"variable","e":"handleSearchTextChange"},{"b":"searchInputWidth","d":"expression","e":"\"280px\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCategorizedSearch/totalUsages.json b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCategorizedSearch/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/usagesByMfe.json new file mode 100644 index 000000000..8d1647796 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCategorizedSearch/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCheckBox/commonProps.json b/mrc-usage-report-data/per-component/SolaceCheckBox/commonProps.json new file mode 100644 index 000000000..0e2eb76ea --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCheckBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":98},{"name":"checked","count":94},{"name":"onChange","count":86},{"name":"dataQa","count":81},{"name":"label","count":72},{"name":"id","count":30},{"name":"readOnly","count":22},{"name":"disabled","count":11},{"name":"subTextProps","count":11},{"name":"hasErrors","count":11}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCheckBox/customization.json b/mrc-usage-report-data/per-component/SolaceCheckBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCheckBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCheckBox/files.json b/mrc-usage-report-data/per-component/SolaceCheckBox/files.json new file mode 100644 index 000000000..c76ea44e2 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCheckBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCheckBox/instances.json b/mrc-usage-report-data/per-component/SolaceCheckBox/instances.json new file mode 100644 index 000000000..5eab6b1df --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCheckBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"key","d":"expression","e":"option.value"},{"b":"name","d":"expression","e":"option.name"},{"b":"checked","d":"expression","e":"checkedItems[option.value]"},{"b":"onChange","d":"variable","e":"handleCheckboxChange"},{"b":"dataQa","d":"expression","e":"option.name"},{"b":"disabled","d":"expression","e":"optionDisabled(option, selectedMessagingService)"},{"b":"label","d":"expression","e":"option.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"key","d":"expression","e":"option.name"},{"b":"name","d":"expression","e":"option.name"},{"b":"checked","d":"expression","e":"namingStrategy[option.name]"},{"b":"onChange","d":"variable","e":"handleCheckboxChange"},{"b":"dataQa","d":"expression","e":"option.name"},{"b":"label","d":"expression","e":"option.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","c":[{"b":"name","d":"expression","e":"\"keepParent\""},{"b":"dataQa","d":"expression","e":"\"keepEntityCheckbox\""},{"b":"onChange","d":"function","e":"(e) => handleKeepParentChange(e.value)"},{"b":"subTextProps","d":"object","e":"{ label: `Creates a new version of the ${entityType}`, light: true }"},{"b":"checked","d":"variable","e":"keepParent"},{"b":"label","d":"expression","e":"`I want to keep the ${entityType}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"name","d":"string","e":"subscribeToEvent"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetSubscribeToEvent(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"subscribeToEvent"},{"b":"readOnly","d":"variable","e":"isSubscribeReadOnly"},{"b":"dataQa","d":"string","e":"addEventToApplicationSubscribeToEvent"},{"b":"label","d":"string","e":"Subscribe to Event"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"name","d":"string","e":"publishEvent"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetPublishEvent(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"publishEvent"},{"b":"readOnly","d":"variable","e":"isPublishReadOnly"},{"b":"dataQa","d":"string","e":"addEventToApplicationPublishEvent"},{"b":"label","d":"string","e":"Publish Event"},{"b":"hasErrors","d":"expression","e":"!!eventFlowError"},{"b":"helperText","d":"variable","e":"eventFlowError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"checked","d":"variable","e":"isTLSChecked"},{"b":"dataQa","d":"string","e":"schemaRegistry[tls]"},{"b":"id","d":"string","e":"schemaRegistry[tls]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.addTLS"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"readOnly || loading || kafkaDelimiterIsNotSet"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"eventBroker[kafka][schemaRegistry][tls]"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"id","d":"string","e":"schemaRegistry[tls]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.addTLS"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx","c":[{"b":"name","d":"expression","e":"checkboxName ?? \"customhookCheckbox\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"variable","e":"label"},{"b":"checked","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.applicationDomain"},{"b":"label","d":"expression","e":"FilterTypeLabel.applicationDomain"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.state"},{"b":"label","d":"expression","e":"FilterTypeLabel.state"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.state"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.shared"},{"b":"label","d":"expression","e":"FilterTypeLabel.shared"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.shared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.brokerType"},{"b":"label","d":"expression","e":"FilterTypeLabel.brokerType"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.brokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.eventMesh"},{"b":"label","d":"expression","e":"FilterTypeLabel.eventMesh"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.eventMesh"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"expression","e":"FilterType.applicationType"},{"b":"label","d":"expression","e":"FilterTypeLabel.applicationType"},{"b":"checked","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + FilterType.applicationType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"variable","e":"filterType"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"checked","d":"expression","e":"currentFilters.includes(filterType)"},{"b":"onChange","d":"function","e":"(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + filterType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"name","d":"variable","e":"filterType"},{"b":"label","d":"expression","e":"renderCheckboxLabel(customAttributes[0].name)"},{"b":"checked","d":"expression","e":"!!selectedFilters.find((filter) => filter.type === filterType)"},{"b":"dataQa","d":"expression","e":"dataQa + \"-\" + filterType"},{"b":"onChange","d":"function","e":"(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"expression","e":"`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`"},{"b":"dataQa","d":"expression","e":"`${entityType}[shared]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"name","d":"string","e":"onlyShowEventsWithoutSubscription"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetOnlyShowEventsWithoutSubscription(e.value);\n\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"onlyShowEventsWithoutSubscription"},{"b":"label","d":"string","e":"Show events without a consumer subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"name","d":"expression","e":"`checkDomain-${item.id}`"},{"b":"dataQa","d":"expression","e":"`checkDomain-${item.id}`"},{"b":"onChange","d":"function","e":"(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)"},{"b":"checked","d":"variable","e":"checked"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"name","d":"expression","e":"\"selectAllDomains\""},{"b":"dataQa","d":"expression","e":"\"selectAllDomainsCheckbox\""},{"b":"onChange","d":"variable","e":"onAllDomainsCheck"},{"b":"checked","d":"variable","e":"isChecked"},{"b":"indeterminate","d":"expression","e":"isChecked && selectedDomainIds.length !== items.length"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.sharedCheckbox"},{"b":"dataQa","d":"expression","e":"\"eventApiProduct[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"name","d":"expression","e":"\"applicationDomain[uniqueTopicAddressEnforcementEnabled]\""},{"b":"checked","d":"expression","e":"domainValues?.uniqueTopicAddressEnforcementEnabled"},{"b":"dataQa","d":"expression","e":"\"uniqueTopicAddressEnforcementEnabled\""},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t\t"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"name","d":"expression","e":"\"applicationDomain[topicDomainEnforcementEnabled]\""},{"b":"checked","d":"expression","e":"domainValues?.topicDomainEnforcementEnabled"},{"b":"dataQa","d":"string","e":"topicDomainEnforcementEnabled"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t\t"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"name","d":"expression","e":"\"applicationDomain[nonDraftDescriptionsEditable]\""},{"b":"checked","d":"expression","e":"domainValues?.nonDraftDescriptionsEditable"},{"b":"dataQa","d":"string","e":"nonDraftDescriptionsEditable"},{"b":"label","d":"jsx","e":"Allow object descriptions to be editable in all lifecyle states"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"uniqueTopicAddressEnforcementEnabled"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetTopicDomainEnforcement(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"!value && !hasValidTopicDomain"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"topicDomainEnforcementEnabled"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"variable","e":"value"},{"b":"dataQa","d":"string","e":"nonDraftDescriptionsEditable"},{"b":"label","d":"jsx","e":"Allow object descriptions to be editable in all lifecyle states"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"key","d":"expression","e":"option.name"},{"b":"name","d":"expression","e":"option.name"},{"b":"checked","d":"expression","e":"namingStrategy[option.name]"},{"b":"onChange","d":"variable","e":"handleNamingStrategyChange"},{"b":"dataQa","d":"expression","e":"option.name"},{"b":"label","d":"expression","e":"option.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"expression","e":"en.eventApi.labels.sharedCheckbox"},{"b":"dataQa","d":"expression","e":"\"eventApi[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"dataQa","d":"string","e":"enumeration[shared]"},{"b":"label","d":"string","e":"Allow Enumeration to be shared across application domains"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"checked","d":"expression","e":"value || false"},{"b":"disabled","d":"variable","e":"sharedSchema"},{"b":"label","d":"string","e":"Allow schema to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"schema[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"string","e":"Allow event to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"event[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\thandleSharedChanged(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"string","e":"Allow event to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"event[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"dataQa","d":"string","e":"subscribeToEvent"},{"b":"label","d":"string","e":"Subscribe to Event"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"checked","d":"expression","e":"value || false"},{"b":"dataQa","d":"string","e":"publishEvent"},{"b":"label","d":"string","e":"Publish Event"},{"b":"hasErrors","d":"expression","e":"!!eventFlowError"},{"b":"helperText","d":"variable","e":"eventFlowError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"key","d":"expression","e":"filter.value"},{"b":"name","d":"expression","e":"filter.name"},{"b":"checked","d":"expression","e":"filtersMap[application?.id]?.[filter.value]"},{"b":"label","d":"expression","e":"filter.name"},{"b":"onChange","d":"function","e":"() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])"},{"b":"dataQa","d":"expression","e":"`environment-filters-${filter.value}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"checked","d":"expression","e":"value || false"},{"b":"label","d":"string","e":"Allow schema to be shared across application domains"},{"b":"dataQa","d":"expression","e":"\"schema[shared]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"name","d":"expression","e":"\"doNotShowAgain\""},{"b":"label","d":"expression","e":"\"Do not show this warning again\""},{"b":"onChange","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","c":[{"b":"name","d":"string","e":"broker"},{"b":"label","d":"string","e":"Broker"},{"b":"onChange","d":"variable","e":"handleBrokerOnChange"},{"b":"checked","d":"expression","e":"!!brokerEnabled && !toDisableBrokerScan()"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: \"Discover consumer groups and topics.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"toDisableBrokerScan()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","c":[{"b":"name","d":"string","e":"confluentSchemaRegistry"},{"b":"label","d":"string","e":"Confluent Schema Registry"},{"b":"onChange","d":"variable","e":"handleSchemaRegistryOnChange"},{"b":"checked","d":"expression","e":"!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: \"Discover schemas from Confluent.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"toDisableSchemaRegistryScan()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","c":[{"b":"label","d":"string","e":"Show only the modeled event meshes I can access"},{"b":"name","d":"string","e":"Filter By Access"},{"b":"checked","d":"variable","e":"filterByAccess"},{"b":"onChange","d":"variable","e":"toggleFilterByAccessOnChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"name","d":"expression","e":"\"hideAuditResults\""},{"b":"label","d":"expression","e":"`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`"},{"b":"checked","d":"expression","e":"showHiddenAudits !== \"false\""},{"b":"dataQa","d":"expression","e":"\"hideAuditResults-checkbox\""},{"b":"onChange","d":"function","e":"(event) => handleHideTagCheckbox(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dontShowConfirmBoxCheckbox\""},{"b":"label","d":"expression","e":"`Don't show this message again.`"},{"b":"checked","d":"expression","e":"!showDialogAgain"},{"b":"dataQa","d":"expression","e":"\"dontShowConfirmBox-checkbox\""},{"b":"onChange","d":"function","e":"(event) => setShowDialogAgain(!event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"name","d":"expression","e":"\"requiredConfirmBoxCheckbox\""},{"b":"label","d":"expression","e":"\"Require confirmation\""},{"b":"checked","d":"variable","e":"showConfirmDialogBox"},{"b":"dataQa","d":"expression","e":"\"requiredConfirmBox-checkbox\""},{"b":"onChange","d":"function","e":"(event) => handleRequireConfirmCheckbox(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"name","d":"expression","e":"props.name"},{"b":"label","d":"expression","e":"props.label"},{"b":"onChange","d":"function","e":"(e) => props.onChange(e.value)"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"checked","d":"expression","e":"props.value"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"checked","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"id","d":"string","e":"showDiffs"},{"b":"name","d":"string","e":"showDiffs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_differences\", message: \"Show only differences\" })"},{"b":"checked","d":"variable","e":"showDiffs"},{"b":"onChange","d":"variable","e":"handleShowDiffs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_mc_manager\", message: \"Rotate Mission Control Manager permissions\" })"},{"b":"name","d":"string","e":"mc_manager"},{"b":"checked","d":"expression","e":"usernames.includes(\"manager\")"},{"b":"onChange","d":"variable","e":"handleManagerChange"},{"b":"dataQa","d":"string","e":"checkbox_mc_manager"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_mc_editor\", message: \"Rotate Mission Control Editor permissions\" })"},{"b":"name","d":"string","e":"mc_editor"},{"b":"checked","d":"expression","e":"usernames.includes(\"admin\")"},{"b":"onChange","d":"variable","e":"handleEditorChange"},{"b":"dataQa","d":"string","e":"checkbox_mc_editor"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"label","d":"expression","e":"t({ id: \"id_mc_viewer\", message: \"Rotate Mission Control Viewer permissions\" })"},{"b":"name","d":"string","e":"mc_viewer"},{"b":"checked","d":"expression","e":"usernames.includes(\"viewer\")"},{"b":"onChange","d":"variable","e":"handleViewerChange"},{"b":"dataQa","d":"string","e":"checkbox_mc_viewer"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"id","d":"variable","e":"nameCheck"},{"b":"name","d":"variable","e":"nameCheck"},{"b":"dataQa","d":"variable","e":"nameCheck"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: \"id_port_label\", message: `Enable ${meta.label}, use port:` })}\n\t\t\t\t\t\t"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"checked","d":"expression","e":"!disabled"},{"b":"readOnly","d":"expression","e":"checkboxDisabled || !isPortDisablingEnabled"},{"b":"onChange","d":"variable","e":"handleProtocolToggle"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","c":[{"b":"id","d":"string","e":"mateLinkEncryption"},{"b":"name","d":"string","e":"mateLinkEncryption"},{"b":"dataQa","d":"string","e":"mateLinkEncryption"},{"b":"label","d":"expression","e":"t({ id: \"id_mate_link_label\", message: \"Enable mate-link encryption\" })"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: t({ id: \"id_mate_link_text\", message: \"This will encrypt the communication between the primary and backup brokers in a HA setup.\" }),\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"checked","d":"variable","e":"value"},{"b":"readOnly","d":"variable","e":"isCloning"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","c":[{"b":"id","d":"string","e":"cloneCertificateAuthorities"},{"b":"dataQa","d":"string","e":"cloneCertificateAuthorities"},{"b":"name","d":"string","e":"cloneCertificateAuthorities"},{"b":"label","d":"expression","e":"t({ id: \"id_clone_cert_auth\", message: \"Duplicate all Client and Domain Certificate Authorities\" })"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\tlabel: This will copy all certificates existing on the source event broker service to the new event broker service.,\n\t\t\t\t\tlight: true\n\t\t\t\t}"},{"b":"checked","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"id","d":"string","e":"showMyServices"},{"b":"name","d":"string","e":"showMyServices"},{"b":"dataQa","d":"string","e":"services-show-mine"},{"b":"label","d":"expression","e":"t({ id: \"id_only_my_services\", message: \"Only show my services\" })"},{"b":"checked","d":"variable","e":"userOnly"},{"b":"onChange","d":"variable","e":"handleSetUserOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(readPermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-read`"},{"b":"checked","d":"variable","e":"readChecked"},{"b":"indeterminate","d":"expression","e":"!readChecked && readIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(writePermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-write`"},{"b":"checked","d":"variable","e":"writeChecked"},{"b":"indeterminate","d":"expression","e":"!writeChecked && writeIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"onChange","d":"expression","e":"onPermissionCheckboxChange(permission.id)"},{"b":"name","d":"expression","e":"permission.id"},{"b":"checked","d":"expression","e":"!!isPermissionSelected[permission.id]"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"dataQa","d":"expression","e":"permission.id"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(readPermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-read`"},{"b":"checked","d":"variable","e":"readChecked"},{"b":"indeterminate","d":"expression","e":"!readChecked && readIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"onChange","d":"expression","e":"onBulkPermissionCheckboxChange(writePermissions)"},{"b":"name","d":"expression","e":"`${categoryName}-write`"},{"b":"checked","d":"variable","e":"writeChecked"},{"b":"indeterminate","d":"expression","e":"!writeChecked && writeIndeterminate"},{"b":"readOnly","d":"expression","e":"!!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"id","d":"string","e":"jitProvisionCheckboxId"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t{userGroupManagement.jitProvisionMainText}\n\t\t\t\t\t\t{userGroupManagement.jitProvisionSubText}\n\t\t\t\t\t"},{"b":"name","d":"string","e":"jitProvisionCheckboxId"},{"b":"onChange","d":"function","e":"(e) => setIsJitProvisioningChecked(e.value)"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}"},{"b":"checked","d":"variable","e":"isJitProvisioningChecked"},{"b":"title","d":"string","e":"Enable Just-in-Time provisioning"},{"b":"dataQa","d":"string","e":"jitProvisionCheckboxId"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"dataQa","d":"string","e":"customizeDefaultUserGroupCheckboxId"},{"b":"id","d":"string","e":"customizeDefaultUserGroupCheckboxId"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t{userGroupManagement.customizeGroupMainText}\n\t\t\t\t\t\t{userGroupManagement.customizeGroupSubText}\n\t\t\t\t\t"},{"b":"name","d":"string","e":"customizeDefaultUserGroupCheckboxId"},{"b":"checked","d":"variable","e":"isCustomizeUserGroupChecked"},{"b":"onChange","d":"function","e":"(e) => customizeDefaultUserGroupCheck(e.value)"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{isCustomizeUserGroupChecked ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titemMappingCallback={(option) => option}\n\t\t\t\t\t\t\t\t\toptionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}\n\t\t\t\t\t\t\t\t\tonChange={handleUserGroupSelectChange}\n\t\t\t\t\t\t\t\t\tfetchOptionsCallback={handleFetchProtocolOptionsCallback}\n\t\t\t\t\t\t\t\t\tisOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}\n\t\t\t\t\t\t\t\t\twidth=\"30rem\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}"},{"b":"title","d":"string","e":"Customize Default UserGroup"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scOutage\"].email : false"},{"b":"id","d":"string","e":"scOutageEmail"},{"b":"name","d":"string","e":"scOutageEmail"},{"b":"dataQa","d":"string","e":"scOutageEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scOutage\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scOutage\"].console : false"},{"b":"id","d":"string","e":"scOutageConsole"},{"b":"name","d":"string","e":"scOutageConsole"},{"b":"dataQa","d":"string","e":"scOutageConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scOutage\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scMaintenance\"].email : false"},{"b":"id","d":"string","e":"scMaintenanceEmail"},{"b":"name","d":"string","e":"scMaintenanceEmail"},{"b":"dataQa","d":"string","e":"scMaintenanceEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scMaintenance\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scMaintenance\"].console : false"},{"b":"id","d":"string","e":"scMaintenanceConsole"},{"b":"name","d":"string","e":"scMaintenanceConsole"},{"b":"dataQa","d":"string","e":"scMaintenanceConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scMaintenance\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceOutage\"].email : false"},{"b":"id","d":"string","e":"serviceOutageEmail"},{"b":"name","d":"string","e":"serviceOutageEmail"},{"b":"dataQa","d":"string","e":"serviceOutageEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceOutage\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceOutage\"].console : false"},{"b":"id","d":"string","e":"serviceOutageConsole"},{"b":"name","d":"string","e":"serviceOutageConsole"},{"b":"dataQa","d":"string","e":"serviceOutageConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceOutage\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceMaintenance\"].email : false"},{"b":"id","d":"string","e":"serviceMaintenanceEmail"},{"b":"name","d":"string","e":"serviceMaintenanceEmail"},{"b":"dataQa","d":"string","e":"serviceMaintenanceEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceMaintenance\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"serviceMaintenance\"].console : false"},{"b":"id","d":"string","e":"serviceMaintenanceConsole"},{"b":"name","d":"string","e":"serviceMaintenanceConsole"},{"b":"dataQa","d":"string","e":"serviceMaintenanceConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"serviceMaintenance\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessApprover\"].email : false"},{"b":"id","d":"string","e":"scEpEventAccessApproverEmail"},{"b":"name","d":"string","e":"scEpEventAccessApproverEmail"},{"b":"dataQa","d":"string","e":"scEpEventAccessApproverEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessApprover\"].console : false"},{"b":"id","d":"string","e":"scEpEventAccessApproverConsole"},{"b":"name","d":"string","e":"scEpEventAccessApproverConsole"},{"b":"dataQa","d":"string","e":"scEpEventAccessApproverConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].email : false"},{"b":"id","d":"string","e":"scEpEventAccessRequestorEmail"},{"b":"name","d":"string","e":"scEpEventAccessRequestorEmail"},{"b":"dataQa","d":"string","e":"scEpEventAccessRequestorEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].console : false"},{"b":"id","d":"string","e":"scEpEventAccessRequestorConsole"},{"b":"name","d":"string","e":"scEpEventAccessRequestorConsole"},{"b":"dataQa","d":"string","e":"scEpEventAccessRequestorConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings?.[\"scInfo\"].email : false"},{"b":"id","d":"string","e":"scInfoEmail"},{"b":"name","d":"string","e":"scInfoEmail"},{"b":"dataQa","d":"string","e":"scInfoEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scInfo\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings?.[\"scInfo\"].console : false"},{"b":"id","d":"string","e":"scInfoConsole"},{"b":"name","d":"string","e":"scInfoConsole"},{"b":"dataQa","d":"string","e":"scInfoConsole"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"scInfo\", \"console\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"checked","d":"expression","e":"savedSettings ? savedSettings?.[\"marketing\"]?.email : false"},{"b":"id","d":"string","e":"marketingEmail"},{"b":"name","d":"string","e":"marketingEmail"},{"b":"dataQa","d":"string","e":"marketingEmail"},{"b":"onChange","d":"function","e":"(value) => updateNotifyPreferences(\"marketing\", \"email\", value.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"serviceCreationCheckbox"},{"b":"label","d":"expression","e":"en.environments.labels.confirmASEnvironment"},{"b":"name","d":"string","e":"serviceCreationCheckbox"},{"b":"onChange","d":"variable","e":"handleCheckboxChange"},{"b":"checked","d":"variable","e":"isServiceCreationAllowed"},{"b":"dataQa","d":"string","e":"serviceCreationCheckbox"},{"b":"disabled","d":"expression","e":"isError || dialogState.updating"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"key","d":"variable","e":"templateType"},{"b":"name","d":"variable","e":"templateType"},{"b":"dataQa","d":"expression","e":"`${templateType}Checkbox`"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t{environments.configurationTemplates[templateType].label}\n\t\t\t\t\t\t"},{"b":"onChange","d":"variable","e":"updateTemplateTypeEnforcement"},{"b":"checked","d":"expression","e":"templateStatus.isEnforced"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"id","d":"string","e":"confirmDeleteCheckbox"},{"b":"label","d":"expression","e":"en.environments.labels.confirmDeleteEnvironment"},{"b":"name","d":"string","e":"confirmDeleteCheckbox"},{"b":"onChange","d":"variable","e":"handleConfirmDelete"},{"b":"checked","d":"variable","e":"confirmDelete"},{"b":"dataQa","d":"string","e":"confirmDeleteCheckbox"},{"b":"disabled","d":"variable","e":"isDeleting"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"id","d":"string","e":"eventMeshCheckbox"},{"b":"dataQa","d":"string","e":"eventMeshCheckbox"},{"b":"label","d":"expression","e":"en.overview.banner.eventMesh"},{"b":"name","d":"string","e":"eventMeshCheckbox"},{"b":"onChange","d":"function","e":"(e) => setIsEventMeshFeatureChecked(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.eventMesh"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"id","d":"string","e":"eventPortalCheckbox"},{"b":"dataQa","d":"string","e":"eventPortalCheckbox"},{"b":"label","d":"expression","e":"en.overview.banner.eventPortal"},{"b":"name","d":"string","e":"eventPortalCheckbox"},{"b":"onChange","d":"function","e":"(e) => setIsEventPortalFeatureChecked(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.eventPortal"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"checked","d":"expression","e":"isAdvancedInsightSelected ? true : false"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"label","d":"jsx","e":"{createBizOrganization.requests.checkBoxLabel}"},{"b":"name","d":"string","e":"advInsights"},{"b":"title","d":"string","e":"Advanced Insights Checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","c":[{"b":"id","d":"string","e":"requestCheckbox"},{"b":"label","d":"expression","e":"createBizOrganization.requests.checkBoxLabel"},{"b":"name","d":"string","e":"requestCheckbox"},{"b":"data-qa","d":"string","e":"requestCheckboxQa"},{"b":"onChange","d":"function","e":"({ value }) => setIsAdvancedInsightsChecked(value)"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\tlabel: `${createBizOrganization.requests.productCode}`,\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}"},{"b":"title","d":"expression","e":"createBizOrganization.requests.checkBoxTitle"},{"b":"disabled","d":"variable","e":"isFieldReadOnly"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"all"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.all"},{"b":"checked","d":"expression","e":"infra && orgs && services && users"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-all-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"infrastructure"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.infra"},{"b":"checked","d":"variable","e":"infra"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-infra-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"organization"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.orgs"},{"b":"checked","d":"variable","e":"orgs"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-orgs-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"service"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.services"},{"b":"checked","d":"variable","e":"services"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-services-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"user"},{"b":"label","d":"expression","e":"searchStr.searchArea.types.users"},{"b":"checked","d":"variable","e":"users"},{"b":"onChange","d":"variable","e":"searchIndicesChangeHandler"},{"b":"dataQa","d":"string","e":"search-users-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"useGlobalSearch"},{"b":"label","d":"expression","e":"searchStr.searchArea.useGlobalSearch"},{"b":"checked","d":"variable","e":"globalSearchEnabled"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tonGlobalSearchChange(!globalSearchEnabled);\n\t\t\t\t\t\t\t\tsetGlobalSearchEnabled(!globalSearchEnabled);\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"enable-global-search-checkbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","c":[{"b":"name","d":"string","e":"Automated Upgrades"},{"b":"label","d":"string","e":"Automated Upgrades"},{"b":"checked","d":"variable","e":"autoChecked"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","c":[{"b":"name","d":"string","e":"Customer Upgrades"},{"b":"label","d":"string","e":"Customer Upgrades"},{"b":"checked","d":"variable","e":"customerChecked"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"name","d":"string","e":"hideCompletedRuns"},{"b":"checked","d":"variable","e":"hideCompletedRuns"},{"b":"dataQa","d":"string","e":"hide-completed-runs"},{"b":"onChange","d":"function","e":"() => handleToggleHideCompletedRuns()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","c":[{"b":"checked","d":"variable","e":"hideUnusedLimitsRows"},{"b":"onChange","d":"function","e":"() => setHideUnusedLimitsRows((state) => !state)"},{"b":"name","d":"expression","e":"customers.orgLimitsCard.hideUnusedLimit"},{"b":"title","d":"expression","e":"customers.orgLimitsCard.hideUnusedLimit"},{"b":"data-qa","d":"string","e":"hideUnusedLimitsCheckboxQa"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tsetValue(\"PullDatadogAgentImage\", e.value);\n\t\t\t\t\t\t\t\t\tfield.onChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Pull Datadog Agent Image"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Pull Datadog Agent Image"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tlabel: \"Forces docker to pull latest datadog-agent image\"\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"PullDatadogAgentImageCheckbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"() => field.onChange(!field.value)"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Datadog Monitoring Enabled Checkbox"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Datadog Monitoring Enabled"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Agent (Enabled/Disabled) when creating new services\"\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"monitoringEnabledCheckbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"() => field.onChange(!field.value)"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Datadog Monitoring Proxy Enabled Checkbox"},{"b":"boldLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Datadog Monitoring Proxy Enabled"},{"b":"subTextProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Proxy server (Enabled/Disabled) for services\"\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"monitoringProxyEnabledCheckbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"checked","d":"variable","e":"checked"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\trow[propertyName] = !row[propertyName];\n\t\t\t\t}"},{"b":"name","d":"variable","e":"propertyName"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"indeterminate","d":"variable","e":"indeterminate"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"checked","d":"expression","e":"field.value"},{"b":"onChange","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tfield.onChange(!field.value);\n\t\t\t\t\t\t\t\t\t\t// update button should only show if there is a change in rmms status\n\t\t\t\t\t\t\t\t\t\tsetShowRMMSUpdateButton(\n\t\t\t\t\t\t\t\t\t\t\tddOrgData?.apiKey !== undefined && getValues(\"rmmsManaged\") !== monitoringOrgData?.isRMMS\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t}"},{"b":"name","d":"expression","e":"field.name"},{"b":"title","d":"string","e":"Managed by RMMS Checkbox"},{"b":"largeLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Managed by RMMS"},{"b":"dataQa","d":"string","e":"rmmsManaged"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCheckBox/totalUsages.json b/mrc-usage-report-data/per-component/SolaceCheckBox/totalUsages.json new file mode 100644 index 000000000..d97edbb29 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCheckBox/totalUsages.json @@ -0,0 +1 @@ +99 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCheckBox/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceCheckBox/usagesByMfe.json new file mode 100644 index 000000000..6aa2571ba --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCheckBox/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":45,"intg":1,"mc":9,"saas":27,"maas-ops-react":17} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChip/commonProps.json b/mrc-usage-report-data/per-component/SolaceChip/commonProps.json new file mode 100644 index 000000000..a3151b7db --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":42},{"name":"key","count":13},{"name":"variant","count":11},{"name":"maxWidth","count":10},{"name":"onDelete","count":9},{"name":"dataQa","count":7},{"name":"fillColor","count":7},{"name":"clickable","count":6},{"name":"size","count":6},{"name":"labelColor","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChip/customization.json b/mrc-usage-report-data/per-component/SolaceChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChip/files.json b/mrc-usage-report-data/per-component/SolaceChip/files.json new file mode 100644 index 000000000..10c7be830 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/common/components/CommonAppBar.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChip/instances.json b/mrc-usage-report-data/per-component/SolaceChip/instances.json new file mode 100644 index 000000000..4770d68a4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"label","d":"expression","e":"selectedEventMesh.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.OUTLINED"},{"b":"state","d":"expression","e":"selected ? STATES.ACTIVE : STATES.NOT_SELECTED"},{"b":"clickable","d":"boolean","e":"true"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"boldLabel","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"label","d":"expression","e":"protocolName.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","c":[{"b":"label","d":"variable","e":"applicationDomainName"},{"b":"maxWidth","d":"expression","e":"isSidePanel ? 100 : 150"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"expression","e":"messages.configuration.enabled"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"key","d":"expression","e":"messagingService.eventMeshId"},{"b":"label","d":"expression","e":"messagingService.eventMeshName"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"maxWidth","d":"string","e":"200px"},{"b":"disabled","d":"variable","e":"toBeRemoved"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"label","d":"expression","e":"`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onDelete","d":"variable","e":"onDelete"},{"b":"dataQa","d":"expression","e":"`filterChip-${filterType}`"},{"b":"clickable","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx","c":[{"b":"label","d":"expression","e":"node.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx","c":[{"b":"label","d":"variable","e":"applicationDomainName"},{"b":"icon","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"label","d":"variable","e":"name"},{"b":"maxWidth","d":"number","e":"200"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"label","d":"expression","e":"domainInfoMap[item.id].name"},{"b":"maxWidth","d":"number","e":"150"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[{"b":"label","d":"variable","e":"label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"label","d":"expression","e":"messages.configuration.enabled"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"label","d":"expression","e":"eventMesh.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"label","d":"jsx","e":" 1 ? \"s\" : \"\"}: ${consumersCount}`}>\n\t\t\t\t\t\t{`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`}\n\t\t\t\t\t"},{"b":"maxWidth","d":"number","e":"110"},{"b":"dataQa","d":"expression","e":"`consumerChip-${eventVersionId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx","c":[{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t\t\t\t{isAppDomainLocked && }\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"key","d":"expression","e":"tag.id"},{"b":"label","d":"expression","e":"tag.name"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"boldLabel","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t {AUDIT_TAGS_LABELS.Hide}\n\t\t\t\t\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"borderRadius","d":"expression","e":"\"sm\""},{"b":"boldLabel","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onDelete","d":"variable","e":"onDelete"},{"b":"dataQa","d":"expression","e":"`filterChip-${filterType}`"},{"b":"clickable","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onDelete","d":"variable","e":"onDelete"},{"b":"dataQa","d":"expression","e":"`filterChip-${filterType}`"},{"b":"clickable","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","c":[{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"labelColor","d":"expression","e":"chipProps.labelColor"},{"b":"fillColor","d":"expression","e":"chipProps.fillColor"},{"b":"height","d":"string","e":"md"},{"b":"label","d":"jsx","e":"{chipProps.label}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"label","d":"expression","e":"filter.name + \" : \" + filter.value"},{"b":"onDelete","d":"function","e":"() => deleteFilter(filter.key)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"label","d":"expression","e":"user.email"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"dialogState.user?.email"},{"b":"label","d":"expression","e":"dialogState.user?.email"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"dialogState.user?.email"},{"b":"label","d":"expression","e":"dialogState.user?.email"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"group.id"},{"b":"label","d":"expression","e":"group.name"},{"b":"maxWidth","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/common/components/CommonAppBar.tsx","c":[{"b":"label","d":"string","e":"BETA"},{"b":"size","d":"string","e":"xs"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"`${label}: ${value}`"},{"b":"onDelete","d":"variable","e":"onDeleteFunc"},{"b":"dataQa","d":"variable","e":"dataQaId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx","c":[{"b":"label","d":"string","e":"BETA"},{"b":"size","d":"string","e":"xs"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"key","d":"expression","e":"email + index"},{"b":"label","d":"variable","e":"email"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"key","d":"expression","e":"email + index"},{"b":"label","d":"variable","e":"email"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.LIGHT_GREY"},{"b":"onDelete","d":"function","e":"() => removeEmail(email)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"label","d":"variable","e":"value"},{"b":"onDelete","d":"function","e":"() => setFilters({ ...filters, [key]: \"\" })"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx","c":[{"b":"size","d":"string","e":"sm"},{"b":"maxWidth","d":"string","e":"fit-content"},{"b":"label","d":"variable","e":"item"},{"b":"...","d":"spread","e":"setChipArray ? { onDelete: () => setChipArray(item) } : {}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[{"b":"key","d":"expression","e":"`visible-${index}-${email}`"},{"b":"label","d":"variable","e":"email"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"key","d":"variable","e":"feature"},{"b":"label","d":"variable","e":"feature"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","c":[{"b":"key","d":"variable","e":"feature"},{"b":"label","d":"variable","e":"feature"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","c":[{"b":"key","d":"string","e":"more"},{"b":"label","d":"expression","e":"integrationStrings.organizations.table.moreFeatures(features.length - 1)"},{"b":"size","d":"string","e":"sm"},{"b":"dataQa","d":"string","e":"more-features"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"dataQa","d":"expression","e":"`${value}-chip`"},{"b":"label","d":"expression","e":"capitalCase(value)"},{"b":"onDelete","d":"function","e":"() => modifyFilters().removeFilter(value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"label"},{"b":"onDelete","d":"function","e":"() => onDeleteFunc()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"label","d":"string","e":"Up to Date"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"label","d":"string","e":"Out of Date"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.warnYellow"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.warnBgYellow"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChip/totalUsages.json b/mrc-usage-report-data/per-component/SolaceChip/totalUsages.json new file mode 100644 index 000000000..f70d7bba4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChip/totalUsages.json @@ -0,0 +1 @@ +42 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChip/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceChip/usagesByMfe.json new file mode 100644 index 000000000..582646305 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":20,"intg":1,"saas":6,"infra":2,"maas-ops-react":13} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChipTextArea/commonProps.json b/mrc-usage-report-data/per-component/SolaceChipTextArea/commonProps.json new file mode 100644 index 000000000..afef96667 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChipTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":1},{"name":"id","count":1},{"name":"name","count":1},{"name":"value","count":1},{"name":"validateChip","count":1},{"name":"onChange","count":1},{"name":"hasErrors","count":1},{"name":"helperText","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChipTextArea/customization.json b/mrc-usage-report-data/per-component/SolaceChipTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChipTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChipTextArea/files.json b/mrc-usage-report-data/per-component/SolaceChipTextArea/files.json new file mode 100644 index 000000000..48b736da7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChipTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChipTextArea/instances.json b/mrc-usage-report-data/per-component/SolaceChipTextArea/instances.json new file mode 100644 index 000000000..f2b78ee00 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChipTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","c":[{"b":"label","d":"expression","e":"organizationDetails.manageNotificationContactDialog.label"},{"b":"id","d":"string","e":"demoChipTextAreaId"},{"b":"name","d":"string","e":"demoChipTextArea"},{"b":"value","d":"variable","e":"dialogEmails"},{"b":"validateChip","d":"variable","e":"emailValidationFunction"},{"b":"onChange","d":"function","e":"(e: { allValues: string; chips: ChipData[] }) => {\n\t\t\t\t\thandleEmailsChange(e.allValues, e.chips);\n\t\t\t\t}"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorMessage || (updateError ? organizationDetails.manageNotificationContactDialog.errors.updateError : \"\")"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChipTextArea/totalUsages.json b/mrc-usage-report-data/per-component/SolaceChipTextArea/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChipTextArea/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceChipTextArea/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceChipTextArea/usagesByMfe.json new file mode 100644 index 000000000..8b92edc65 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceChipTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCircularProgress/commonProps.json b/mrc-usage-report-data/per-component/SolaceCircularProgress/commonProps.json new file mode 100644 index 000000000..3525aeb2a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCircularProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"size","count":23},{"name":"variant","count":13},{"name":"message","count":5},{"name":"dataQa","count":1},{"name":"disableShrink","count":1},{"name":"data-qa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCircularProgress/customization.json b/mrc-usage-report-data/per-component/SolaceCircularProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCircularProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCircularProgress/files.json b/mrc-usage-report-data/per-component/SolaceCircularProgress/files.json new file mode 100644 index 000000000..e6ac2b30d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCircularProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","../../../maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCircularProgress/instances.json b/mrc-usage-report-data/per-component/SolaceCircularProgress/instances.json new file mode 100644 index 000000000..66a5bde28 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCircularProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx","c":[{"b":"dataQa","d":"variable","e":"testId"},{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"variable","e":"size"},{"b":"disableShrink","d":"variable","e":"disableShrink"},{"b":"message","d":"variable","e":"message"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"size","d":"string","e":"lg"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"jsx","e":"Retrieving event broker service details..."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"variable","e":"configuringMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"jsx","e":"Deploying license to broker..."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"sm"},{"b":"message","d":"jsx","e":"Removing Distributed Tracing license from broker..."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"variable","e":"size"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"size","d":"string","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"size","d":"string","e":"sm"},{"b":"variant","d":"variable","e":"loadingVariant"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","c":[{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"size","d":"string","e":"sm"},{"b":"data-qa","d":"string","e":"loading-spinner"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"size","d":"string","e":"sm"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCircularProgress/totalUsages.json b/mrc-usage-report-data/per-component/SolaceCircularProgress/totalUsages.json new file mode 100644 index 000000000..7c091989d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCircularProgress/totalUsages.json @@ -0,0 +1 @@ +37 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCircularProgress/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceCircularProgress/usagesByMfe.json new file mode 100644 index 000000000..55c4768ca --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCircularProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7,"intg":3,"mc":11,"saas":6,"infra":1,"maas-ops-react":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCodeEditor/commonProps.json b/mrc-usage-report-data/per-component/SolaceCodeEditor/commonProps.json new file mode 100644 index 000000000..0d493827b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCodeEditor/commonProps.json @@ -0,0 +1 @@ +[{"name":"mode","count":20},{"name":"value","count":20},{"name":"readOnly","count":18},{"name":"dataQa","count":16},{"name":"id","count":14},{"name":"expandable","count":8},{"name":"helperText","count":6},{"name":"hasErrors","count":6},{"name":"onChange","count":4},{"name":"hasWarnings","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCodeEditor/customization.json b/mrc-usage-report-data/per-component/SolaceCodeEditor/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCodeEditor/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCodeEditor/files.json b/mrc-usage-report-data/per-component/SolaceCodeEditor/files.json new file mode 100644 index 000000000..a3e9ad10a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCodeEditor/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCodeEditor/instances.json b/mrc-usage-report-data/per-component/SolaceCodeEditor/instances.json new file mode 100644 index 000000000..876b7034c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCodeEditor/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"dataQa","d":"expression","e":"`itemDetail-${item.identifier}`"},{"b":"id","d":"expression","e":"`itemDetail-${item.identifier}`"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"item.value ? JSON.stringify(jsonValue, null, 2) : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]`"},{"b":"value","d":"expression","e":"schemaVersion?.content || \"\""},{"b":"mode","d":"expression","e":"schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"id","d":"expression","e":"`applicationVersion[consumers].${index}.configuration`"},{"b":"value","d":"variable","e":"prettifiedConfiguration"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.configuration`"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"variable","e":"observedConfiguration"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"onChange","d":"function","e":"(editor, data, value) => {\n\t\t\t\t\t\t\t\t// onChange will break this because it will compete with the other debounced error flow\n\t\t\t\t\t\t\t\thandleChangeCustomConfiguration(value);\n\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"expression","e":"mode === Mode.template"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"mode","d":"variable","e":"impliedContentType"},{"b":"onChange","d":"function","e":"(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion.content\");\n\t\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""},{"b":"helperText","d":"expression","e":"error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"hasWarnings","d":"expression","e":"!error && !!editorWarningMsg"},{"b":"expandable","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"id","d":"expression","e":"\"schemaVersion[content]\""},{"b":"value","d":"expression","e":"schemaVersionRefetched.content || \"\""},{"b":"mode","d":"expression","e":"schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"expandable","d":"expression","e":"!shownInCatalogDetailContainer"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"mode","d":"variable","e":"impliedContentType"},{"b":"onChange","d":"function","e":"(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion[content]\");\n\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[content]\""},{"b":"helperText","d":"expression","e":"error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"hasWarnings","d":"expression","e":"!error && !!editorWarningMsg"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"variable","e":"isImportedSchemaVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","c":[{"b":"id","d":"expression","e":"`dataCollected[${row.id}]`"},{"b":"value","d":"expression","e":"row.data"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"dataCollected[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"\"auditResultConfig[schemaBody]\""},{"b":"id","d":"expression","e":"\"auditResultConfig[schemaBody]\""},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"schemaBody"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"\"auditResultConfig[schemaReferences]\""},{"b":"id","d":"expression","e":"\"auditResultConfig[schemaReferences]\""},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"schemaReferences"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","c":[{"b":"id","d":"expression","e":"\"auditResultConfig[content]\""},{"b":"value","d":"expression","e":"runtimeAttributes || designerAttributes"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"auditResultConfig[content]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"value","d":"expression","e":"observedConfiguration.value"},{"b":"mode","d":"expression","e":"\"json\""},{"b":"onChange","d":"function","e":"(editor, data, value) => setObservedConfiguration({ name, value })"},{"b":"dataQa","d":"variable","e":"configurationName"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"hasErrors","d":"expression","e":"!!error?.message"},{"b":"expandable","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"dataQa","d":"string","e":"errorlog-stackTrace"},{"b":"id","d":"string","e":"errorlog-stackTrace"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(\n\t\t\t\t\t\t\t\tinfrastructureRequests[`${deleteConfirmation.infrastructureId}-disable`].error,\n\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t2\n\t\t\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"id","d":"expression","e":"detailsDialog.org.organizationId"},{"b":"value","d":"expression","e":"JSON.stringify(detailsDialog.org, null, 2)"},{"b":"mode","d":"string","e":"json"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx","c":[{"b":"mode","d":"string","e":"protobuf"},{"b":"value","d":"expression","e":"currentConfig.config"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"expandable","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"codeEditor"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(details, null, 2)"},{"b":"helperText","d":"jsx","e":""},{"b":"hasErrors","d":"expression","e":"details?.isError"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"codeEditor"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(servicePackage, null, 2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(infrastructureRequests[errorDetails].error, null, 2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"expandable","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"codeEditor"},{"b":"mode","d":"string","e":"json"},{"b":"value","d":"expression","e":"JSON.stringify(configs?.data, null, 2)"},{"b":"helperText","d":"jsx","e":""},{"b":"hasErrors","d":"expression","e":"configs?.isError"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCodeEditor/totalUsages.json b/mrc-usage-report-data/per-component/SolaceCodeEditor/totalUsages.json new file mode 100644 index 000000000..2edeafb09 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCodeEditor/totalUsages.json @@ -0,0 +1 @@ +20 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceCodeEditor/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceCodeEditor/usagesByMfe.json new file mode 100644 index 000000000..e08abc941 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceCodeEditor/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":12,"intg":1,"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceConfirmationDialog/commonProps.json b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/commonProps.json new file mode 100644 index 000000000..f2d2d7fac --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/commonProps.json @@ -0,0 +1 @@ +[{"name":"actions","count":235},{"name":"isOpen","count":234},{"name":"title","count":232},{"name":"maxWidth","count":88},{"name":"linearProgressIndicator","count":69},{"name":"contentText","count":32},{"name":"key","count":8},{"name":"contentLayout","count":8},{"name":"data-qa","count":3},{"name":"customAction","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceConfirmationDialog/customization.json b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceConfirmationDialog/files.json b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/files.json new file mode 100644 index 000000000..888fe6630 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx","../../../maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ops-ui/micro-frontends/infra/src/common/components/ErrorDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceConfirmationDialog/instances.json b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/instances.json new file mode 100644 index 000000000..6ef58c7a0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"\"fail-download-async-api\""},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, variant: \"outline\" as const, onClick: action(\"onClose\") }]"},{"b":"linearProgressIndicator","d":"boolean","e":"false"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"confirmationObj.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.cancelLabel,\n\t\t\t\t\t\tdataQa: \"returnToForm\",\n\t\t\t\t\t\tonClick: () => closeModal(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.okLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"leaveAndDiscard\",\n\t\t\t\t\t\tonClick: () => closeModal(true)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"applicationVersionId"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Unable to Delete ${entityTypeToLabel(entityType)}`"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: handleCloseWithErrors }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Delete ${entityTypeLabel}`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Add to Environment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError\n\t\t\t\t}\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.eventApiProduct.headers.deployToEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","c":[{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: onClose }]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"title","d":"expression","e":"en.entities.labels.bulkMove.move(\n\t\t\t\tselectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)\n\t\t\t)"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, onClick: onClose },\n\t\t\t\t{ label: en.common.button.move, variant: \"call-to-action\", onClick: handleSubmit, isDisabled: moveDisabled }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"startMove.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tDetected Event Flow Mismatches\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tEdit Application\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(cancel)"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: () => onClose(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.action,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleOnClick,\n\t\t\t\t\tdataQa: \"updateEntityInEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError\n\t\t\t\t}\n\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"submitting || isDeploymentPreviewLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"messages.add.addToEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"messages.add.addToEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messages.credentials.saveCredentialsAndContinue,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: onSave,\n\t\t\t\t\t\t\tdataQa: \"saveCredentialsAndContinue\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !isValid\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"string","e":"xl"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.eventApiProduct.headers.addEventApiProduct"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCancel },\n\t\t\t\t{ label: resetButtonLabel, variant: \"outline\", onClick: handleSave }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Configure Variable"},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteVersionDialogOpen"},{"b":"title","d":"expression","e":"`Delete ${entityTypeLabel} Version`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCancel },\n\t\t\t\t{ label: !isLastVersion || keepParent ? \"Delete Version\" : `Delete Version & ${entityTypeLabel}`, variant: \"outline\", onClick: handleDelete }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"confirmExitDialogOpen"},{"b":"title","d":"expression","e":"`Unable to Close ${entityTypeToLabel(entityType)}`"},{"b":"actions","d":"array","e":"[{ label: \"Return To Form\", variant: \"outline\", onClick: handleCancel }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Duplicate Application Version`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ dataQa: \"save\", label: \"Save\", variant: \"call-to-action\", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }\n\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"duplicateEntityVersion.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"title ?? \"Warning\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Return to Form\", onClick: onClose },\n\t\t\t\t{ label: \"Reload\", variant: \"outline\", onClick: handleReload }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: refreshGraphRequiredOnClosingErrorDialog ? \"Close & Refresh Graph\" : \"Close\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"title","d":"variable","e":"getTitle"},{"b":"actions","d":"variable","e":"getButtons"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"string","e":"KafkaSampleSuccessDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.selectDialog.title"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.select,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tisDisabled: !value,\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle"},{"b":"actions","d":"variable","e":"getButtons"},{"b":"linearProgressIndicator","d":"variable","e":"showProgressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"title","d":"expression","e":"details.label"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx","c":[{"b":"title","d":"expression","e":"error.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"contentText","d":"expression","e":"error.message"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tsetIsDialogOpen(false);\n\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx","c":[{"b":"title","d":"string","e":"Manage Custom Attributes"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"customAttributes-cancel\", onClick: () => setIsDialogOpen(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tdataQa: \"customAttributes-save\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: disabled || isSaving === true,\n\t\t\t\t\tonClick: () => handleSave()\n\t\t\t\t}\n\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isSaving"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"contentText","d":"expression","e":"typeof errorObject.message === \"string\" ? errorObject.message : null"},{"b":"actions","d":"array","e":"[{ label: \"Close\", dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"title","d":"expression","e":"generateTitleDialog(mode)"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"title || \"Event Broker Connection Details\""},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Modeled Event Mesh"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"title","d":"string","e":"Add Existing Event Broker"},{"b":"isOpen","d":"expression","e":"open && !openMessagingServiceDialog"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleAddExistingMessagingService();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress || !!submitError?.message\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"addInProgress"},{"b":"maxWidth","d":"string","e":"md"},{"b":"contentLayout","d":"string","e":"contents"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"title ?? defaultTilte"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Remove\", dataQa: \"removeAssociation\", variant: \"outline\", onClick: () => onRemove(idToRemove) }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Publish Graph Layout\""},{"b":"isOpen","d":"variable","e":"layoutConflictDialogOpen"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: `Return to ${entityLabel}`, onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Publish Layout\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: graphUpdating,\n\t\t\t\t\tonClick: handleContinuePublishLayout,\n\t\t\t\t\tdataQa: \"continuePublishLayout\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Changes Partially Published\""},{"b":"isOpen","d":"variable","e":"partialPublishDialogOpen"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Close\", onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ label: \"Refresh\", variant: \"outline\", onClick: handleRefreshGraph, id: \"refreshGraph\", dataQa: \"refreshGraph\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"contentText","d":"expression","e":"typeof errorObject.message === \"string\" ? errorObject.message : null"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"versionStateDialogOpen"},{"b":"title","d":"string","e":"Manage Lifecycle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tonClick: handleLifecycleChanges,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isSaveDisabled()\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"md\""},{"b":"linearProgressIndicator","d":"expression","e":"changeEntityVersionStateHook?.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"title","d":"expression","e":"details.label"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"title","d":"expression","e":"details.label"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"title","d":"string","e":"Select Shared Events"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))"},{"b":"maxWidth","d":"expression","e":"\"lg\""},{"b":"contentLayout","d":"string","e":"contents"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteDialogOpen"},{"b":"title","d":"expression","e":"`Delete Consumer`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteConsumerButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: handleDelete, dataQa: \"deleteConsumerButton\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteDialogOpen"},{"b":"title","d":"expression","e":"`Delete Subscription`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteSubscriptionButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(consumerId, index), dataQa: \"deleteSubscriptionButton\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"isOpen","d":"variable","e":"errorDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title"},{"b":"contentText","d":"expression","e":"errorObject.message ?? \"\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Delete Application Domain\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onClose }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Delete Application Domain`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t\t\t{ dataQa: \"delete\", label: \"Delete\", variant: \"outline\", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"deleteApplicationDomain.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"title","d":"string","e":"Application Domain Export Preview"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"domainExport-cancel\", onClick: () => onCancel() },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Export\",\n\t\t\t\t\tdataQa: \"domainExport-confirm\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: !!errorMsg,\n\t\t\t\t\tonClick: () => onExport()\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx","c":[{"b":"title","d":"expression","e":"error.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"contentText","d":"expression","e":"error.message"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Kafka Settings\""},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Save\", variant: \"outline\", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx","c":[{"b":"title","d":"expression","e":"customAttributeValidations?.title"},{"b":"isOpen","d":"expression","e":"!!customAttributeValidations"},{"b":"actions","d":"expression","e":"customAttributeValidations?.actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx","c":[{"b":"title","d":"expression","e":"\"Error Importing Application Domains\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetErrorMsg(\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx","c":[{"b":"title","d":"expression","e":"appDomainCount === 1 ? \"Importing Application Domain\" : \"Importing Application Domains\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"contentText","d":"expression","e":"\"The import may take several minutes.\""},{"b":"actions","d":"null","e":"null"},{"b":"linearProgressIndicator","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx","c":[{"b":"title","d":"expression","e":"\"Error Importing Application Domains\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"contentText","d":"variable","e":"errorMsg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.eventApiProduct.labels.availability.dialogTitle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: en.common.button.cancel, onClick: () => setOpen(false) },\n\t\t\t\t\t\t{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"expression","e":"updatePublishState.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"title","d":"expression","e":"error.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"contentText","d":"expression","e":"error.message"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetOpen(false);\n\t\t\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"title","d":"expression","e":"errorObject.title || \"Error\""},{"b":"contentText","d":"expression","e":"errorObject.message"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ dataQa: \"topicAddressResourcesCancel\", label: \"Cancel\", variant: \"outline\", onClick: onReset },\n\t\t\t\t{ dataQa: \"topicAddressResourcesDone\", label: ctaLabel, variant: \"call-to-action\", onClick: onDone }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"failedTopicDomains?.length > 0\n\t\t\t\t\t? [{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn },\n\t\t\t\t\t\t\t{ label: \"Use Duplicates\", variant: \"outline\", onClick: onContinue }\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"showErrorDialog"},{"b":"title","d":"expression","e":"error.title"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t\t\t
{`${collisionErrors ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"eventApi.id"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","c":[{"b":"title","d":"jsx","e":"
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"eventApi.id"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"maxWidth","d":"expression","e":"\"md\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"title","d":"expression","e":"modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\tmodeSelectionToConfirm === Mode.custom\n\t\t\t\t\t\t\t\t\t? messagesConfiguration.solaceClientProfileName.customize\n\t\t\t\t\t\t\t\t\t: messagesConfiguration.selectTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.custom) {\n\t\t\t\t\t\t\t\t\tsetValue(FormCustomizedClientProfileName, observedConfiguration ?? \"\");\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\treset(modeSelectionToConfirm === Mode.template);\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"title","d":"expression","e":"modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.template) {\n\t\t\t\t\t\t\t\t\tupdateUserConfigValues({}, true);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"title","d":"expression","e":"en.application.configuration.restDeliveryPoint.addRequestHeader"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\tonClick: () => handleClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tdataQa: \"add-request-header-submit\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tlabel: en.application.configuration.restDeliveryPoint.addRequestHeader,\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleAddRequestHeader();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"\"Topic Address Required\""},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"isEditing\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: () => setOpen(false), dataQa: \"credentialsCancel\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: common.button.save,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tonClick: () => onSave(),\n\t\t\t\t\t\t\t\tisDisabled: isLoading || !isValid || !!error,\n\t\t\t\t\t\t\t\tdataQa: \"credentialsSave\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [{ label: common.button.close, variant: \"call-to-action\", onClick: () => setOpen(false), dataQa: \"credentialsClose\" }]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"isOpen","d":"expression","e":"!!error"},{"b":"title","d":"expression","e":"\"Error Sending Requests\""},{"b":"contentText","d":"expression","e":"error ?? \"\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"messages.action.removeCredentials"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.remove,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {\n\t\t\t\t\t\t\t\t\t\trefreshApplicationDeploymentPreviews.refresh();\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\thandleBackendError(messages.credentials.removeCredentialsErrorTitle, error);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// close the dialog\n\t\t\t\t\t\t\t\tsetRemoveCredentialsData(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Review Event Access Request\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onCancel }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Review Event Access Request"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Send Review\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: sendReviewButtonDisabled,\n\t\t\t\t\t\t\tdataQa: \"sendReviewButton\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"linearProgressIndicator","d":"expression","e":"approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Revoke Event Access\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onCancel }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Revoke Event Access"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Revoke Access\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: declineEventAccessRequest.isLoading\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"linearProgressIndicator","d":"expression","e":"declineEventAccessRequest.isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","c":[{"b":"isOpen","d":"variable","e":"userNotFoundDialogOpen"},{"b":"title","d":"string","e":"User No Longer Exist"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: \"Close & Clear Filters\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\t\t\tonClick: handleCloseAndClearFilters\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"title","d":"expression","e":"\"Disclaimer\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: () => setIsDialogOpen(false) }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"variable","e":"isLoading"},{"b":"title","d":"expression","e":"getInProgressTitle(activeStep)"},{"b":"actions","d":"array","e":"[]"},{"b":"linearProgressIndicator","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"expression","e":"errorMessage !== \"\""},{"b":"title","d":"string","e":"Encountered Error while Creating Assets"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: () => setErrorMessage(\"\") }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"expression","e":"genAiErrorMessage !== \"\""},{"b":"title","d":"expression","e":"`Encountered Error while ${getInProgressTitle(activeStep)}`"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"call-to-action\", onClick: () => setGenAiErrorMessage(\"\") }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"variable","e":"isMoreInformationDialogOpen"},{"b":"title","d":"string","e":"More Information Required"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setIsMoreInformationDialogOpen(false)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"isOpen","d":"expression","e":"activeStepToConfirm !== -1"},{"b":"title","d":"string","e":"Progress Reset Warning"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setActiveStepToConfirm(-1)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Continue\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => handleSetActiveStep(activeStepToConfirm)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: () => setApiError(null) }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx","c":[{"b":"key","d":"expression","e":"\"learningCenterErrorDialog\""},{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"variable","e":"title"},{"b":"contentText","d":"variable","e":"description"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: closeErrorDialog }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Run Discovery Scan"},{"b":"actions","d":"expression","e":"renderDialogActionButtons(messagingServicesForDataCollection)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Data Collection Logs\""},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"xl\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"\"Unable to Delete Data Collection\""},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onClose }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Data Collection"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteScan.isLoading, onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Custom Discovery Scan"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Run Discovery Scan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isRunDiscoveryScanButtonDisabled,\n\t\t\t\t\tonClick: initiateCustomScan\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteConfirmationDialogOpen"},{"b":"title","d":"string","e":"Delete Event Broker From Event Portal"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"isOpen","d":"variable","e":"eventManagementAgentNeedsUpdateDialogOpen"},{"b":"title","d":"string","e":"Event Management Agent Needs Update"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseEMAUpdateDialog },\n\t\t\t\t\t\t{ label: \"Open Event Management Agent\", variant: \"outline\", onClick: handleGoToEMA }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"isAddMode ? (\n\t\t\t\t\t
\n\t\t\t\t\t\t setIsAddMode(false)}>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tAdd Environment Association\n\t\t\t\t\t
\n\t\t\t\t) : (\n\t\t\t\t\t<>{showViewOnly ? \"View Environment Associations\" : \"Manage Environment Associations\"}\n\t\t\t\t)"},{"b":"actions","d":"expression","e":"showViewOnly\n\t\t\t\t\t? [{ label: \"Close\", variant: \"call-to-action\", onClick: handleClose }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleClose },\n\t\t\t\t\t\t\t{ label: isAddMode ? \"Add\" : \"Save\", variant: \"call-to-action\", onClick: handleClick }\n\t\t\t\t\t ]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"title","d":"expression","e":"\"Add Environment Association\""},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"expression","e":"generateDialogActionButtons(\n\t\t\t\tisLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,\n\t\t\t\tcancel,\n\t\t\t\tupdate\n\t\t\t)"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx","c":[{"b":"title","d":"expression","e":"auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? \"Configuration\" : \"Runtime Configuration\""},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeDetailsDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"variable","e":"dialogTitle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"closeConfirmDialog\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"applyConfirmDialog\",\n\t\t\t\t\tonClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),\n\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeCompareDialog\" }]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"maxWidth","d":"expression","e":"\"lg\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"renderHeader()"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"variable","e":"title"},{"b":"linearProgressIndicator","d":"expression","e":"!!isLoading"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"cancelAuditButton\" },\n\t\t\t\t{ label: \"Import\", variant: \"call-to-action\", isDisabled: auditInError, onClick: handleImport, dataQa: \"importAuditButton\" }\n\t\t\t]"},{"b":"customAction","d":"variable","e":"customAction"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx","c":[{"b":"title","d":"string","e":"Import Progress"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tdataQa: \"auditImport-close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => setAuditImportProgressDialogOpen(false)\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"title","d":"string","e":"Setting Up Offline Event Management Agent"},{"b":"isOpen","d":"variable","e":"standaloneDialogOpen"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: handleStandaloneClose, variant: \"outline\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"title","d":"string","e":"Event Management Agent Set Up Complete"},{"b":"isOpen","d":"variable","e":"emaSetupCompleteDialog"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tonClick: handleEmaSetupCompleteDialogClose,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Go to Modeled Event Meshes\",\n\t\t\t\t\t\t\tonClick: handleGotoMEM,\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`Unable to Delete ${runtimeAgentName}`"},{"b":"actions","d":"array","e":"[{ label: \"Close\", onClick: onClose }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","c":[{"b":"maxWidth","d":"expression","e":"\"sm\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Event Management Agent Connection"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: deleteEventManagementAgent.isLoading,\n\t\t\t\t\t\t\tonClick: handleDelete\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx","c":[{"b":"maxWidth","d":"expression","e":"\"md\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Skip and Install"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Skip\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleSkip\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isOpen","d":"variable","e":"deleteConfirmationDialogOpen"},{"b":"title","d":"string","e":"Delete Event Broker From Event Portal"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"isOpen","d":"variable","e":"unableToDeleteDialogOpen"},{"b":"title","d":"string","e":"Unable to Delete"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseUnableToDeleteDialog },\n\t\t\t\t\t{ label: \"Open Modeled Event Mesh\", variant: \"outline\", onClick: handleOpenModeledEventMesh }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx","c":[{"b":"maxWidth","d":"expression","e":"\"md\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Connection File Created"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose, dataQa: \"connectionFileDialogCloseButton\" }]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"title","d":"expression","e":"application.configuration.setDefaultTemplate"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: application.configuration.setDefaultTemplate,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetObservedConfiguration({\n\t\t\t\t\t\t\t\t\tname: configurationName,\n\t\t\t\t\t\t\t\t\tvalue: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"defaultTemplateConfirmationDialog"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.common.button.cancel, onClick: () => onClose() },\n\t\t\t\t{ label: en.common.button.delete, dataQa: \"deleteTemplate\", variant: \"outline\", onClick: handleDeleteTemplate }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx","c":[{"b":"title","d":"expression","e":"\"An error occurred\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Open Support Ticket\",\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.connectors.labels.mapWithAI}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiDialogClose(false),\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.map,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"confirm-ai-mapping\",\n\t\t\t\t\t\tonClick: handleAiMapping,\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.errorAiMap"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.close,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-error-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_environments\", message: \"Environments\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"contentLayout","d":"string","e":"contents"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"connectorStateChange-cancel\", onClick: () => setShowDeployDialog(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: action === \"deploy\" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,\n\t\t\t\t\tdataQa: \"connectorStateChange-deploy\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleStateChange\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"expression","e":"action === \"deploy\" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.connectors.labels.deleteDialogTitle"},{"b":"contentText","d":"expression","e":"en.connectors.deleteConfirmationMsg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.connectors.buttons.close, onClick: onClose },\n\t\t\t\t{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: \"outline\" }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.errorDeploymentTitle"},{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: connectors.buttons.close,\n\t\t\t\t\t\tdataQa: \"connectordeployerror-close\",\n\t\t\t\t\t\tonClick: () => setDeployErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"deleteEdgeDialog-cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\tdataQa: \"deleteEdgeDialog-delete\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: removeRelation\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.transformations.labels.deleteMapping"},{"b":"contentText","d":"expression","e":"!isEmpty(affectedTransformations) && affectedTransformations.length > 1\n\t\t\t\t\t? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)\n\t\t\t\t\t: en.transformations.labels.deleteDialogText"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"showTransformationDialog !== ShowTransformation.NONE"},{"b":"maxWidth","d":"string","e":"xl"},{"b":"actions","d":"expression","e":"showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" }]"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t"},{"b":"key","d":"string","e":"transformation-dialog"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.importPayloads(direction)"},{"b":"isOpen","d":"variable","e":"uploadDialog"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"close-upload-dialog\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\tsetUploadDialog(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.import,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"upload-file\",\n\t\t\t\t\t\tonClick: handleUploadFile\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx","c":[{"b":"title","d":"expression","e":"fieldType === FieldType.constant\n\t\t\t\t\t\t\t? en.connectors.labels.deleteConstantField\n\t\t\t\t\t\t\t: en.connectors.labels.deleteHeaderField"},{"b":"contentText","d":"expression","e":"en.connectors.labels.deleteHeaderFieldContext"},{"b":"isOpen","d":"variable","e":"showDeleteDialog"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetIdToDelete(\"\");\n\t\t\t\t\t\t\t\tsetShowDeleteDialog(false);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\t\t\tonClick: () => handleDeleteButtonClick(),\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"showTransformationDialog !== ShowTransformation.NONE"},{"b":"maxWidth","d":"string","e":"xl"},{"b":"actions","d":"expression","e":"showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: en.connectors.buttons.apply,\n\t\t\t\t\t\t\t\tonClick: onApplyTransformation,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"applyTransformationButton\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t"},{"b":"key","d":"string","e":"transformation-dialog"},{"b":"contentLayout","d":"string","e":"contents"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: t({ id: \"id_ok\", message: \"OK\" }),\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"count ? t({ id: \"id_dlg_delete_services_title\", message: \"Delete Services\" }) : t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: count ? t({ id: \"id_delete_services\", message: \"Delete Services\" }) : t({ id: \"id_delete_service\", message: \"Delete Service\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"delete-service-ok\",\n\t\t\t\t\tisDisabled: matchText.trim() !== matchName,\n\t\t\t\t\tonClick: onDelete\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_error_title\", message: \"An error occurred\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_open_support_ticket\", message: \"Open Support Ticket\" }),\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_rename_service_title\", message: \"Edit Service Name\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rename-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rename-service-ok\",\n\t\t\t\t\tisDisabled: hasErrors,\n\t\t\t\t\tonClick: handleRename\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_clone_service_title\", message: \"Clone Service: Pre-Check\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"expression","e":"isReady && (results.errors.length > 0 || results.warnings.length > 0)\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-cancel\",\n\t\t\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_continue\", message: \"Continue\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-continue\",\n\t\t\t\t\t\t\t\tisDisabled: results.errors.length > 0,\n\t\t\t\t\t\t\t\tonClick: onContinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: []"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"title","d":"expression","e":"isEdit ? t({ id: \"id_dlg_edit_msg_spool_title\", message: \"Edit Message Spool Size\" }) : t({ id: \"id_dlg_customize_msg_spool_title\", message: \"Customize Message Spool Size\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"customizeMessageSpoolCancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_apply\", message: \"Apply\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: isEdit ? \"customizeMessageSpoolSave\" : \"customizeMessageSpoolApply\",\n\t\t\t\t\tisDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_environments\", message: \"Environments\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"contentLayout","d":"string","e":"contents"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_move_hostname_title\", message: \"Move Hostname\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-hostname-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleMove\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","c":[{"b":"title","d":"expression","e":"create ? t({ id: \"id_dlg_create_endpoint_title\", message: \"Create Endpoint\" }) : t({ id: \"id_dlg_edit_endpoint_title\", message: \"Edit Endpoint\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_mate_link_encryption_title\", message: \"Mate-Link Encryption\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-disable\",\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"jsx","e":""},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"library-close\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"inProgress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_edit_cluster_name_title\", message: \"Edit Cluster Name\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_domain_cert_auth_title\", message: \"Add Domain Certificate Authority\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_distributed_tracing_title\", message: \"Distributed Tracing\" })"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-confirm\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_distributed_tracing_title\", message: \"Configure Data Collection\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_dt_confirmDeploy\", message: \"Confirm and Deploy\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-confirm\",\n\t\t\t\t\tonClick: handleConfirmDeploy,\n\t\t\t\t\tisDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_delete_hostname_title\", message: \"Delete Hostname\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"delete-hostname-confirm\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleDelete\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => onClose()\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_client_auth_title\", message: \"Edit Client Authentication\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_ldap_profile_title\", message: \"Edit LDAP Profile\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","c":[{"b":"title","d":"expression","e":"addMode\n\t\t\t\t\t? t({ id: \"id_dlg_client_cert_auth_title\", message: \"Add Client Certificate Authority\" })\n\t\t\t\t\t: t({ id: \"id_dlg_client_cert_auth_edit_title\", message: \"Edit Client Certificate Authority\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"expression","e":"canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"title","d":"expression","e":"isEdit\n\t\t\t\t\t? t({ id: \"id_dlg_edit_syslog_config_title\", message: \"Edit Syslog Forwarding Destination\" })\n\t\t\t\t\t: t({ id: \"id_dlg_create_syslog_config_title\", message: \"Create Syslog Forwarding Destination\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"expression","e":"canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_create_hostname_title\", message: \"Create Hostname\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"md"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"create-hostname-save\",\n\t\t\t\t\tisDisabled: isLoadingCertificates || saveDisabled,\n\t\t\t\t\tonClick: handleCreate\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_ldap_mgmt_access_title\", message: \"Set LDAP Group Access\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"title","d":"expression","e":"id ? t({ id: \"id_dlg_client_profile_edit_title\", message: \"Edit Client Profile\" }) : t({ id: \"id_dlg_client_profile_create_title\", message: \"Create Client Profile\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"linearProgressIndicator","d":"variable","e":"progress"},{"b":"actions","d":"expression","e":"canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: id ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: id ? \"client-profile-save\" : \"client-profile-create\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_dlg_rotate_passwords_title\", message: \"Rotate Broker Passwords\" })"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_rotate\", message: \"Rotate\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-rotate\",\n\t\t\t\t\tonClick: handleRotate\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_disable_standard_domain_cert_auth\", message: \"Disable Standard Domain Certificate Authorities\" })"},{"b":"contentText","d":"expression","e":"t({\n\t\t\t\t\t\t\tid: \"id_disable_standard_domain_cert_auth_desc\",\n\t\t\t\t\t\t\tmessage: \"This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates.\"\n\t\t\t\t\t\t})"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelConfirmDisable },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_disable\", message: \"Disable\" }), variant: \"call-to-action\", onClick: handleConfirmDisable }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_cert_auth\", message: \"Delete Certificate Authority\" })"},{"b":"contentText","d":"expression","e":"t({\n\t\t\t\t\t\t\tid: \"id_prompt_delete_cert_auth\",\n\t\t\t\t\t\t\tmessage: \"Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? \"\n\t\t\t\t\t\t})"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", isDisabled: !allowServiceQueries, onClick: handleDelete }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_client_profile\", message: \"Delete Client Profile\" })"},{"b":"contentText","d":"expression","e":"t({ id: \"id_prompt_delete_client_profile\", message: \"Are you sure you want to permanently delete this client profile?\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"client-profile-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"client-profile-delete\", onClick: handleDelete }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_syslog_config\", message: \"Deactivate Syslog Forwarding\" })"},{"b":"contentText","d":"expression","e":"t({ id: \"id_prompt_delete_syslog_config\", message: \"Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server.\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"syslog-config-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_deactivate\", message: \"Deactivate\" }), variant: \"outline\", dataQa: \"syslog-config-delete\", onClick: handleDelete }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"hasOngoingOperation"},{"b":"title","d":"expression","e":"t({ id: \"id_delete_endpoint\", message: \"Delete Endpoint\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"delete-endpoint-cancel\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"delete-endpoint-confirmed\", onClick: handleDeleteEndpoint }\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[{ variant: \"outline\", label: \"Close\", onClick: () => onClose() }]"},{"b":"title","d":"expression","e":"getTitle()"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"t({ id: \"id_auto_upgrade_plan_title\", message: \"Plan Upgrade\" })"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: \"Close\", onClick: handleClose },\n\t\t\t\t{ label: \"Run Upgrade\", onClick: handleUpgrade, variant: \"call-to-action\", isDisabled: !!formError || upgradeMutation.isLoading }\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"title","d":"expression","e":"messages.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"linearProgressIndicator","d":"variable","e":"progressIndicator"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"title","d":"expression","e":"en.brokerSSOConfig.dialog.title"},{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: \"outline\" }\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"lg"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"expression","e":"en.tokens.text.deleteToken.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmDeleteTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"expression","e":"en.tokens.text.copyToken.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\t\tvariant: isCopied ? \"outline\" : \"call-to-action\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tisDisabled: !isCopied,\n\t\t\t\t\t\tdataQa: \"closeTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"!!errorMessage"},{"b":"title","d":"expression","e":"en.tokens.text.genericError.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"expression","e":"en.tokens.text.regenerateToken.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Regenerate\",\n\t\t\t\t\t\tonClick: handleRegenerate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmRegenerateTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"title","d":"expression","e":"en.viewMessageSpoolDetails.dialog.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.viewMessageSpoolDetails.buttons.close,\n\t\t\t\t\tonClick: onClose,\n\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"title","d":"expression","e":"`Change Request - ${editLimitsRow.name}`"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => setEditLimitsRow(null),\n\t\t\t\t\t\t\tisDisabled: submittingTicket\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.serviceLimits.buttons.sendRequest,\n\t\t\t\t\t\t\tonClick: onSubmit,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"linearProgressIndicator","d":"variable","e":"submittingTicket"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: cancelButtonLabel || userGroupManagement.cancel,\n\t\t\t\t\tonClick: cancelHandler,\n\t\t\t\t\tdataQa: \"cancelNotificationHandlerQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionButtonLabel,\n\t\t\t\t\tid: \"notificationModalActionButton\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: actionHandler,\n\t\t\t\t\tdataQa: \"notificationModalActionButton\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"userGroupManagement.removeClaimMapping"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.cancel,\n\t\t\t\t\tonClick: () => setIsClaimMappingRemoveDialogOpen(false),\n\t\t\t\t\tdataQa: \"cancelClaimMappingQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.remove,\n\t\t\t\t\tid: \"deleteClaimMappingId\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: deleteClaimMapping,\n\t\t\t\t\tdataQa: \"deleteClaimMappingQa\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"isOpen","d":"expression","e":"confirmDialogOpen || errorDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error"},{"b":"linearProgressIndicator","d":"variable","e":"submittingTicket"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: supportPage.dialog.close,\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tdataQa: \"supportTicketModelOKButton\",\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"title","d":"expression","e":"environmentsStr.labels.ASEnvironment"},{"b":"linearProgressIndicator","d":"variable","e":"isUpdating"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleCloseDialog\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.save,\n\t\t\t\t\tid: \"deleteButton\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdateEnvironment,\n\t\t\t\t\tisDisabled: isError || isUpdating\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"expression","e":"dialogState.type === \"create\"\n\t\t\t\t\t? en.environments.labels.createEnvironment\n\t\t\t\t\t: en.environments.labels.editEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? en.environments.button.create : en.common.buttons.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled:\n\t\t\t\t\t\tisDuplicate || isLoading || hasError || hasDescError || (dialogState.type === \"create\" ? false : !isEdited)\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.environments.labels.deleteEnvironment"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"messages.menuLabel"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"messages.menuLabel"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"cancelConfigurationTemplatesDialog\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tdataQa: \"applyConfigurationTemplatesDialog\",\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.environments.labels.deleteEnvironment"},{"b":"linearProgressIndicator","d":"variable","e":"isDeleting"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: !confirmDelete || isDeleting\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"title","d":"expression","e":"dialogState.type === \"create\" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? userGroups.ugDialog.create : userGroups.ugDialog.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,\n\t\t\t\t\tdataQa: \"ugDialogSaveQa\"\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"expression","e":"\"xl\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"md"},{"b":"title","d":"expression","e":"userGroups.ugDeleteDialog.deleteUG"},{"b":"linearProgressIndicator","d":"variable","e":"isDeleting"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.cancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: isError || isDeleting,\n\t\t\t\t\tdataQa: \"ugDialogDeleteQa\"\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"actions","d":"variable","e":"actions"},{"b":"contentText","d":"variable","e":"undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","c":[{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"expression","e":"en.privateRegions.labels.new"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: onClose\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.privateRegions.button.sendRequest,\n\t\t\t\t\t\tonClick: onRequest,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tisDisabled: loading\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"title","d":"expression","e":"environments.moveDialogLabels.title"},{"b":"isOpen","d":"boolean","e":"true"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"move-datacenter-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.move,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-datacenter-ok\",\n\t\t\t\t\tonClick: handleMove,\n\t\t\t\t\tisDisabled: !!errors.environment\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"isOpen","d":"expression","e":"downloadDialog.errorDialogOpen"},{"b":"title","d":"expression","e":"en.privateRegions.labels.downloadFailed"},{"b":"actions","d":"array","e":"[{ label: \"OK\", onClick: handleCloseDialog }]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"title","d":"expression","e":"tracingSynchDialog.title"},{"b":"contentText","d":"expression","e":"tracingSynchDialog.contentText"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: close\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"title","d":"expression","e":"mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit"},{"b":"contentText","d":"expression","e":"tracingProfile.contentText"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"linearProgressIndicator","d":"variable","e":"modifyingTracingProfile"},{"b":"actions","d":"variable","e":"actions"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"title","d":"expression","e":"tracingProfile.title.details"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: tracingProfile.button.close,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.accountSettings[cannotTestSso ? \"testSsoConfigError\" : \"testSsoConfig\"]"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[cannotTestSso ? \"close\" : \"cancel\"],\n\t\t\t\t\t\tonClick: cancelSsoTest\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.test,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: testSsoConfiguration,\n\t\t\t\t\t\tisDisabled: cannotTestSso\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.accountSettings.enableSsoConfig"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelEnableSso\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.activate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: enableSsoConfiguration\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"sm"},{"b":"title","d":"expression","e":"en.accountSettings.setUpSso"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.cancel,\n\t\t\t\t\t\tonClick: cancelSsoSetup\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.sendRequest,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: sendSsoSetupRequest,\n\t\t\t\t\t\tisDisabled: !canSendRequest || submittingTicket,\n\t\t\t\t\t\tdataQa: \"sendRequestButton\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"isOpen","d":"variable","e":"isDialogOpen"},{"b":"maxWidth","d":"string","e":"xl"},{"b":"title","d":"expression","e":"en.accountSettings.configureSsoSettings"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelConfigureSettings\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.save,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: saveStagedSsoConfiguration,\n\t\t\t\t\t\tisDisabled: !canSaveSettings\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"isOpen","d":"variable","e":"isRequestLimitChangeDialogOpen"},{"b":"title","d":"expression","e":"en.overview.eventPortalSection.requestLimitChangeDialogTitle"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.close,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeCloseAction\",\n\t\t\t\t\t\t\tonClick: onCloseRequestLimitChange\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.sendRequest,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeSendRequestAction\",\n\t\t\t\t\t\t\tonClick: onRequestLimitChange,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: !limitRequestNumber\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"isOpen","d":"variable","e":"isRequestUpgradeDialogOpen"},{"b":"title","d":"expression","e":"en.overview.banner.dialogTitle"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.cancel,\n\t\t\t\t\t\tdataQa: \"requestUpgradeCloseAction\",\n\t\t\t\t\t\tonClick: onCloseRequestUpgradeDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.sendRequest,\n\t\t\t\t\t\tdataQa: \"requestUpgradeSendRequestAction\",\n\t\t\t\t\t\tonClick: RequestUpgradeHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\t(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||\n\t\t\t\t\t\t\t(!!contactEmail && !isValidEmail(contactEmail))\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"isOpen","d":"variable","e":"isDeleteAccountDialogOpen"},{"b":"title","d":"expression","e":"en.overview.advancedSettingsSection.deleteAccountQuestion"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.cancel,\n\t\t\t\t\t\tdataQa: \"cancelDeleteAccountButton\",\n\t\t\t\t\t\tonClick: onCloseDeleteAccountDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.delete,\n\t\t\t\t\t\tdataQa: \"confirmDeleteAccountButton\",\n\t\t\t\t\t\tonClick: deleteAccountHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled: !password\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"title","d":"string","e":"Deactivate Service Notifications"},{"b":"contentText","d":"string","e":"Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed."},{"b":"isOpen","d":"variable","e":"openConfirmationDialog"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", dataQa: \"cancel\", onClick: () => setOpenConfirmationDialog(false), variant: \"text\" },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Deactivate\",\n\t\t\t\t\t\tdataQa: \"deactivate\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tstopNotifications();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/common/components/ErrorDialog.tsx","c":[{"b":"title","d":"string","e":"An error occurred"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"maxWidth","d":"string","e":"md"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t}\n\t\t\t]"},{"b":"data-qa","d":"string","e":"error-dialog"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"expression","e":"createBizOrganization.reviewAndSave"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.save,\n\t\t\t\t\tid: \"confirmSave\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSave,\n\t\t\t\t\tisDisabled: dialogState.saving\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"title","d":"expression","e":"i18nStrings.addProductsLabel"},{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.cancelLabel,\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogCancel\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.addProductsLabel,\n\t\t\t\t\tonClick: handleAddProducts,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogAddProds\"\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"isOpen","d":"expression","e":"dialogState.open"},{"b":"title","d":"string","e":"Manage Connector Flow Version"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: () => onDialogClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Update\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"upgradeConfirmation\",\n\t\t\t\t\tonClick: handleConnectorUpgrade,\n\t\t\t\t\tisDisabled: updatedVersion === connectorTypeId\n\t\t\t\t}\n\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"isOpen","d":"expression","e":"!!errorDetails"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"isOpen","d":"expression","e":"deleteConfirmation.isOpen"},{"b":"title","d":"string","e":"Delete Connector"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", dataQa: \"deleteConfirmation\", onClick: handleConnectorDelete }\n\t\t\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setDetailsDialog({ isOpen: false, org: {} } as DetailsDialog)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"expression","e":"detailsDialog.isOpen"},{"b":"title","d":"string","e":"Organization Details"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx","c":[{"b":"isOpen","d":"variable","e":"cleanModal"},{"b":"title","d":"string","e":"WARNING"},{"b":"contentText","d":"string","e":"Are you sure you want to perform database cleanup?"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setCleanModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleJobClean() }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx","c":[{"b":"isOpen","d":"variable","e":"syncModal"},{"b":"title","d":"string","e":"WARNING"},{"b":"contentText","d":"string","e":"Heavy database operation will be executed. Are you sure you want to proceed?"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setSyncModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleEntitySync() }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"string","e":"Post-Upgrade Check Results"},{"b":"linearProgressIndicator","d":"variable","e":"loading"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose }]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"string","e":"Upgrade Logs"},{"b":"linearProgressIndicator","d":"variable","e":"inProgress"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose }]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","c":[{"b":"isOpen","d":"boolean","e":"true"},{"b":"maxWidth","d":"string","e":"lg"},{"b":"title","d":"string","e":"Pre-Upgrade Check Results"},{"b":"actions","d":"array","e":"[{ label: \"Close\", variant: \"outline\", onClick: onClose }]"},{"b":"linearProgressIndicator","d":"variable","e":"loading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx","c":[{"b":"contentLayout","d":"string","e":"contents"},{"b":"maxWidth","d":"string","e":"md"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tisDisabled: false,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"string","e":"Update Upgrade Plan"},{"b":"contentText","d":"string","e":"Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx","c":[{"b":"contentLayout","d":"string","e":"contents"},{"b":"maxWidth","d":"string","e":"md"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-plan\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create Plan\",\n\t\t\t\t\tdataQa: \"create-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"string","e":"Create Plan"},{"b":"contentText","d":"string","e":"Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"contentLayout","d":"string","e":"contents"},{"b":"maxWidth","d":"string","e":"md"},{"b":"isOpen","d":"variable","e":"open"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-manage-plan\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"apply-manage-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"jsx","e":" handleCancel()}>\n\t\t\t\t\t\n\t\t\t\t\tManage Broker Upgrade Scope\n\t\t\t\t"},{"b":"contentText","d":"string","e":"The filter will be applied to the upgrade run, determining the brokers included in that specific run."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Plan"},{"b":"contentText","d":"string","e":"Deleting this plan will delete any runs, groups, and associated data using this plan. They will be permanently removed from the system."},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: () => handleModal() },\n\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(plan.id) }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"string","e":"Delete Upgrade Run"},{"b":"contentText","d":"string","e":"Are you sure you want to delete this upgrade run? This action cannot be undone."},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"delete-run-cancel\" },\n\t\t\t\t\t{ label: \"Delete Run\", variant: \"outline\", onClick: handleDelete, dataQa: \"delete-run-confirm\" }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-run\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Schedule Run\",\n\t\t\t\t\tdataQa: \"create-run\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]"},{"b":"title","d":"string","e":"Schedule Upgrade Run"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"`${actionType === \"pause\" ? \"Pause\" : \"Cancel\"} Upgrade Run`"},{"b":"contentText","d":"expression","e":"`Are you sure you want to ${actionType} this upgrade run?`"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleModal },\n\t\t\t\t\t{ label: actionType === \"pause\" ? \"Pause Run\" : \"Cancel Run\", variant: \"outline\", onClick: handleAction }\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"expression","e":"organizationDetails.manageNotificationContactDialog.title"},{"b":"actions","d":"variable","e":"dialogActions"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\t\t\tonClick: () => setOpenDialog(false)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\tonClick: forceUpdateAllMonitors,\n\t\t\t\t\t\t\t\t\tdataQa: \"proceedUpdateAllMonitorsButton\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openDialog"},{"b":"title","d":"string","e":"Update Monitoring Notification"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]"},{"b":"isOpen","d":"expression","e":"detailsState.showDetails"},{"b":"title","d":"expression","e":"`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(onSubmit)();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirmationDialogProceedButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openConfirmationDialog"},{"b":"title","d":"string","e":"Update Services Monitoring Configurations"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowUpdateDefaultsError(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"showUpdateDefaultsError"},{"b":"title","d":"expression","e":"`Update Monitoring Defaults Failed`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setOpenDatadogProxyDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openDatadogProxyDialog"},{"b":"title","d":"expression","e":"\"Monitoring Proxy Endpoints\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Refresh\",\n\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\tconst updatedService = await refreshMonitoringAgentStatus(agentStatusDialogService);\n\n\t\t\t\t\t\t\tsetAgentStatusDialogService(updatedService);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\tservicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\t\t\tRequestStatus.IN_PROGRESS\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(false);\n\n\t\t\t\t\t\t\t// Errors and warnings are part of the fetched status and should persist\n\t\t\t\t\t\t\t// until a refresh. They are not reset on dialog close.\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"statusDialogOkButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"openAgentStatusDialog"},{"b":"title","d":"expression","e":"`Monitoring Agent Status`"},{"b":"linearProgressIndicator","d":"expression","e":"servicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\tRequestStatus.IN_PROGRESS"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"expression","e":"detailsState.showDetails"},{"b":"title","d":"expression","e":"`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setShowUpdateMonitoringNotificationConfirmation(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"updateMonitoringNotificationConfirmationProceedButton\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(updateMonitoringNotification)();\n\t\t\t\t\t\t\tsetShowUpdateMonitoringNotificationConfirmation(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"showUpdateMonitoringNotificationConfirmation"},{"b":"title","d":"expression","e":"`Update Monitoring Notification`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowInvalidHandlesDialog(false),\n\t\t\t\t\t\tdataQa: \"InvalidHandlesDialogButton\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"isOpen","d":"variable","e":"showInvalidHandlesDialog"},{"b":"title","d":"expression","e":"`Failed: Invalid Email Handles`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx","c":[{"b":"isOpen","d":"variable","e":"dialogOpen"},{"b":"title","d":"expression","e":"getDialogTitle()"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tdataQa: \"cancel-button\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.confirm,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleConfirm();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirm-button\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"data-qa","d":"string","e":"confirmation-dialog"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx","c":[{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onCancel,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionLabel,\n\t\t\t\t\tvariant: actionVariant,\n\t\t\t\t\tonClick: onConfirm,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"title","d":"variable","e":"title"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"variable","e":"actions"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Edit Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"okAction\",\n\t\t\t\t\tonClick: () => setOpen({ open: false, servicePackage: undefined })\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Service Package Details"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Release\",\n\t\t\t\t\tdataQa: \"release\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading || !servicePackage?.metadata?.releaseNotes,\n\t\t\t\t\tonClick: handleRelease\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Release New Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[{"b":"actions","d":"variable","e":"actions"},{"b":"isOpen","d":"expression","e":"state.open"},{"b":"title","d":"string","e":"Delete Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"maxWidth","d":"string","e":"lg"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create\",\n\t\t\t\t\tdataQa: \"create\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading,\n\t\t\t\t\tonClick: handleSubmit(onCreate)\n\t\t\t\t}\n\t\t\t]"},{"b":"isOpen","d":"variable","e":"open"},{"b":"title","d":"string","e":"Create Service Package"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"title","d":"expression","e":"deleteDialog.title"},{"b":"contentText","d":"expression","e":"!deleteDialog?.error ? deleteDialog.contentText : \"\""},{"b":"isOpen","d":"expression","e":"deleteDialog.isOpen"},{"b":"linearProgressIndicator","d":"expression","e":"deleteDialog.linearProgressIndicator"},{"b":"actions","d":"expression","e":"deleteDialog.actions"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"title","d":"string","e":"Import From Datacenter"},{"b":"actions","d":"variable","e":"actions"},{"b":"linearProgressIndicator","d":"variable","e":"isLoading"},{"b":"isOpen","d":"variable","e":"isOpen"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"isOpen","d":"expression","e":"!!errorDetails"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"isOpen","d":"expression","e":"deleteConfirmation.isOpen"},{"b":"title","d":"string","e":"Delete Collector"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"call-to-action\", dataQa: \"deleteConfirmation\", onClick: handleCollectorDelete }\n\t\t\t\t\t]"},{"b":"maxWidth","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"title","d":"string","e":"Delete"},{"b":"isOpen","d":"expression","e":"deleteConfirmation.isOpen"},{"b":"linearProgressIndicator","d":"expression","e":"deletingBrokerCompatibility || deletingHelmChartCompatibility"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ isOpen: false, type: CompatibilityType.None, row: {} }),\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"cancelButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: modifyError.error ? \"Ok\" : \"Delete\",\n\t\t\t\t\t\tonClick: () => handleDelete(deleteConfirmation.row, deleteConfirmation.type),\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"deleteButton\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","c":[{"b":"title","d":"expression","e":"compatibilityType == CompatibilityType.Broker ? \"Add Broker Compatibility\" : \"Add Collector Compatibility\""},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonClose();\n\t\t\t\t\t\tsetModifyError({ error: false, message: \"\", id: \"\" });\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\ttype: \"submit\",\n\t\t\t\t\tdataQa: \"addButton\",\n\t\t\t\t\tonClick:\n\t\t\t\t\t\tcompatibilityType == CompatibilityType.Broker\n\t\t\t\t\t\t\t? handleSubmit((data: BrokerCompatibility) => handleModifyCollector(data))\n\t\t\t\t\t\t\t: handleSubmit((data: CollectorCompatibility) => handleAddCollectorCompatibility(data))\n\t\t\t\t}\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"title","d":"string","e":"Modify collector"},{"b":"isOpen","d":"variable","e":"isOpen"},{"b":"linearProgressIndicator","d":"variable","e":"isPerformingRequest"},{"b":"contentText","d":"expression","e":"\"Infrastructure ID: \" + collector?.infrastructureId"},{"b":"actions","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"close\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonCloseHandler()\n\t\t\t\t\t\tdispatch(openUpgradeDialog({ isOpen: false }));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Submit\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: isPerformingRequest || isEdited === false,\n\t\t\t\t\tdataQa: \"submit\",\n\t\t\t\t\tonClick: () =>\n\t\t\t\t\t\thandleModifyCollector(\n\t\t\t\t\t\t\tcollector?.serviceId as string,\n\t\t\t\t\t\t\tcollector?.infrastructureId as string,\n\t\t\t\t\t\t\timageTag,\n\t\t\t\t\t\t\thelmChartVersion,\n\t\t\t\t\t\t\taction\n\t\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceConfirmationDialog/totalUsages.json b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/totalUsages.json new file mode 100644 index 000000000..c72784c8c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/totalUsages.json @@ -0,0 +1 @@ +235 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceConfirmationDialog/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/usagesByMfe.json new file mode 100644 index 000000000..d03e416b2 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceConfirmationDialog/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":112,"intg":12,"mc":34,"saas":34,"infra":1,"maas-ops-react":42} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDatePicker/commonProps.json b/mrc-usage-report-data/per-component/SolaceDatePicker/commonProps.json new file mode 100644 index 000000000..f66901125 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDatePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"value","count":4},{"name":"onChange","count":4},{"name":"onClear","count":3},{"name":"disableFuture","count":3},{"name":"timezone","count":2},{"name":"dataQa","count":1},{"name":"variant","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDatePicker/customization.json b/mrc-usage-report-data/per-component/SolaceDatePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDatePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDatePicker/files.json b/mrc-usage-report-data/per-component/SolaceDatePicker/files.json new file mode 100644 index 000000000..9ed0aef0e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDatePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDatePicker/instances.json b/mrc-usage-report-data/per-component/SolaceDatePicker/instances.json new file mode 100644 index 000000000..d860cbaf3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDatePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"value","d":"variable","e":"endOfLifeDate"},{"b":"onChange","d":"variable","e":"handleEndOfLifeDateChange"},{"b":"dataQa","d":"string","e":"endOfLifeDateSelect"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClear","d":"function","e":"() => clearSelectedDate()"},{"b":"onChange","d":"variable","e":"setSelectedDate"},{"b":"variant","d":"expression","e":"SolaceDatePickerVariant.FORMAT_MONTH_YEAR"},{"b":"disableFuture","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedDate"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClear","d":"function","e":"() => setSelectedStartDate(null)"},{"b":"onChange","d":"function","e":"(date) => setSelectedStartDate(moment(date).startOf(\"day\"))"},{"b":"disableFuture","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"selectedStartDate?.toISOString()"},{"b":"timezone","d":"string","e":"UTC"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"onClear","d":"function","e":"() => setSelectedEndDate(null)"},{"b":"onChange","d":"function","e":"(date) => setSelectedEndDate(moment(date))"},{"b":"disableFuture","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"selectedEndDate?.toISOString()"},{"b":"timezone","d":"string","e":"UTC"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDatePicker/totalUsages.json b/mrc-usage-report-data/per-component/SolaceDatePicker/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDatePicker/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDatePicker/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceDatePicker/usagesByMfe.json new file mode 100644 index 000000000..c423a93a5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDatePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1,"saas":1,"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDetailMessage/commonProps.json b/mrc-usage-report-data/per-component/SolaceDetailMessage/commonProps.json new file mode 100644 index 000000000..fc34df1c7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDetailMessage/commonProps.json @@ -0,0 +1 @@ +[{"name":"details","count":28},{"name":"title","count":27},{"name":"msgImg","count":26},{"name":"actions","count":20},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDetailMessage/customization.json b/mrc-usage-report-data/per-component/SolaceDetailMessage/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDetailMessage/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDetailMessage/files.json b/mrc-usage-report-data/per-component/SolaceDetailMessage/files.json new file mode 100644 index 000000000..9f1288624 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDetailMessage/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","../../../maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","../../../maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDetailMessage/instances.json b/mrc-usage-report-data/per-component/SolaceDetailMessage/instances.json new file mode 100644 index 000000000..70a7c8e37 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDetailMessage/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"actions[0] ?? null"},{"b":"details","d":"expression","e":"details[0] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"actions","d":"expression","e":"actions[1] ?? null"},{"b":"details","d":"expression","e":"details[1] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"actions[0] ?? null"},{"b":"details","d":"expression","e":"details[0] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"actions","d":"expression","e":"actions[1] ?? null"},{"b":"details","d":"expression","e":"details[1] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"variable","e":"actions"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","c":[{"b":"msgImg","d":"variable","e":"msgImg"},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"expression","e":"actions[0] ?? null"},{"b":"details","d":"expression","e":"details[0] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx","c":[{"b":"actions","d":"expression","e":"actions[1] ?? null"},{"b":"details","d":"expression","e":"details[1] ?? null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"messages[configType].emptyConfigurationTitle"},{"b":"actions","d":"jsx","e":"\n\t\t\t\t\t\t{messages[configType].emptyLinkToDocumentation}\n\t\t\t\t\t"},{"b":"details","d":"jsx","e":"{messages[configType].emptyConfigurationDetail}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx","c":[{"b":"msgImg","d":"expression","e":"illustration ?? "},{"b":"title","d":"expression","e":"title ?? \"Nothing to see here!\""},{"b":"details","d":"expression","e":"details ?? \"Please try returning to main page.\""},{"b":"actions","d":"expression","e":"!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-integration\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? \"Go to Integration\",\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping"},{"b":"details","d":"expression","e":"readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.learnMapping,\n\t\t\t\t\t\thref: \"https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.noConnectorFlows"},{"b":"msgImg","d":"jsx","e":""},{"b":"details","d":"expression","e":"en.connectors.labels.tableEmptyDescription"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"create-connector-flow-btn\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"create-connector-flow-btn\",\n\t\t\t\t\t\tchildren: en.connectors.create,\n\t\t\t\t\t\tonClick: onCreateConnectorFlow\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"view-all-connector-btn\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"view-all-connector-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.viewAllTypes,\n\t\t\t\t\t\tonClick: OnViewAllConnectorType\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"variable","e":"title"},{"b":"actions","d":"jsx","e":"\n\t\t\t\t\t\t\t{en.connectors.buttons.clearFilters}\n\t\t\t\t\t\t"},{"b":"details","d":"variable","e":"details"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"actions","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{secondSectionActionString}\n\t\t\t\t\t\t\t\t"},{"b":"details","d":"variable","e":"secondSectionDetails"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx","c":[{"b":"msgImg","d":"expression","e":"illustration ?? "},{"b":"title","d":"expression","e":"title ?? t({ id: \"id_nothing_here\", message: \"Nothing to see here!\" })"},{"b":"details","d":"expression","e":"details ?? t({ id: \"id_return_home\", message: \"Please try returning to main page.\" })"},{"b":"actions","d":"expression","e":"!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-mission-control\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? t({ id: \"id_goto_mc\", message: \"Go to Mission Control\" }),\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","c":[{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.subTitle}\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.message}\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.noDrawdownUsage.title"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tchildren: drawdownUsage.noDrawdownUsage.contactUs,\n\t\t\t\t\t\tid: \"contactUs-btn\",\n\t\t\t\t\t\tonClick: () => toggleContactUsModalOpenState(),\n\t\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"details","d":"expression","e":"drawdownUsage.noDrawdownUsage.noDrawdownUsageSub"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.noDrawdownUsage.noDrawdownUsage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{supportPage.freeTrialDescription}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt2}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"supportPage.freeTrialTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"You do not have access to view this tab"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"No plan selected"},{"b":"details","d":"string","e":"Create or select a listed plan to view its details."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"No scheduled upgrade runs"},{"b":"details","d":"string","e":"No upgrade runs returned. Open the create modal to schedule based off an existing Plan."},{"b":"actions","d":"array","e":"[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"string","e":"Failed to fetch upgrade run"},{"b":"details","d":"string","e":"Run data could not be retrieved. It may have been deleted or does not exist."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"details","d":"expression","e":"drawdownUsage.drawdownUsageNotAvailable_subtext1"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.drawdownUsageNotAvailable"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"details","d":"expression","e":"drawdownUsage.noDrawdownUsageSub"},{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"drawdownUsage.noDrawdownUsage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no connector deployment for this service!\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"...","d":"spread","e":"upgradeMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"title","d":"expression","e":"integrationStrings.sidebar.noSelection.title"},{"b":"details","d":"expression","e":"integrationStrings.sidebar.noSelection.details"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx","c":[{"b":"msgImg","d":"jsx","e":""},{"b":"title","d":"expression","e":"(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no collector for this service!\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDetailMessage/totalUsages.json b/mrc-usage-report-data/per-component/SolaceDetailMessage/totalUsages.json new file mode 100644 index 000000000..dc7b54ad0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDetailMessage/totalUsages.json @@ -0,0 +1 @@ +33 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDetailMessage/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceDetailMessage/usagesByMfe.json new file mode 100644 index 000000000..acdca4080 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDetailMessage/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":13,"intg":5,"mc":1,"saas":4,"maas-ops-react":10} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDonutChart/commonProps.json b/mrc-usage-report-data/per-component/SolaceDonutChart/commonProps.json new file mode 100644 index 000000000..2cf7cc46c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDonutChart/commonProps.json @@ -0,0 +1 @@ +[{"name":"data","count":1},{"name":"showTooltip","count":1},{"name":"icon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDonutChart/customization.json b/mrc-usage-report-data/per-component/SolaceDonutChart/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDonutChart/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDonutChart/files.json b/mrc-usage-report-data/per-component/SolaceDonutChart/files.json new file mode 100644 index 000000000..03098c5f8 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDonutChart/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDonutChart/instances.json b/mrc-usage-report-data/per-component/SolaceDonutChart/instances.json new file mode 100644 index 000000000..e8fddea00 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDonutChart/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"data","d":"expression","e":"getPieChartData()"},{"b":"showTooltip","d":"boolean","e":"true"},{"b":"icon","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDonutChart/totalUsages.json b/mrc-usage-report-data/per-component/SolaceDonutChart/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDonutChart/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDonutChart/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceDonutChart/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDonutChart/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDrawer/commonProps.json b/mrc-usage-report-data/per-component/SolaceDrawer/commonProps.json new file mode 100644 index 000000000..3497948c5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDrawer/commonProps.json @@ -0,0 +1 @@ +[{"name":"open","count":16},{"name":"width","count":16},{"name":"top","count":16},{"name":"height","count":15},{"name":"maxWidth","count":15},{"name":"resizable","count":15},{"name":"minWidth","count":14},{"name":"onResizeDone","count":14},{"name":"anchor","count":3},{"name":"offset","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDrawer/customization.json b/mrc-usage-report-data/per-component/SolaceDrawer/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDrawer/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDrawer/files.json b/mrc-usage-report-data/per-component/SolaceDrawer/files.json new file mode 100644 index 000000000..52b26ecf4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDrawer/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDrawer/instances.json b/mrc-usage-report-data/per-component/SolaceDrawer/instances.json new file mode 100644 index 000000000..55282a18e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDrawer/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx","c":[{"b":"open","d":"boolean","e":"true"},{"b":"width","d":"variable","e":"DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL"},{"b":"top","d":"expression","e":"\"50px\""},{"b":"anchor","d":"string","e":"left"},{"b":"offset","d":"expression","e":"\"0px\""},{"b":"height","d":"expression","e":"`calc(100vh - 100px)`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initSearchPanelWidth"},{"b":"minWidth","d":"variable","e":"minWidth"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"variable","e":"resizable"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"expression","e":"`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`"},{"b":"offset","d":"expression","e":"`${leftOffset}px`"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`"},{"b":"anchor","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initSearchPanelWidth"},{"b":"minWidth","d":"variable","e":"SEARCH_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"expression","e":"`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`"},{"b":"offset","d":"expression","e":"`${leftOffset}px`"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`"},{"b":"anchor","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx","c":[{"b":"open","d":"boolean","e":"true"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"minWidth"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"open","d":"variable","e":"sidePanelOpen"},{"b":"width","d":"variable","e":"initialSidePanelWidth"},{"b":"resizable","d":"boolean","e":"true"},{"b":"onResizeDone","d":"variable","e":"handleResizeSidePanel"},{"b":"minWidth","d":"variable","e":"SIDE_PANEL_MIN_WIDTH"},{"b":"maxWidth","d":"variable","e":"sidePanelMaxWidth"},{"b":"top","d":"variable","e":"DEFAULT_HEADER_HEIGHT"},{"b":"height","d":"expression","e":"`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"open","d":"expression","e":"!!rowDetails"},{"b":"resizable","d":"boolean","e":"true"},{"b":"top","d":"string","e":"10.65%"},{"b":"width","d":"number","e":"400"},{"b":"maxWidth","d":"number","e":"500"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDrawer/totalUsages.json b/mrc-usage-report-data/per-component/SolaceDrawer/totalUsages.json new file mode 100644 index 000000000..19c7bdba7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDrawer/totalUsages.json @@ -0,0 +1 @@ +16 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceDrawer/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceDrawer/usagesByMfe.json new file mode 100644 index 000000000..996385385 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceDrawer/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":15,"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/commonProps.json b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/commonProps.json new file mode 100644 index 000000000..256e34684 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/commonProps.json @@ -0,0 +1 @@ +[{"name":"bannerImage","count":1},{"name":"subtitle","count":1},{"name":"title","count":1},{"name":"description","count":1},{"name":"primaryButton","count":1},{"name":"secondaryButton","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/customization.json b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/files.json b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/files.json new file mode 100644 index 000000000..f282e1c7e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/instances.json b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/instances.json new file mode 100644 index 000000000..a02596c7c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx","c":[{"b":"bannerImage","d":"jsx","e":""},{"b":"subtitle","d":"expression","e":"en.connectors.labels.emptyState.subtitle"},{"b":"title","d":"expression","e":"en.connectors.labels.emptyState.title"},{"b":"description","d":"expression","e":"en.connectors.labels.emptyState.description"},{"b":"primaryButton","d":"object","e":"{\n\t\t\t\tlabel: en.connectors.buttons.checkoutAvailableConnectors,\n\t\t\t\tonClick: onPrimaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-primary-button\"\n\t\t\t}"},{"b":"secondaryButton","d":"object","e":"{\n\t\t\t\tlabel: en.connectors.buttons.exploreOnMyOwn,\n\t\t\t\tonClick: onSecondaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-secondary-button\"\n\t\t\t}"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/totalUsages.json b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/usagesByMfe.json new file mode 100644 index 000000000..0d2ea92ef --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEmptyStateBanner/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentChip/commonProps.json b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/commonProps.json new file mode 100644 index 000000000..588c1cb7a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":12},{"name":"...","count":11},{"name":"bgColor","count":8},{"name":"fgColor","count":8},{"name":"icon","count":8},{"name":"dataQa","count":7},{"name":"maxWidth","count":4},{"name":"onDelete","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentChip/customization.json b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentChip/files.json b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/files.json new file mode 100644 index 000000000..0e592d6fb --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentChip/instances.json b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/instances.json new file mode 100644 index 000000000..44420e233 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"...","d":"spread","e":"item.environmentOption"},{"b":"label","d":"string","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","c":[{"b":"...","d":"spread","e":"option"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"maxWidth","d":"variable","e":"maxWidth"},{"b":"onDelete","d":"expression","e":"onDelete || null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"...","d":"spread","e":"context.environmentOption"},{"b":"label","d":"string","e":""},{"b":"maxWidth","d":"string","e":"26px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"...","d":"spread","e":"contextOption.environmentOption"},{"b":"label","d":"string","e":""},{"b":"maxWidth","d":"string","e":"26px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"...","d":"spread","e":"environmentOption"},{"b":"label","d":"string","e":""},{"b":"maxWidth","d":"string","e":"26px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"...","d":"spread","e":"environmentChipOption"},{"b":"dataQa","d":"string","e":"headerEnvironmentChip"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","c":[{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"label","d":"expression","e":"environment.label"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"...","d":"spread","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","c":[{"b":"label","d":"expression","e":"environment.label"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"dataQa","d":"string","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","c":[{"b":"label","d":"expression","e":"environment.label"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"dataQa","d":"string","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"...","d":"spread","e":"environment"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"label","d":"string","e":""},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"label","d":"expression","e":"dialogState.name || \"Environment Name\""},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"expression","e":"Icons16[dialogState.icon as SolaceEnvironmentIcons]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentChip/totalUsages.json b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/totalUsages.json new file mode 100644 index 000000000..dec2bf5d6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/totalUsages.json @@ -0,0 +1 @@ +19 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentChip/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/usagesByMfe.json new file mode 100644 index 000000000..2e96c8a74 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentChip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":9,"intg":4,"mc":5,"saas":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/commonProps.json b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/commonProps.json new file mode 100644 index 000000000..6d5940590 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":16},{"name":"fgColor","count":16},{"name":"bgColor","count":16},{"name":"icon","count":16},{"name":"variant","count":7},{"name":"...","count":2},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/customization.json b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/files.json b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/files.json new file mode 100644 index 000000000..8184356cc --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/instances.json b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/instances.json new file mode 100644 index 000000000..013ee7b90 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx","c":[{"b":"...","d":"spread","e":"item.environmentOption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"variable","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"standard"},{"b":"dataQa","d":"string","e":"eventMesh[environment]"},{"b":"...","d":"spread","e":"environmentOption"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"variable","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"\"\""},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"icon","d":"expression","e":"environment.icon"},{"b":"label","d":"expression","e":"environment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"bgColor","d":"expression","e":"miEnvironment.bgColor"},{"b":"fgColor","d":"expression","e":"miEnvironment.fgColor"},{"b":"icon","d":"expression","e":"miEnvironment.icon"},{"b":"label","d":"expression","e":"miEnvironment.label"},{"b":"variant","d":"string","e":"standard"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"label","d":"variable","e":"label"},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"variable","e":"icon"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"label","d":"expression","e":"environment.label"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"icon","d":"expression","e":"environment.icon"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"label","d":"expression","e":"\"\""},{"b":"fgColor","d":"variable","e":"fgColor"},{"b":"bgColor","d":"variable","e":"bgColor"},{"b":"icon","d":"expression","e":"Icons16[dialogState.icon as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"title"},{"b":"label","d":"expression","e":"environment.name"},{"b":"bgColor","d":"expression","e":"environment.bgColor"},{"b":"fgColor","d":"expression","e":"environment.fgColor"},{"b":"icon","d":"expression","e":"Icons16[environment.icon as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"label","d":"expression","e":"testItem.name"},{"b":"bgColor","d":"expression","e":"testItem.bgColor ?? \"#FFFFFF\""},{"b":"fgColor","d":"expression","e":"testItem.fgColor ?? \"#000000\""},{"b":"icon","d":"expression","e":"Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"label","d":"expression","e":"testItem.name"},{"b":"bgColor","d":"expression","e":"testItem.bgColor ?? \"#FFFFFF\""},{"b":"fgColor","d":"expression","e":"testItem.fgColor ?? \"#000000\""},{"b":"icon","d":"expression","e":"Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"label","d":"expression","e":"env.name"},{"b":"fgColor","d":"expression","e":"env.fgColor ?? \"#000000\""},{"b":"bgColor","d":"expression","e":"env.bgColor ?? \"#FFFFFF\""},{"b":"icon","d":"expression","e":"Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"label","d":"variable","e":"name"},{"b":"fgColor","d":"expression","e":"fgColor ?? \"#000000\""},{"b":"bgColor","d":"expression","e":"bgColor ?? \"#FFFFFF\""},{"b":"icon","d":"expression","e":"Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"label","d":"expression","e":"envOption.label"},{"b":"fgColor","d":"expression","e":"envOption.fgColor"},{"b":"bgColor","d":"expression","e":"envOption.bgColor"},{"b":"icon","d":"expression","e":"envOption.icon"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/totalUsages.json b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/totalUsages.json new file mode 100644 index 000000000..25bf17fc5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/totalUsages.json @@ -0,0 +1 @@ +18 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/usagesByMfe.json new file mode 100644 index 000000000..99ade4f7b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":3,"intg":6,"mc":2,"saas":6,"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/commonProps.json b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/commonProps.json new file mode 100644 index 000000000..745a8b9b6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":4},{"name":"value","count":4},{"name":"onChange","count":4},{"name":"options","count":4},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/customization.json b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/files.json b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/files.json new file mode 100644 index 000000000..00a518607 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/instances.json b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/instances.json new file mode 100644 index 000000000..00c2be644 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","c":[{"b":"name","d":"string","e":"MEMListEnvironmentSelector"},{"b":"value","d":"expression","e":"selectedEnvironment?.environmentId"},{"b":"onChange","d":"function","e":"({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)"},{"b":"options","d":"variable","e":"environmentOptions"},{"b":"dataQa","d":"string","e":"REMHeaderEnvironmentSelector"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"name","d":"string","e":"environment"},{"b":"value","d":"expression","e":"selectedEnvironment.environmentId"},{"b":"onChange","d":"variable","e":"handleSetEnvironment"},{"b":"options","d":"variable","e":"environmentOptions"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"name","d":"string","e":"environment"},{"b":"value","d":"expression","e":"selectedEnvironment.environmentId"},{"b":"onChange","d":"variable","e":"handleSetEnvironment"},{"b":"options","d":"variable","e":"environmentOptions"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"name","d":"string","e":"environment"},{"b":"value","d":"expression","e":"selectedEnvironment.environmentId"},{"b":"onChange","d":"variable","e":"handleSetEnvironment"},{"b":"options","d":"variable","e":"environmentOptions"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/totalUsages.json b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/totalUsages.json new file mode 100644 index 000000000..bf0d87ab1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/totalUsages.json @@ -0,0 +1 @@ +4 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/usagesByMfe.json new file mode 100644 index 000000000..196612154 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceEnvironmentSelectChip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1,"intg":2,"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceErrorBox/commonProps.json b/mrc-usage-report-data/per-component/SolaceErrorBox/commonProps.json new file mode 100644 index 000000000..40a388e4f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceErrorBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":13},{"name":"showCloseButton","count":2},{"name":"onClose","count":2},{"name":"showErrorIcon","count":1},{"name":"data-qa","count":1},{"name":"dataQa","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceErrorBox/customization.json b/mrc-usage-report-data/per-component/SolaceErrorBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceErrorBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceErrorBox/files.json b/mrc-usage-report-data/per-component/SolaceErrorBox/files.json new file mode 100644 index 000000000..2ca110646 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceErrorBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceErrorBox/instances.json b/mrc-usage-report-data/per-component/SolaceErrorBox/instances.json new file mode 100644 index 000000000..54ba15ce5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceErrorBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_disable_error\", message: \"An error occurred while disabling Distributed Tracing, please try again.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_failed_conf_collector\", message: \"Failed to configure and deploy the collector. For support, contact Solace.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_telemetry_profile_not_created\", message: \"This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({ id: \"id_dt_telemetry_no_connection\", message: \"Cannot retrieve the telemetry profile due to lack of connection.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"message","d":"expression","e":"t({\n\t\t\t\t\t\t\tid: \"id_dt_tracing_dest_not_defined\",\n\t\t\t\t\t\t\tmessage: \"A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed.\"\n\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"showErrorIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setErrorMessage(\"\")"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"message","d":"variable","e":"errorMessageWhileSavingSettings"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"message","d":"expression","e":"error.message"},{"b":"data-qa","d":"string","e":"exportErrorBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"message","d":"expression","e":"customers.aggregationIdNotFound(aggregationId)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"message","d":"expression","e":"customers.accIdNotFound(customerId)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"message","d":"expression","e":"\"Unable to retrieve organization details from monitoring. Please try refreshing the page.\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"message","d":"expression","e":"\"Unable to retrieve all service details from monitoring. Please try refreshing the page.\""},{"b":"dataQa","d":"string","e":"fetchServiceErrorBox"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceErrorBox/totalUsages.json b/mrc-usage-report-data/per-component/SolaceErrorBox/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceErrorBox/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceErrorBox/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceErrorBox/usagesByMfe.json new file mode 100644 index 000000000..bd8726961 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceErrorBox/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1,"mc":5,"saas":2,"infra":1,"maas-ops-react":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFeatureTag/commonProps.json b/mrc-usage-report-data/per-component/SolaceFeatureTag/commonProps.json new file mode 100644 index 000000000..08f274471 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFeatureTag/commonProps.json @@ -0,0 +1 @@ +[{"name":"text","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFeatureTag/customization.json b/mrc-usage-report-data/per-component/SolaceFeatureTag/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFeatureTag/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFeatureTag/files.json b/mrc-usage-report-data/per-component/SolaceFeatureTag/files.json new file mode 100644 index 000000000..7ef0f389c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFeatureTag/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFeatureTag/instances.json b/mrc-usage-report-data/per-component/SolaceFeatureTag/instances.json new file mode 100644 index 000000000..2459d14a5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFeatureTag/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"text","d":"string","e":"Experimental"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"text","d":"string","e":"beta"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"text","d":"string","e":"beta"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFeatureTag/totalUsages.json b/mrc-usage-report-data/per-component/SolaceFeatureTag/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFeatureTag/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFeatureTag/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceFeatureTag/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFeatureTag/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFileUploader/commonProps.json b/mrc-usage-report-data/per-component/SolaceFileUploader/commonProps.json new file mode 100644 index 000000000..6a42716d4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFileUploader/commonProps.json @@ -0,0 +1 @@ +[{"name":"onFileChange","count":3},{"name":"dataQa","count":2},{"name":"maxFiles","count":2},{"name":"readOnly","count":2},{"name":"fileNames","count":2},{"name":"errorText","count":2},{"name":"id","count":1},{"name":"label","count":1},{"name":"accept","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFileUploader/customization.json b/mrc-usage-report-data/per-component/SolaceFileUploader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFileUploader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFileUploader/files.json b/mrc-usage-report-data/per-component/SolaceFileUploader/files.json new file mode 100644 index 000000000..298f2ef47 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFileUploader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFileUploader/instances.json b/mrc-usage-report-data/per-component/SolaceFileUploader/instances.json new file mode 100644 index 000000000..1be87081a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFileUploader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"id","d":"expression","e":"props.id"},{"b":"label","d":"expression","e":"props.label"},{"b":"dataQa","d":"string","e":"sslKeyStoreFileUploader"},{"b":"maxFiles","d":"number","e":"1"},{"b":"onFileChange","d":"function","e":"async (files) => props.onChange(await fileUpload(files))"},{"b":"readOnly","d":"expression","e":"props.readOnly"},{"b":"fileNames","d":"expression","e":"props.value ? [\"\"] : []"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"dataQa","d":"string","e":"sslKeyStoreFileUploader"},{"b":"onFileChange","d":"variable","e":"handleFileChange"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"fileNames","d":"expression","e":"clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []"},{"b":"errorText","d":"expression","e":"solaceValidationErrors.sslKeyStore"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"maxFiles","d":"number","e":"1"},{"b":"accept","d":"object","e":"{\n\t\t\t\t\t\t\t\t\"application/json\": [\".json\"]\n\t\t\t\t\t\t\t}"},{"b":"onFileChange","d":"function","e":"(files) => {\n\t\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\t\tsetFileImported(files);\n\t\t\t\t\t\t\t}"},{"b":"errorText","d":"variable","e":"uploadDialogErrorText"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFileUploader/totalUsages.json b/mrc-usage-report-data/per-component/SolaceFileUploader/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFileUploader/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceFileUploader/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceFileUploader/usagesByMfe.json new file mode 100644 index 000000000..2cadf4622 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceFileUploader/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGrid/commonProps.json b/mrc-usage-report-data/per-component/SolaceGrid/commonProps.json new file mode 100644 index 000000000..7968f3f43 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGrid/commonProps.json @@ -0,0 +1 @@ +[{"name":"item","count":307},{"name":"xs","count":204},{"name":"container","count":93},{"name":"spacing","count":38},{"name":"alignItems","count":34},{"name":"style","count":26},{"name":"key","count":23},{"name":"data-qa","count":20},{"name":"mt","count":19},{"name":"className","count":19}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGrid/customization.json b/mrc-usage-report-data/per-component/SolaceGrid/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGrid/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGrid/files.json b/mrc-usage-report-data/per-component/SolaceGrid/files.json new file mode 100644 index 000000000..a003eacf1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGrid/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGrid/instances.json b/mrc-usage-report-data/per-component/SolaceGrid/instances.json new file mode 100644 index 000000000..246499dcc --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGrid/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"},{"b":"width","d":"expression","e":"\"800px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"grid\", gridTemplateColumns: \"1fr 1fr\", gap: \"8px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"},{"b":"width","d":"expression","e":"\"800px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"pt","d":"number","e":"2"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"style","d":"object","e":"{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"pt","d":"number","e":"2"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"style","d":"object","e":"{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ marginLeft: theme.spacing(4) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"xs","d":"number","e":"2"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"data-qa","d":"expression","e":"`${caKey}-value`"},{"b":"xs","d":"number","e":"10"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"},{"b":"display","d":"string","e":"flex"},{"b":"columnGap","d":"expression","e":"\"8px\""},{"b":"alignItems","d":"expression","e":"\"flex-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"className","d":"string","e":"name edit"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"mt","d":"expression","e":"index !== 0 ? 1 : 0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"spacing","d":"number","e":"2"},{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"data-qa","d":"expression","e":"\"attributeName-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"data-qa","d":"expression","e":"\"type-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"data-qa","d":"expression","e":"\"scope-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"expression","e":"isEditable || nameInEditMode ? \"flex-start\" : \"center\""},{"b":"display","d":"expression","e":"\"flex\""},{"b":"data-qa","d":"expression","e":"`${caKey}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"color","d":"function","e":"(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"color","d":"function","e":"(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)"},{"b":"data-qa","d":"expression","e":"`${caKey}-valueType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"color","d":"function","e":"(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)"},{"b":"data-qa","d":"expression","e":"`${caKey}-scope`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"expression","e":"isEditable ? 1 : 2"},{"b":"style","d":"object","e":"{ display: \"flex\", justifyContent: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"expression","e":"\"flex-start\""},{"b":"display","d":"expression","e":"\"flex\""},{"b":"data-qa","d":"expression","e":"`${caErrorKey}-message`"},{"b":"key","d":"expression","e":"`${caErrorKey}-message`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"key","d":"expression","e":"`${caKey}-errorMsg-content`"},{"b":"display","d":"expression","e":"\"flex\""},{"b":"alignItems","d":"expression","e":"\"flex-start\""},{"b":"columnGap","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"key","d":"expression","e":"`${caKey}-errorMsg-action`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columns","d":"number","e":"3"},{"b":"spacing","d":"number","e":"1.5"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem additionalFilter"},{"b":"key","d":"expression","e":"`${filterType}-select`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"key","d":"expression","e":"`${selectedFilter.type}Select`"},{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem customAttribute"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"padding","d":"number","e":"0"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"xs","d":"number","e":"2"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"data-qa","d":"expression","e":"`${caKey}-value`"},{"b":"xs","d":"number","e":"10"},{"b":"mt","d":"number","e":"1"},{"b":"display","d":"string","e":"flex"},{"b":"alignItems","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"},{"b":"key","d":"expression","e":"`${caKey}-name`"},{"b":"data-qa","d":"expression","e":"`${caKey}-name`"},{"b":"className","d":"string","e":"name edit"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"},{"b":"key","d":"expression","e":"`${caKey}-value`"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2.5"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"ml","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"center"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"center"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2.15"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.85"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ paddingTop: \"24px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"display","d":"expression","e":"\"flex\""},{"b":"gap","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"flex\", flexDirection: \"row\", alignItems: \"center\", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1) }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"justifyContent","d":"string","e":"flex-start"},{"b":"alignItems","d":"string","e":"flex-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"2"},{"b":"alignSelf","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"2"},{"b":"alignSelf","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"md","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"numOfGridColumns"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"expression","e":"\"0\""},{"b":"direction","d":"expression","e":"\"row\""},{"b":"wrap","d":"string","e":"nowrap"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"minWidth","d":"expression","e":"\"450px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"},{"b":"minWidth","d":"expression","e":"\"538px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"},{"b":"paddingRight","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"},{"b":"padding","d":"number","e":"3"},{"b":"width","d":"string","e":"100%"},{"b":"height","d":"expression","e":"`calc(100% - 65px)`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ width: SIDE_PANEL_WIDTH }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"style","d":"object","e":"{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: \"flex\", flexDirection: \"column\" }"},{"b":"pl","d":"number","e":"3"},{"b":"maxHeight","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"`${id}-key`"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"2"},{"b":"className","d":"variable","e":"classNames"},{"b":"style","d":"variable","e":"style"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"borderRight","d":"expression","e":"`1px solid ${theme.palette.ux.secondary.w20}`"},{"b":"overflow","d":"expression","e":"\"scroll\""},{"b":"height","d":"expression","e":"\"inherit\""},{"b":"onScroll","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (leftScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetLeftScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"object","e":"{ backgroundColor: theme.palette.ux.background.w20 }"},{"b":"justifyItems","d":"expression","e":"\"center\""},{"b":"height","d":"expression","e":"\"inherit\""},{"b":"alignContent","d":"expression","e":"relations.length === 0 && !initalDrag ? \"center\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"borderLeft","d":"expression","e":"`1px solid ${theme.palette.ux.secondary.w20}`"},{"b":"overflow","d":"expression","e":"\"scroll\""},{"b":"height","d":"expression","e":"\"inherit\""},{"b":"onScroll","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (rightScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetRightScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"className","d":"string","e":"filterItem"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"columnSpacing","d":"number","e":"3"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"string","e":"center"},{"b":"justify-content","d":"string","e":"flex-end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8.5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3.5"},{"b":"textAlign","d":"string","e":"right"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"display","d":"string","e":"flex"},{"b":"justifyContent","d":"string","e":"flex-end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"display","d":"string","e":"flex"},{"b":"justifyContent","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"},{"b":"display","d":"string","e":"flex"},{"b":"justifyContent","d":"string","e":"flex-start"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"},{"b":"textAlign","d":"expression","e":"\"end\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"expression","e":"\"column\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"item","d":"variable","e":"isParentCategory"},{"b":"key","d":"expression","e":"permission.id"},{"b":"paddingTop","d":"expression","e":"theme.spacing(0.5)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"style","d":"variable","e":"categoryDetailsSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"style","d":"variable","e":"categoryDetailsSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"variable","e":"categoryDetailsSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"categoryName"},{"b":"style","d":"object","e":"{ padding: theme.spacing(0.25) }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"boolean","e":"true"},{"b":"style","d":"variable","e":"permissionTitleSectionStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"style","d":"variable","e":"bulkPermissionCheckboxStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"style","d":"variable","e":"bulkPermissionCheckboxStyle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"marginTop","d":"expression","e":"categoryName ? theme.spacing(0.5) : theme.spacing(0.25)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"expression","e":"\"column\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10.8"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"0.5"},{"b":"className","d":"string","e":"readWrite"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"9"},{"b":"mt","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mr","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mr","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1.4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10.6"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"spacing","d":"number","e":"3"},{"b":"container","d":"boolean","e":"true"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mt","d":"number","e":"1.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"10"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ padding: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ padding: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ padding: 4 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"mt","d":"number","e":"2"},{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"},{"b":"key","d":"expression","e":"`container${key}`"},{"b":"data-qa","d":"expression","e":"`qacx-${key}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"7"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"9"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"expression","e":"`subscription-products-container`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"search-page-form"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"sm","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"sm","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"},{"b":"sm","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"},{"b":"sm","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"},{"b":"sm","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"sm","d":"number","e":"2"},{"b":"style","d":"object","e":"{ margin: \"auto\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"},{"b":"sm","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"9"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"},{"b":"textAlign","d":"string","e":"right"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"mt","d":"number","e":"0.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"textAlign","d":"string","e":"right"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"key"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"style","d":"object","e":"{ marginTop: \"8px\" }"},{"b":"key","d":"expression","e":"run.id"},{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"container","d":"boolean","e":"true"},{"b":"rowSpacing","d":"number","e":"2"},{"b":"columnSpacing","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"pr","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"expression","e":"style.max"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"width","d":"string","e":"auto"},{"b":"ml","d":"string","e":"1px"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"style","d":"expression","e":"styles.column"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"6"},{"b":"style","d":"expression","e":"styles.row"},{"b":"width","d":"string","e":"fit-content"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"row"},{"b":"columns","d":"number","e":"14"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"peNotificationStatus"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"key"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"},{"b":"alignItems","d":"string","e":"center"},{"b":"mt","d":"string","e":"30px"},{"b":"pr","d":"string","e":"32px"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"container","d":"boolean","e":"true"},{"b":"direction","d":"string","e":"column"},{"b":"alignItems","d":"string","e":"center"},{"b":"style","d":"object","e":"{ alignContent: \"end\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"paddingTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"itemWidth"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"8"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"11"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"key"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"container","d":"boolean","e":"true"},{"b":"rowSpacing","d":"number","e":"2"},{"b":"columnSpacing","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"editForm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"releaseDialog"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"space-between"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"ml","d":"string","e":"auto"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"0"},{"b":"mt","d":"expression","e":"theme.spacing(1)"},{"b":"mb","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"key","d":"variable","e":"value"},{"b":"mr","d":"expression","e":"theme.spacing(1.5)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"justifyContent","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"variable","e":"xs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"data-qa","d":"string","e":"createForm"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"5.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"},{"b":"alignItems","d":"string","e":"center"},{"b":"display","d":"expression","e":"\"flex\""},{"b":"sx","d":"object","e":"{ padding: 1, paddingLeft: 3 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"spacing","d":"number","e":"1"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"item","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"container","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"xs","d":"number","e":"12"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"container","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ padding: 3 }"},{"b":"spacing","d":"number","e":"10"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"sm","d":"expression","e":"\"auto\""},{"b":"md","d":"expression","e":"\"auto\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"item","d":"boolean","e":"true"},{"b":"sm","d":"expression","e":"\"auto\""},{"b":"md","d":"expression","e":"\"auto\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGrid/totalUsages.json b/mrc-usage-report-data/per-component/SolaceGrid/totalUsages.json new file mode 100644 index 000000000..5587802b4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGrid/totalUsages.json @@ -0,0 +1 @@ +405 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGrid/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceGrid/usagesByMfe.json new file mode 100644 index 000000000..0cc1f0430 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGrid/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":120,"intg":29,"mc":8,"saas":70,"maas-ops-react":178} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridList/commonProps.json b/mrc-usage-report-data/per-component/SolaceGridList/commonProps.json new file mode 100644 index 000000000..353fd16db --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridList/commonProps.json @@ -0,0 +1 @@ +[{"name":"items","count":30},{"name":"rowMapping","count":30},{"name":"gridTemplate","count":30},{"name":"dataQa","count":27},{"name":"headers","count":13},{"name":"selectedItemId","count":9},{"name":"onSelection","count":9},{"name":"virtualizedListOption","count":4},{"name":"numOfGridListItemDisplayed","count":4},{"name":"indicatorVariantIdentifier","count":3}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridList/customization.json b/mrc-usage-report-data/per-component/SolaceGridList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridList/files.json b/mrc-usage-report-data/per-component/SolaceGridList/files.json new file mode 100644 index 000000000..92bc9a8f8 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridList/instances.json b/mrc-usage-report-data/per-component/SolaceGridList/instances.json new file mode 100644 index 000000000..058b3fc8a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","c":[{"b":"items","d":"variable","e":"entityVersions"},{"b":"rowMapping","d":"variable","e":"mapEntity"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"processEntityVersionHighlight"},{"b":"gridTemplate","d":"string","e":"minmax(auto, auto) minmax(auto, auto) 16px"},{"b":"dataQa","d":"expression","e":"\"appDomainGraphSearchResultsGrid_\" + entityType"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\theight: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,\n\t\t\t\t\t\titemHeight: SEARCH_LIST_ITEM_HEIGHT,\n\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"items","d":"variable","e":"eventApiProductVersions"},{"b":"rowMapping","d":"variable","e":"getListRow"},{"b":"gridTemplate","d":"string","e":"auto 0fr"},{"b":"dataQa","d":"string","e":"eventApiProductList"},{"b":"background","d":"string","e":"white"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"items","d":"variable","e":"primitiveSchemaTypeOptions"},{"b":"onSelection","d":"variable","e":"onPrimitiveTypeChange"},{"b":"rowMapping","d":"variable","e":"getPrimitiveTypeRowComponents"},{"b":"selectedItemId","d":"variable","e":"selectedPrimitiveType"},{"b":"gridTemplate","d":"string","e":"auto"},{"b":"dataQa","d":"string","e":"primitiveTypes"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","c":[{"b":"items","d":"variable","e":"filteredAndSortedVersions"},{"b":"rowMapping","d":"variable","e":"getListRow"},{"b":"gridTemplate","d":"string","e":"auto 0fr"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","c":[{"b":"items","d":"variable","e":"sortedRelationshipVersions"},{"b":"rowMapping","d":"variable","e":"getListRow"},{"b":"gridTemplate","d":"string","e":"auto 0fr"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"items","d":"variable","e":"sortedMessagingServiceList"},{"b":"rowMapping","d":"variable","e":"getMessagingServiceRow"},{"b":"selectedItemId","d":"expression","e":"selectedMessagingService?.id"},{"b":"onSelection","d":"variable","e":"handleSelectMessagingService"},{"b":"gridTemplate","d":"expression","e":"\"minmax(10ch,auto) 1fr\""},{"b":"dataQa","d":"string","e":"messagingServiceListOfSelectedMEM"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","c":[{"b":"items","d":"variable","e":"listItems"},{"b":"indicatorVariantIdentifier","d":"expression","e":"\"variant\""},{"b":"emphasizedIdentifier","d":"expression","e":"\"emphasized\""},{"b":"rowMapping","d":"variable","e":"renderEventVersionRow"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"handleEntityVersionHighlight"},{"b":"gridTemplate","d":"expression","e":"\"minmax(auto, auto) minmax(auto, auto) 16px\""},{"b":"dataQa","d":"variable","e":"eventListDataQa"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","c":[{"b":"items","d":"variable","e":"listItems"},{"b":"indicatorVariantIdentifier","d":"expression","e":"\"variant\""},{"b":"emphasizedIdentifier","d":"expression","e":"\"emphasized\""},{"b":"rowMapping","d":"variable","e":"renderSchemaVersionRow"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"handleEntityVersionHighlight"},{"b":"gridTemplate","d":"expression","e":"\"minmax(auto, auto) minmax(auto, auto) 16px\""},{"b":"dataQa","d":"variable","e":"schemaListDataQa"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 52,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","c":[{"b":"items","d":"variable","e":"listItems"},{"b":"indicatorVariantIdentifier","d":"expression","e":"\"variant\""},{"b":"emphasizedIdentifier","d":"expression","e":"\"emphasized\""},{"b":"rowMapping","d":"variable","e":"renderAppVersionRow"},{"b":"selectedItemId","d":"variable","e":"highlightedEntityVersionId"},{"b":"onSelection","d":"variable","e":"handleEntityVersionHighlight"},{"b":"gridTemplate","d":"expression","e":"\"minmax(auto, auto) minmax(auto, auto) 16px\""},{"b":"dataQa","d":"variable","e":"appVersionListDataQa"},{"b":"virtualizedListOption","d":"object","e":"{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"items","d":"expression","e":"affectedTransformations.map((transformation) => ({\n\t\t\t\t\t\t\tsource: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,\n\t\t\t\t\t\t\ttarget: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName\n\t\t\t\t\t\t}))"},{"b":"headers","d":"array","e":"[en.connectors.labels.source, en.connectors.labels.target]"},{"b":"rowMapping","d":"function","e":"(item, index) => [\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.source}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.target}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"},{"b":"gridTemplate","d":"expression","e":"\"1fr 1fr\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"id","d":"string","e":"meshes"},{"b":"items","d":"variable","e":"meshes"},{"b":"headers","d":"variable","e":"headers"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"event-meshes"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"`ldap-groups-${id}`"},{"b":"gridTemplate","d":"string","e":"1fr"},{"b":"items","d":"variable","e":"items"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"dataQa","d":"expression","e":"`client-profiles`"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"clientCertAuths"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"dataQa","d":"expression","e":"`client-profiles`"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"profiles"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"id","d":"string","e":"hostnames"},{"b":"dataQa","d":"string","e":"hostnames"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"hostnames"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"dataQa","d":"string","e":"syslog-forwarding"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"variable","e":"syslogs"},{"b":"rowMapping","d":"variable","e":"renderRow"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx","c":[{"b":"id","d":"string","e":"libraries"},{"b":"dataQa","d":"string","e":"libraries"},{"b":"gridTemplate","d":"string","e":"90px 1fr 1fr 120px"},{"b":"items","d":"variable","e":"librarySummaries"},{"b":"selectedItemId","d":"variable","e":"selectedId"},{"b":"onSelection","d":"variable","e":"handleSelection"},{"b":"headers","d":"array","e":"[\n\t\t\t\tt({ id: \"id_technology\", message: \"Technology\" }),\n\t\t\t\tt({ id: \"id_library\", message: \"Library\" }),\n\t\t\t\tview === \"language\" ? t({ id: \"id_protocol\", message: \"Protocol\" }) : t({ id: \"id_language\", message: \"Language\" }),\n\t\t\t\t\"\"\n\t\t\t]"},{"b":"rowMapping","d":"function","e":"(item) => [\n\t\t\t\t\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{view === \"language\" ? item.protocol : item.languages}\n\t\t\t\t,\n\t\t\t\t\n\t\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t\tGet Started\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"expression","e":"getServiceLimits() as LimitsData[]"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(false)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"serviceLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"expression","e":"convertMsgSpoolLimits()"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(true)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"msgSpoolLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"variable","e":"sapAddonLimitsData"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(false)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"erpLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"items","d":"expression","e":"convertConnectorLimits()"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"rowMapping","d":"expression","e":"rowMapping(false)"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"connectorsLimitsList"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"items","d":"expression","e":"environments ? environments : []"},{"b":"headers","d":"variable","e":"columnHeaders"},{"b":"onSelection","d":"variable","e":"handleRowSelection"},{"b":"rowMapping","d":"variable","e":"withActionColumnMapping"},{"b":"selectedItemId","d":"expression","e":"isSidePanelOpen ? selectedId : 0"},{"b":"gridTemplate","d":"string","e":"minmax(350px, 2fr) 200px 200px 200px 24px"},{"b":"dataQa","d":"string","e":"environmentGridList"},{"b":"numOfGridListItemDisplayed","d":"expression","e":"gridRowMaxVisible()"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"items","d":"expression","e":"_.concat(outOfSyncServices, syncedServices)"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"string","e":"minmax(350px, 2fr) 120px 24px"},{"b":"numOfGridListItemDisplayed","d":"number","e":"10"},{"b":"dataQa","d":"string","e":"out-of-sync-collectors"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","c":[{"b":"headers","d":"variable","e":"headers"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"items","d":"expression","e":"datacenterQueries.data"},{"b":"rowMapping","d":"variable","e":"renderRow"},{"b":"dataQa","d":"string","e":"datacenter-list"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"headers","d":"variable","e":"subnetHeaders"},{"b":"gridTemplate","d":"variable","e":"subnetGridTemplate"},{"b":"items","d":"expression","e":"cluster.virtualNetwork.subnets"},{"b":"rowMapping","d":"variable","e":"renderRow"},{"b":"dataQa","d":"string","e":"subnet-list"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"headers","d":"variable","e":"headers"},{"b":"items","d":"variable","e":"items"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"string","e":"250px 1fr 100px 50px"},{"b":"dataQa","d":"string","e":"platform-notification-contacts-list"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"dataQa","d":"string","e":"dcTuningstate"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"items","d":"variable","e":"wanTuningDaemonSetStatus"},{"b":"headers","d":"array","e":"['Service Tier', 'Version', 'Status(D/C/R/U/A)', 'Up-To-Date Services', 'All Services']"},{"b":"numOfGridListItemDisplayed","d":"number","e":"4"},{"b":"gridTemplate","d":"string","e":"minmax(100px, 150px) 100px minmax(50px, 150px) minmax(50px, 150px) minmax(120px, 1fr) "},{"b":"onSelection","d":"function","e":"(item) => {\n setSelectedItemId(item.serviceTier as ServiceTier)\n setActiveTabFeature(WanTuningFeatures.CHECK_DAEMON_SET_POD)\n dispatch(clearDaemonSetPodStatus())\n }"},{"b":"selectedItemId","d":"variable","e":"selectedItemId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"dataQa","d":"string","e":"service-tier-grid-list"},{"b":"items","d":"variable","e":"wanTuningPodStatus"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"string","e":"200px 90px 400px 400px 400px"},{"b":"headers","d":"array","e":"[\"Pod Name\", \"Pod Status\", \"Attached Node\", \"Message Broker Pod\", \"Recent Events\"]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"items","d":"variable","e":"tracingProfile"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"numOfGridListItemDisplayed","d":"number","e":"10"},{"b":"dataQa","d":"string","e":"tracing-destinations-table"},{"b":"gridTemplate","d":"string","e":"minmax(5px, 15px) minmax(120px, 300px) minmax(120px, 1fr) minmax(120px, 150px) 150px"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"items","d":"variable","e":"noItemsFound"},{"b":"rowMapping","d":"variable","e":"emptyRowMapping"},{"b":"dataQa","d":"string","e":"empty-tracing-destinations-table"},{"b":"gridTemplate","d":"string","e":"1fr"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridList/totalUsages.json b/mrc-usage-report-data/per-component/SolaceGridList/totalUsages.json new file mode 100644 index 000000000..8580e7b68 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridList/totalUsages.json @@ -0,0 +1 @@ +30 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridList/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceGridList/usagesByMfe.json new file mode 100644 index 000000000..fd31176a3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridList/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":9,"intg":1,"mc":7,"saas":6,"infra":2,"maas-ops-react":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/commonProps.json b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/commonProps.json new file mode 100644 index 000000000..2fa3b5d3a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":1},{"name":"items","count":1},{"name":"headers","count":1},{"name":"actions","count":1},{"name":"rowMapping","count":1},{"name":"gridTemplate","count":1},{"name":"dataQa","count":1},{"name":"selectedRowIds","count":1},{"name":"onSelection","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/customization.json b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/files.json b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/files.json new file mode 100644 index 000000000..08e1a456d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/instances.json b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/instances.json new file mode 100644 index 000000000..50a270b5e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"id","d":"string","e":"services"},{"b":"items","d":"expression","e":"services ?? []"},{"b":"headers","d":"variable","e":"headers"},{"b":"actions","d":"variable","e":"actions"},{"b":"rowMapping","d":"variable","e":"rowMapping"},{"b":"gridTemplate","d":"variable","e":"gridTemplate"},{"b":"dataQa","d":"string","e":"services"},{"b":"selectedRowIds","d":"variable","e":"selectedIds"},{"b":"onSelection","d":"variable","e":"handleRowSelection"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/totalUsages.json b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/usagesByMfe.json new file mode 100644 index 000000000..8433f54c1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceGridListMultiSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"mc":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/commonProps.json b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/commonProps.json new file mode 100644 index 000000000..4808e699f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/commonProps.json @@ -0,0 +1 @@ +[{"name":"formData","count":2},{"name":"formItem","count":2},{"name":"formOptions","count":2},{"name":"onChange","count":2},{"name":"transformError","count":2},{"name":"transformWidget","count":2},{"name":"transformTitle","count":1},{"name":"readOnly","count":1},{"name":"disabled","count":1},{"name":"ajvClass","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/customization.json b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/files.json b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/files.json new file mode 100644 index 000000000..cb8c28b01 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/instances.json b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/instances.json new file mode 100644 index 000000000..19730a1eb --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx","c":[{"b":"formData","d":"variable","e":"formData"},{"b":"formItem","d":"object","e":"{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}"},{"b":"formOptions","d":"object","e":"{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"transformError","d":"function","e":"(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}"},{"b":"transformTitle","d":"function","e":"(props) => transformProps(props, showPropertyNames)"},{"b":"transformWidget","d":"function","e":"(props) => transformProps(props, showPropertyNames)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx","c":[{"b":"formData","d":"variable","e":"formData"},{"b":"formItem","d":"object","e":"{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}"},{"b":"formOptions","d":"object","e":"{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}"},{"b":"readOnly","d":"expression","e":"!onChange"},{"b":"disabled","d":"expression","e":"!enabled"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"transformError","d":"function","e":"(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}"},{"b":"transformWidget","d":"function","e":"(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}"},{"b":"ajvClass","d":"variable","e":"Ajv2019"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/totalUsages.json b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceJsonSchemaForm/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLabel/commonProps.json b/mrc-usage-report-data/per-component/SolaceLabel/commonProps.json new file mode 100644 index 000000000..3997f072d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":302},{"name":"htmlForId","count":77},{"name":"required","count":52},{"name":"noWrap","count":12},{"name":"readOnly","count":6},{"name":"disabled","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLabel/customization.json b/mrc-usage-report-data/per-component/SolaceLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLabel/files.json b/mrc-usage-report-data/per-component/SolaceLabel/files.json new file mode 100644 index 000000000..bc156e04b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx","../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","../../../maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLabel/instances.json b/mrc-usage-report-data/per-component/SolaceLabel/instances.json new file mode 100644 index 000000000..5e61f6923 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Name`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Version`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"id","d":"expression","e":"\"bulkMoveCurrentAppDomainLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"eventBrokerConfiguration\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"eventBrokerName\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"applicationName\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"applicationVersion\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"directClients\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"eventQueues\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"kafkaConsumers\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"authenticationType\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"authenticationA\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"authenticationB\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"clientProfile\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"RDPName\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"RESTConsumerType\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"clientProfileLabel\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"queueConsumers\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"nameHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"typeHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"roleHeader"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"expression","e":"\"resourceAssignmentListLoading\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileNameLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfile"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileNameLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"defaultClientProfileName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[version]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[stateName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[stateName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[displayName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"id","d":"expression","e":"\"newVersion-label\""},{"b":"htmlForId","d":"expression","e":"\"newVersion\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"string","e":"linkedApplications-label"},{"b":"htmlForId","d":"variable","e":"htmlForId"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[version]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"required","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[displayName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[state]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[state]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"id","d":"expression","e":"\"attributeName-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"id","d":"expression","e":"\"type-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"id","d":"expression","e":"\"scope-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","c":[{"b":"id","d":"expression","e":"`${version.id}[versionVersion]-label`"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","c":[{"b":"id","d":"expression","e":"`${version.id}[versionDisplayName]-label`"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx","c":[{"b":"id","d":"expression","e":"`${version.id}[versionDescription]-label`"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"id","d":"string","e":"version"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"id","d":"string","e":"associateWithEvent"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"id","d":"string","e":"eventDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"id","d":"string","e":"requiresApproval"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","c":[{"b":"id","d":"expression","e":"`messagingServiceDetails[${attribute}]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"id","d":"expression","e":"\"eventMesh[description]-label\""},{"b":"htmlForId","d":"expression","e":"\"eventMesh[description]-label\""},{"b":"disabled","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"id","d":"string","e":"eventMesh[environment]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Domain`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"expression","e":"`accessApproval`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[{"b":"id","d":"string","e":"parentShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[endOfLife]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[endOfLife]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[shared]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","c":[{"b":"id","d":"string","e":"env"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showNewEventVersionIndicator-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"snapNodeToGrid-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"id","d":"string","e":"multiSelectKey"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","c":[{"b":"id","d":"expression","e":"`entityVersion-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Preview`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}[customColour]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityType}[customColour]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}[customIconLogo]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityType}[customIconLogo]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityName}[versionState]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityName}[versionState]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityName}[endOfLifeDate]-label`"},{"b":"htmlForId","d":"expression","e":"`${entityName}[endOfLifeDate]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[version]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[displayName]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"id","d":"expression","e":"`${versionObjectName}[description]-label`"},{"b":"htmlForId","d":"expression","e":"`${versionObjectName}[description]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-name`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-consumerType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx","c":[{"b":"id","d":"string","e":"suggested-events"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"attractedEventsLoadingLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"attractedEventsNoPermission\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"attractedEvents\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-name`"},{"b":"htmlForId","d":"expression","e":"`applicationVersion[consumers].${index}.name`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"id","d":"expression","e":"`consumers[${index}]-consumerType`"},{"b":"htmlForId","d":"expression","e":"`applicationVersion[consumers].${index}.consumerType`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"id","d":"string","e":"subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"id","d":"expression","e":"`${consumer.name}-templateLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"id","d":"expression","e":"\"selectAllDomainsLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"id","d":"expression","e":"\"selectedDomainsLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"id","d":"variable","e":"sectionId"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"id","d":"expression","e":"\"filename-label\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"id","d":"string","e":"kafkaDelimiter"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"id","d":"string","e":"approvalType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"id","d":"string","e":"availabilityLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"messageDeliveryMode"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"accessType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"queueType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"maxTTL"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"id","d":"string","e":"maxMsgSpoolUsage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"id","d":"string","e":"eventApiProduct[name]-label"},{"b":"htmlForId","d":"string","e":"eventApiProduct[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"id","d":"string","e":"eventApiProduct[brokerType]-label"},{"b":"htmlForId","d":"string","e":"eventApiProduct[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"messageDeliveryMode"},{"b":"required","d":"expression","e":"!isEmpty(getValues(`${versionObjectName}.name`))"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"accessType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"queueType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"maxTTL"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"string","e":"maxMsgSpoolUsage"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"id","d":"string","e":"planNameLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"id","d":"string","e":"eventApiProductShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[name]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[description]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[description]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"expression","e":"`brokerTypeLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx","c":[{"b":"id","d":"expression","e":"`topicDomainLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"name-label\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"resource-label\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"description-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"topicAddressResourcesMessageLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"id","d":"expression","e":"\"topicAddressResourcesPreview\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`brokerType-${topicDomain.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`topicDomainLabel-${topicDomain.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`brokerTypeLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"id","d":"expression","e":"`topicDomainLabel-${topicDomain.id}`"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[name]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain[description]-label"},{"b":"htmlForId","d":"string","e":"applicationDomain[description]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"id","d":"string","e":"eventApiShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"id","d":"string","e":"declaredEAPVersions-label"},{"b":"htmlForId","d":"string","e":"declaredEAPVersions"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"id","d":"string","e":"eventApi[name]-label"},{"b":"htmlForId","d":"string","e":"eventApi[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"id","d":"string","e":"eventApi[brokerType]-label"},{"b":"htmlForId","d":"string","e":"eventApi[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"id","d":"string","e":"domainsSearchLabel"},{"b":"htmlForId","d":"string","e":"domainsSearch"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[{"b":"id","d":"expression","e":"\"filter-popup-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"string","e":"template"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"id","d":"string","e":"customModeNone"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"expression","e":"\"templateLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"id","d":"string","e":"customModeNone"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"id","d":"string","e":"restDeliveryPointConfigurationEmpty"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"id","d":"expression","e":"`restDeliveryPointConfigurationType-label`"},{"b":"htmlForId","d":"expression","e":"`restDeliveryPointConfigurationType`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"id","d":"expression","e":"`restDeliveryPointName-label`"},{"b":"htmlForId","d":"expression","e":"`restDeliveryPointName`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`postRequestTarget-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"\"requestTargetEvaluation-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`${prefix}TypeLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`${prefix}NameLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"`${prefix}ValueLabel`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"\"postRequestTarget-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"id","d":"expression","e":"\"requestTargetEvaluation-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"id","d":"string","e":"enumerationVersion[values]-label"},{"b":"htmlForId","d":"string","e":"enumerationVersion[values]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"id","d":"string","e":"enumShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","c":[{"b":"id","d":"string","e":"enumeration[name]-label"},{"b":"htmlForId","d":"string","e":"enumeration[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"id","d":"string","e":"enumerationVersion[values]-label"},{"b":"htmlForId","d":"string","e":"enumerationVersion[values]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]-label`"},{"b":"htmlForId","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[details]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[shared]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[description]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion?.id}-schemaVersion[content]-label`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"id","d":"expression","e":"`schemaVersion[version]-label`"},{"b":"htmlForId","d":"expression","e":"`schemaVersion[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"id","d":"string","e":"schemaVersion[content]-label"},{"b":"htmlForId","d":"string","e":"schemaVersion[content]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"},{"b":"id","d":"expression","e":"\"domainsSearch[label]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"string","e":"topicAddressResource"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"expression","e":"\"eventVersion[topicAddressLevels]-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"schemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"keySchemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"id","d":"string","e":"event[name]-label"},{"b":"htmlForId","d":"string","e":"event[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"id","d":"string","e":"event[brokerType]-label"},{"b":"htmlForId","d":"string","e":"event[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"id","d":"string","e":"event[requiresApproval]-label"},{"b":"htmlForId","d":"string","e":"event[requiresApproval]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"expression","e":"\"eventVersion[topicAddressLevels]-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"schemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"string","e":"schemaType-label"},{"b":"htmlForId","d":"string","e":"keySchemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"id","d":"string","e":"appearsIn-label"},{"b":"htmlForId","d":"string","e":"appearsIn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"id","d":"string","e":"eventBrokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"id","d":"string","e":"eventShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"id","d":"expression","e":"`eventVersion[version]-label`"},{"b":"htmlForId","d":"expression","e":"`eventVersion[version]`"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"id","d":"expression","e":"`eventVersion[topicAddress]-label`"},{"b":"htmlForId","d":"expression","e":"`eventVersion[topicAddress]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"id","d":"string","e":"associateWithEvent"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","c":[{"b":"id","d":"string","e":"selectedMem"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"id","d":"string","e":"application[name]-label"},{"b":"htmlForId","d":"string","e":"application[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"id","d":"string","e":"application[brokerType]-label"},{"b":"htmlForId","d":"string","e":"application[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx","c":[{"b":"id","d":"string","e":"eventFlows-label"},{"b":"htmlForId","d":"string","e":"eventFlows"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"id","d":"expression","e":"`${eventBroker.id}-noCredentials`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"id","d":"expression","e":"`${eventBroker.id}-noApplicationVersion`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"id","d":"string","e":"not-declared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"id","d":"string","e":"declared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"id","d":"expression","e":"\"subscription\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"id","d":"string","e":"schemaVersion[content]-label"},{"b":"htmlForId","d":"string","e":"schemaVersion[content]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"id","d":"string","e":"schemaVersion[content]-label"},{"b":"htmlForId","d":"string","e":"schemaVersion[content]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","c":[{"b":"id","d":"expression","e":"\"schemaTypeLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"id","d":"string","e":"schema[name]-label"},{"b":"htmlForId","d":"string","e":"schema[name]"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"id","d":"string","e":"schema[schemaType]-label"},{"b":"htmlForId","d":"string","e":"schema[schemaType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"eventTopic"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"subscriptionEvent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"subscriptionEvent"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomainLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"id","d":"string","e":"applicationDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"id","d":"string","e":"application"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiBrokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiProductBrokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiProductDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"id","d":"string","e":"eventApiProductShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"id","d":"string","e":"brokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"id","d":"string","e":"schemaDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"requiresApproval"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"eventDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"id","d":"string","e":"enumDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"id","d":"string","e":"enumShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"id","d":"string","e":"schemaShared"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"id","d":"string","e":"runtimeAgentIdLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showSchema-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"layoutOptions-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"levelDepthOptions-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"\"appVersionSummary-applabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"\"appVersionSummary-label\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","c":[{"b":"id","d":"expression","e":"\"applicationDomainLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"updateLabelObjecs\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"updateLabelAction\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"id","d":"expression","e":"`serviceLabel-${messagingService.id}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"id","d":"expression","e":"\"connectedMem\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"eventMeshOfMessagingServiceToBeDeleted-none-label"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[name]-label"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[id]-label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[agentMode]-label"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[EventBrokers]-title"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileName"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"environmentListLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"id","d":"expression","e":"\"environmentListLabel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"id","d":"string","e":"detailsNameLabel"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"id","d":"string","e":"detailsDescriptionLabel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"id","d":"string","e":"detailsEnvironementAssociationLabel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[{"b":"id","d":"expression","e":"`${detail.label}-label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"id","d":"string","e":"targetHeader"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"id","d":"string","e":"headerExpression"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"id","d":"string","e":"type"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"id","d":"string","e":"typeValue"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_status\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_direction\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_description\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"`connector-${config.label}`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_sidepanel_eventBrokerService\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"id","d":"expression","e":"\"connector_sidepanel_bindingDestination\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx","c":[{"b":"id","d":"expression","e":"`${id}-key`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"id","d":"expression","e":"`${props.id}-label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"id","d":"expression","e":"\"sslKeyStoreFileUploaderLabel\""},{"b":"required","d":"expression","e":"!readOnly"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"id","d":"string","e":"environmentsLabel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"id","d":"string","e":"constant-radio-group"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"id","d":"string","e":"constant-radio-group"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"id","d":"string","e":"keyTitle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"id","d":"string","e":"valueTitle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"id","d":"expression","e":"`${label}_label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"id","d":"string","e":"connectorType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"id","d":"string","e":"environmentsLabel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"id","d":"string","e":"connectorType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx","c":[{"b":"id","d":"expression","e":"`${id}-label`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx","c":[{"b":"id","d":"expression","e":"`role-label-${resourceRole}`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceType"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"nameHeader"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"typeHeader"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"accessHeader"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"expression","e":"\"resourceAssignmentListLoading\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx","c":[{"b":"id","d":"expression","e":"`${id}-label\"`"},{"b":"htmlForId","d":"variable","e":"htmlForId"},{"b":"required","d":"variable","e":"required"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"htmlForId","d":"variable","e":"nameCheck"},{"b":"noWrap","d":"boolean","e":"true"},{"b":"id","d":"expression","e":"`${nameCheck}-label`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","c":[{"b":"id","d":"string","e":"serviceTypeLabel"},{"b":"htmlForId","d":"string","e":"serviceType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","c":[{"b":"id","d":"string","e":"brokerFamilyLabel"},{"b":"htmlForId","d":"string","e":"brokerFamilyVersion"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx","c":[{"b":"id","d":"string","e":"endpointsLabel"},{"b":"htmlForId","d":"string","e":"endpoints"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","c":[{"b":"id","d":"string","e":"msgVpnNameLabel"},{"b":"htmlForId","d":"string","e":"msgVpnName"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"id","d":"string","e":"brokerVersionLabel"},{"b":"htmlForId","d":"string","e":"brokerVersion"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx","c":[{"b":"id","d":"string","e":"mateLinkEncryptionLabel"},{"b":"htmlForId","d":"string","e":"mateLinkEncryption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx","c":[{"b":"id","d":"string","e":"environmentLabel"},{"b":"htmlForId","d":"string","e":"environment"},{"b":"required","d":"expression","e":"!!serviceId"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","c":[{"b":"id","d":"string","e":"cloudLabel"},{"b":"htmlForId","d":"string","e":"cloud"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","c":[{"b":"id","d":"string","e":"regionLabel"},{"b":"htmlForId","d":"string","e":"region"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"id","d":"string","e":"systemTypeLabel"},{"b":"htmlForId","d":"string","e":"systemType"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","c":[{"b":"id","d":"string","e":"clusterNameLabel"},{"b":"htmlForId","d":"string","e":"clusterName"},{"b":"required","d":"expression","e":"!!edit"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","c":[{"b":"id","d":"string","e":"serviceNameLabel"},{"b":"htmlForId","d":"string","e":"serviceName"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx","c":[{"b":"id","d":"string","e":"certAuthoritiesLabel"},{"b":"htmlForId","d":"string","e":"cloneCertificateAuthorities"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceType"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"nameHeader"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"typeHeader"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"accessHeader"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"expression","e":"\"resourceAssignmentListLoading\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"id","d":"string","e":"activeStorageAddOns"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"id","d":"string","e":"unusedStorage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"current-environment-label"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"id","d":"expression","e":"`description-label-${selectedItem.id}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"id","d":"expression","e":"`state-label-${selectedItem.id}`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLabel/totalUsages.json b/mrc-usage-report-data/per-component/SolaceLabel/totalUsages.json new file mode 100644 index 000000000..55663e5ea --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLabel/totalUsages.json @@ -0,0 +1 @@ +304 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLabel/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceLabel/usagesByMfe.json new file mode 100644 index 000000000..898eac56a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":246,"intg":25,"mc":20,"saas":11,"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningBanner/commonProps.json b/mrc-usage-report-data/per-component/SolaceLearningBanner/commonProps.json new file mode 100644 index 000000000..8e099dda3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningBanner/commonProps.json @@ -0,0 +1 @@ +[{"name":"backgroundColor","count":4},{"name":"title","count":3},{"name":"dataQa","count":2},{"name":"showCloseButton","count":1},{"name":"onClose","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningBanner/customization.json b/mrc-usage-report-data/per-component/SolaceLearningBanner/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningBanner/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningBanner/files.json b/mrc-usage-report-data/per-component/SolaceLearningBanner/files.json new file mode 100644 index 000000000..cf5f36c70 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningBanner/files.json @@ -0,0 +1 @@ +["../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningBanner/instances.json b/mrc-usage-report-data/per-component/SolaceLearningBanner/instances.json new file mode 100644 index 000000000..8bd49d721 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningBanner/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"title","d":"string","e":"Plan Description"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx","c":[{"b":"title","d":"jsx","e":""},{"b":"backgroundColor","d":"expression","e":"theme.palette.background.paper"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.common.white"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"drawdownUsage.messages.title"},{"b":"dataQa","d":"string","e":"drawdownUsageFormulaCard"},{"b":"backgroundColor","d":"string","e":"#E6F2FF"},{"b":"onClose","d":"variable","e":"handleCloseDisplayMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"backgroundColor","d":"expression","e":"theme.palette.primary.contrastText"},{"b":"dataQa","d":"string","e":"drawdownCard"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningBanner/totalUsages.json b/mrc-usage-report-data/per-component/SolaceLearningBanner/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningBanner/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningBanner/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceLearningBanner/usagesByMfe.json new file mode 100644 index 000000000..4f1ef0b19 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningBanner/usagesByMfe.json @@ -0,0 +1 @@ +{"maas-ops-react":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningButton/commonProps.json b/mrc-usage-report-data/per-component/SolaceLearningButton/commonProps.json new file mode 100644 index 000000000..70b56a39b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":7},{"name":"onClick","count":7},{"name":"dataQa","count":5},{"name":"isDisabled","count":4},{"name":"startIcon","count":3},{"name":"endIcon","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningButton/customization.json b/mrc-usage-report-data/per-component/SolaceLearningButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningButton/files.json b/mrc-usage-report-data/per-component/SolaceLearningButton/files.json new file mode 100644 index 000000000..5ccf98694 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningButton/instances.json b/mrc-usage-report-data/per-component/SolaceLearningButton/instances.json new file mode 100644 index 000000000..8b40025cf --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"isDisabled","d":"expression","e":"selectedDetails.disabled"},{"b":"variant","d":"expression","e":"\"dark-outline\""},{"b":"dataQa","d":"expression","e":"`${camelCase(selectedDetails.button)}_button}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t}"},{"b":"startIcon","d":"expression","e":"selectedDetails.accessDenied && "}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"isDisabled","d":"expression","e":"selectedDetails.disabled"},{"b":"variant","d":"expression","e":"\"dark-call-to-action\""},{"b":"dataQa","d":"expression","e":"`${camelCase(selectedDetails.button)}_button}`"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t\t}"},{"b":"startIcon","d":"expression","e":"selectedDetails.accessDenied && "}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"call-to-action"},{"b":"onClick","d":"variable","e":"handleExploreSample"},{"b":"dataQa","d":"string","e":"exploreSampleButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"expression","e":"\"call-to-action\""},{"b":"isDisabled","d":"expression","e":"!showLoadSampleButton"},{"b":"startIcon","d":"expression","e":"!showLoadSampleButton && "},{"b":"onClick","d":"variable","e":"onClickLoadSamples"},{"b":"dataQa","d":"string","e":"loadSampleDataButton"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"string","e":"dark-call-to-action"},{"b":"dataQa","d":"string","e":"ExploreOnMyOwnLink"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tdismissableCallback();\n\t\t\t\t\t\t\t\t\tMixpanel.track(\"Element Click\", { \"element-id\": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"variant","d":"string","e":"dark-call-to-action"},{"b":"onClick","d":"variable","e":"redirectToVideos"},{"b":"endIcon","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"isDisabled","d":"expression","e":"!email"},{"b":"variant","d":"string","e":"dark-outline"},{"b":"onClick","d":"variable","e":"onClickInviteUsers"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningButton/totalUsages.json b/mrc-usage-report-data/per-component/SolaceLearningButton/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningButton/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLearningButton/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceLearningButton/usagesByMfe.json new file mode 100644 index 000000000..b404f9339 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLearningButton/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLinearProgress/commonProps.json b/mrc-usage-report-data/per-component/SolaceLinearProgress/commonProps.json new file mode 100644 index 000000000..8bfc15400 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLinearProgress/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":5},{"name":"height","count":5},{"name":"value","count":4},{"name":"color","count":1},{"name":"dataQa","count":1},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLinearProgress/customization.json b/mrc-usage-report-data/per-component/SolaceLinearProgress/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLinearProgress/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLinearProgress/files.json b/mrc-usage-report-data/per-component/SolaceLinearProgress/files.json new file mode 100644 index 000000000..b23250933 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLinearProgress/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLinearProgress/instances.json b/mrc-usage-report-data/per-component/SolaceLinearProgress/instances.json new file mode 100644 index 000000000..18d6b44b9 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLinearProgress/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"variant","d":"string","e":"determinate"},{"b":"color","d":"string","e":"learning"},{"b":"height","d":"string","e":"md"},{"b":"value","d":"variable","e":"completionPercentage"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"key","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx","c":[{"b":"variant","d":"expression","e":"percent >= 99 ? \"indeterminate\" : \"determinate\""},{"b":"height","d":"string","e":"sm"},{"b":"value","d":"variable","e":"percent"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"variant","d":"string","e":"indeterminate"},{"b":"height","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"variant","d":"string","e":"determinate"},{"b":"height","d":"string","e":"sm"},{"b":"value","d":"expression","e":"getCreationPercentage(service.creationState, service.createdTime as Date)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"determinate"},{"b":"value","d":"variable","e":"loadingPercentage"},{"b":"height","d":"string","e":"lg"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLinearProgress/totalUsages.json b/mrc-usage-report-data/per-component/SolaceLinearProgress/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLinearProgress/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceLinearProgress/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceLinearProgress/usagesByMfe.json new file mode 100644 index 000000000..ccb069952 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceLinearProgress/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1,"mc":3,"infra":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceList/commonProps.json b/mrc-usage-report-data/per-component/SolaceList/commonProps.json new file mode 100644 index 000000000..3bb2d34da --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceList/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":12},{"name":"disablePadding","count":5},{"name":"key","count":4},{"name":"dense","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceList/customization.json b/mrc-usage-report-data/per-component/SolaceList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceList/files.json b/mrc-usage-report-data/per-component/SolaceList/files.json new file mode 100644 index 000000000..9d390b786 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceList/instances.json b/mrc-usage-report-data/per-component/SolaceList/instances.json new file mode 100644 index 000000000..5572b200c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"disablePadding","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ marginTop: \"-10px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\"&& .Mui-selected\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20,\n\t\t\t\t\t\t\t\tborderRight: \"0\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"&& .Mui-selected:hover\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"},{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"key","d":"expression","e":"`headerSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"key","d":"expression","e":"`defaultHeaderSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"key","d":"expression","e":"`payloadSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"key","d":"expression","e":"`constantSection-${direction}`"},{"b":"sx","d":"object","e":"{ bgcolor: \"background.paper\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ p: 2 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ li: { listStyleType: \"disc\" } }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ justifyContent: \"space-between\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ justifyContent: \"space-between\", display: \"flex\", flexDirection: \"column\" }"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceList/totalUsages.json b/mrc-usage-report-data/per-component/SolaceList/totalUsages.json new file mode 100644 index 000000000..dec2bf5d6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceList/totalUsages.json @@ -0,0 +1 @@ +19 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceList/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceList/usagesByMfe.json new file mode 100644 index 000000000..1aca3a0b6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceList/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7,"intg":5,"saas":2,"maas-ops-react":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItem/commonProps.json b/mrc-usage-report-data/per-component/SolaceListItem/commonProps.json new file mode 100644 index 000000000..bef1bf903 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"sx","count":12},{"name":"divider","count":8},{"name":"key","count":3},{"name":"data-qa","count":1},{"name":"disablePadding","count":1},{"name":"disableGutters","count":1},{"name":"secondaryAction","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItem/customization.json b/mrc-usage-report-data/per-component/SolaceListItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItem/files.json b/mrc-usage-report-data/per-component/SolaceListItem/files.json new file mode 100644 index 000000000..aa109ed1e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItem/instances.json b/mrc-usage-report-data/per-component/SolaceListItem/instances.json new file mode 100644 index 000000000..375c8284d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx","c":[{"b":"key","d":"expression","e":"entity.id"},{"b":"data-qa","d":"expression","e":"`entityId-${entity.id}`"},{"b":"sx","d":"object","e":"{ paddingLeft: \"48px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"disablePadding","d":"boolean","e":"true"},{"b":"disableGutters","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ height: theme.spacing(sampleSetup ? 7 : 9) }"},{"b":"secondaryAction","d":"jsx","e":"{getSecondaryAction()}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\tborderTop: index === 0 ? 0 : \"1px solid\",\n\t\t\t\t\t\t\tborderColor: theme.palette.grey[300],\n\t\t\t\t\t\t\tpl: field?.parentId ? getIndentationLevel(field?.parentId) : 3\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"sx","d":"object","e":"{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[{"b":"key","d":"expression","e":"`hidden-${index}-${email}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{ display: \"flex\", alignItems: \"flex-start\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"divider","d":"boolean","e":"true"},{"b":"key","d":"expression","e":"resource.profile"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItem/totalUsages.json b/mrc-usage-report-data/per-component/SolaceListItem/totalUsages.json new file mode 100644 index 000000000..410b14d2c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItem/totalUsages.json @@ -0,0 +1 @@ +25 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItem/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceListItem/usagesByMfe.json new file mode 100644 index 000000000..f43fb1b34 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItem/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":10,"intg":1,"saas":5,"maas-ops-react":9} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItemButton/commonProps.json b/mrc-usage-report-data/per-component/SolaceListItemButton/commonProps.json new file mode 100644 index 000000000..2fa118992 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItemButton/commonProps.json @@ -0,0 +1 @@ +[{"name":"selected","count":5},{"name":"onClick","count":5},{"name":"sx","count":3},{"name":"divider","count":2},{"name":"disableGutters","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItemButton/customization.json b/mrc-usage-report-data/per-component/SolaceListItemButton/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItemButton/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItemButton/files.json b/mrc-usage-report-data/per-component/SolaceListItemButton/files.json new file mode 100644 index 000000000..635ab514d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItemButton/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItemButton/instances.json b/mrc-usage-report-data/per-component/SolaceListItemButton/instances.json new file mode 100644 index 000000000..3f99b007e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItemButton/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[{"b":"selected","d":"expression","e":"currentTab === \"acme-retail-sample\""},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\thistory.push(TabsPath.acmeRetail);\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[{"b":"selected","d":"expression","e":"!currentTab || currentTab === \"get-started\""},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\thistory.push(TabsPath.getStarted);\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\tbackground: theme.palette.ux.primary.text.w10,\n\t\t\t\t\t\t\theight: \"100%\",\n\t\t\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t\t\t\tpaddingTop: \"0\",\n\t\t\t\t\t\t\tborder: `1px solid ${theme.palette.ux.secondary.w20}`,\n\t\t\t\t\t\t\tborderBottom: index === data.items.length - 1 ? undefined : \"0\"\n\t\t\t\t\t\t}"},{"b":"disableGutters","d":"boolean","e":"true"},{"b":"selected","d":"variable","e":"selected"},{"b":"onClick","d":"function","e":"() => setSelectedIndex(index)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }"},{"b":"divider","d":"boolean","e":"true"},{"b":"selected","d":"expression","e":"selectedTemplateType === ConfigurationTypeId.solaceQueue"},{"b":"onClick","d":"function","e":"() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }"},{"b":"divider","d":"boolean","e":"true"},{"b":"selected","d":"expression","e":"selectedTemplateType === ConfigurationTypeId.solaceClientProfileName"},{"b":"onClick","d":"function","e":"() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItemButton/totalUsages.json b/mrc-usage-report-data/per-component/SolaceListItemButton/totalUsages.json new file mode 100644 index 000000000..7813681f5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItemButton/totalUsages.json @@ -0,0 +1 @@ +5 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceListItemButton/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceListItemButton/usagesByMfe.json new file mode 100644 index 000000000..06d8ab14f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceListItemButton/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":5} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenu/commonProps.json b/mrc-usage-report-data/per-component/SolaceMenu/commonProps.json new file mode 100644 index 000000000..b8c0ed609 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenu/commonProps.json @@ -0,0 +1 @@ +[{"name":"buttonProps","count":69},{"name":"items","count":69},{"name":"anchorOrigin","count":38},{"name":"transformOrigin","count":38},{"name":"dataQa","count":27},{"name":"id","count":23},{"name":"key","count":12},{"name":"closeOnSelect","count":5},{"name":"numOfMenuItemDisplayed","count":3},{"name":"maxWidth","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenu/customization.json b/mrc-usage-report-data/per-component/SolaceMenu/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenu/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenu/files.json b/mrc-usage-report-data/per-component/SolaceMenu/files.json new file mode 100644 index 000000000..ba1d61041 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenu/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenu/instances.json b/mrc-usage-report-data/per-component/SolaceMenu/instances.json new file mode 100644 index 000000000..75d39346b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenu/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\tisDisabled: isEmpty(selectedRowIds),\n\t\t\t\t\t\t\tdataQa: \"selectedEntityActions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"moreActionMenuButton\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"expression","e":"getMenuItemsForEntityDetail()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: en.eventPortalResources.labels.deleteSample.actionMenuTitle\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"getMenuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tdataQa: \"eventDetailModalMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Add Protocol\"\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"solaceAddProtocolMenuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tisDisabled: graphEmpty,\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"settingsMenuItemsProps"},{"b":"closeOnSelect","d":"boolean","e":"true"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"settingsMenuItemsProps"},{"b":"closeOnSelect","d":"boolean","e":"true"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tvariant: \"text\",\n\t\t\t\tchildren: \"Add Filters\"\n\t\t\t}"},{"b":"items","d":"variable","e":"filterMenuItems"},{"b":"closeOnSelect","d":"boolean","e":"false"},{"b":"numOfMenuItemDisplayed","d":"number","e":"9"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"versionMoreAction\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}"},{"b":"items","d":"variable","e":"wrappedMenuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tdataQa: `${selectedNode?.type ?? \"\"}NodeSidePanelMoreAction`,\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"actionMenuItems"},{"b":"dataQa","d":"expression","e":"`${selectedNode?.type ?? \"\"}NodeSidePanelMoreActionMenu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"appDomainEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"actionMenuItems"},{"b":"dataQa","d":"string","e":"appDomainEntityVersionDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\tisDisabled: !isChecked,\n\t\t\t\t\t\tdataQa: \"selectedDomainsActions\"\n\t\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"Export\",\n\t\t\t\t\t\t\tonMenuItemClick: () => onExport(selectedDomainIds),\n\t\t\t\t\t\t\tdataQa: \"selectedDomainsExport\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tdataQa: \"designerMoreAction\",\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\tdataQa: \"domainMoreAction\",\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}"},{"b":"dataQa","d":"string","e":"domainMoreActionMenu"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx","c":[{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.eventApiProduct.buttons.openEventApiProduct,\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewVersionDetail(e, item, false)\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\ttitle: en.common.button.moreActions,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"memListMoreAction\"\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"moreActionsButton\",\n\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"key","d":"expression","e":"\"createApplication-menu\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: createLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tdataQa: \"createApplication-button\"\n\t\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.standard,\n\t\t\t\t\t\t\tonMenuItemClick: handleCreate,\n\t\t\t\t\t\t\tdataQa: \"createStandardApplication\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.restDeliveryPoint,\n\t\t\t\t\t\t\tonMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),\n\t\t\t\t\t\t\tdataQa: \"createRestDeliveryPointApplication\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa: `${eventBroker.id}-moreOptionMenuButton`,\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\ttitle: common.button.moreActions\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"moreOptions"},{"b":"dataQa","d":"expression","e":"`${eventBroker.id}-moreOptionMenu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"items","d":"expression","e":"getVersionDetailMenuItem(version, mode)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx","c":[{"b":"items","d":"expression","e":"getRunDiscoveryScanOptionsItems()"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tvariant: variant,\n\t\t\t\t\t\tchildren: \"Run Discovery Scan\",\n\t\t\t\t\t\tdataQa: \"runDiscoveryScan\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"left\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"left\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: \"messagingServicesDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"messagingServicesDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"key","d":"expression","e":"`messagingService_${entity.id}-moreActions`"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"memMessagingServiceDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"expression","e":"getMoreOptionsItemsForMessagingService(entity, true)"},{"b":"dataQa","d":"string","e":"memMessagingServiceDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"items","d":"variable","e":"items"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"messagingServiceMoreActionsButton\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"View Event Management Agent\",\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),\n\t\t\t\t\t\t\tdataQa: \"viewRuntimeAgentActionMenu\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"runtimeAgentMoreActionsButton\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"key","d":"string","e":"createEventManagementAgent"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Connect to an Event Management Agent\"\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"CREATE_MENU_ITEMS"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"memEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"actionMenuItems"},{"b":"dataQa","d":"string","e":"memEntityVersionDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx","c":[{"b":"id","d":"expression","e":"\"custom-solace-menu\""},{"b":"dataQa","d":"string","e":"actionMenuForEntityVersionList"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: numberOfSelection === 0,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: \"Actions\"\n\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"memDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\tdataQa: dataQa + \"-button\"\n\t\t\t\t}"},{"b":"items","d":"expression","e":"getMenuItemsProps()"},{"b":"closeOnSelect","d":"boolean","e":"false"},{"b":"anchorOrigin","d":"object","e":"{\n\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}"},{"b":"transformOrigin","d":"object","e":"{\n\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${dataQa}-menu`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: \"memMoreActions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"memDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"key","d":"expression","e":"\"moreActions\""},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"memDetailsMoreActionMenu"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tvariant: buttonVariant || \"outline\",\n\t\t\t\t\t\t\tchildren: buttonText || \"Import\",\n\t\t\t\t\t\t\tisDisabled: disabled,\n\t\t\t\t\t\t\tdataQa: \"chooseImportOptionButton\"\n\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"},{"b":"maxWidth","d":"expression","e":"readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined"},{"b":"dataQa","d":"expression","e":"dataQa ?? \"auditImportMenu\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"key","d":"string","e":"createEventManagementAgent"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tchildren: \"Set Up Event Management Agent\"\n\t\t\t\t}"},{"b":"items","d":"variable","e":"CREATE_MENU_ITEMS"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"\"connectors_additional_actions\""},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"connectors_additional_actions_menu"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"key","d":"string","e":"actionitems"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"\"connectors_additional_actions\""},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"dataQa","d":"variable","e":"dataQa"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: selectedCount < minimalCount,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: t({ id: \"id_actions\", message: \"Actions\" })\n\t\t\t\t}"},{"b":"items","d":"variable","e":"items"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"actions"},{"b":"id","d":"expression","e":"`${eventMesh.id}_actions`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_event_mesh_details\", message: \"Event Mesh Details\" }),\n\t\t\t\t\t\t\t\tonMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),\n\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\tdisabled: !hasWriteAccess\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: t({ id: \"id_download\", message: \"Download\" }),\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tdataQa: \"download\"\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"string","e":"download"},{"b":"items","d":"expression","e":"links.download.map((dw) => ({\n\t\t\t\t\t\t\tname: dw.name,\n\t\t\t\t\t\t\tonMenuItemClick: () => openLink(dw.url)\n\t\t\t\t\t\t}))"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"actions\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`${id}-actions-menu`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-edit\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleEdit(idx)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-delete\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleDelete(idx)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"left\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"left\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"expression","e":"certType === \"client\"\n\t\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tdisabled: !canConfigure,\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index),\n\t\t\t\t\t\t\t\t\t\t\tdisabled: index === 0 || !canConfigure\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\tdisabled: item.id === DEFAULT_PROFILE || !canConfigure,\n\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"expression","e":"canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_set_as_default\", message: \"Set as Default\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-set-default\",\n\t\t\t\t\t\t\t\t\t\tdisabled: !item.canSetAsDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tchangeHostnameDefaultMutation.mutate(item.name);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-move\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\tsetShowMoveDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_copy_clipboard\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetShowDeleteDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`cp_${index}-actions-menu`"},{"b":"items","d":"expression","e":"canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-edit\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-view\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"actions"},{"b":"id","d":"expression","e":"`public_actions`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"sort"},{"b":"id","d":"string","e":"sort"},{"b":"items","d":"variable","e":"items"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"actions\",\n\t\t\t\tonClick: handleMenuClick\n\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"`${service.id}_actions`"},{"b":"items","d":"variable","e":"menuItems"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"sort"},{"b":"id","d":"string","e":"sort"},{"b":"items","d":"variable","e":"items"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\t\tisDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === \"unsupported\"\n\t\t\t\t\t\t\t}"},{"b":"items","d":"variable","e":"actionItems"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\tdataQa: `${token.name}-menu`,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More\"\n\t\t\t\t\t}"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `View Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onViewToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-view`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Regenerate Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onRegenerateToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-regenerate`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Delete Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onDeleteToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-delete`\n\t\t\t\t\t\t}\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"msg-spool-menu"},{"b":"id","d":"string","e":"msg-spool-menu"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.requestLimitChange,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"dataQa","d":"string","e":"msg-spool-menu"},{"b":"id","d":"string","e":"msg-spool-menu"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"claimMappingActions"},{"b":"dataTags","d":"string","e":"claimMappingActions"},{"b":"id","d":"string","e":"claimMappingActions"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.edit,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),\n\t\t\t\t\t\t\t\tdisabled: groupMappingState\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.remove,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => removeClaimMappingHandler(rowData.id)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]"},{"b":"numOfMenuItemDisplayed","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"items","d":"variable","e":"items"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: `${environmentsStr.environmentList.moreActionLabel}`,\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"environmentMoreActions\"\n\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"right\" }"},{"b":"transformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"right\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"key","d":"expression","e":"`${item.serviceId}-menu`"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tService Details\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t\tonMenuItemClick: () => window.open(`/services/${item.serviceId}`, \"_blank\")?.focus()\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: \n\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"items","d":"expression","e":"actionMenuItems()"},{"b":"buttonProps","d":"object","e":"{\n variant: \"icon\",\n title: \"Actions\",\n dataQa: \"clusterDetailsActionMenuButton\",\n children: ,\n }"},{"b":"key","d":"string","e":"cloudProviderLink"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"buttonProps","d":"object","e":"{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t}"},{"b":"anchorOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"bottom\" }"},{"b":"transformOrigin","d":"object","e":"{ horizontal: \"right\", vertical: \"top\" }"},{"b":"id","d":"expression","e":"\"connectors_additional_actions\""},{"b":"items","d":"variable","e":"menuItems"},{"b":"dataQa","d":"string","e":"connectors_additional_actions_menu"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"dataQa","d":"string","e":"filterMenu"},{"b":"buttonProps","d":"object","e":"{ variant: \"icon\", children: , dataQa: \"filter\" }"},{"b":"closeOnSelect","d":"boolean","e":"false"},{"b":"items","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PREVIEW) ? Preview : \"Preview\",\n\t\t\t\t\t\t\t\t\tdataQa: \"preview\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PREVIEW)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PRODUCTION) ? Production : \"Production\",\n\t\t\t\t\t\t\t\t\tdataQa: \"production\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PRODUCTION)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.LTS) ? LTS : \"LTS\",\n\t\t\t\t\t\t\t\t\tdataQa: \"lts\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.LTS)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.ROLLING) ? Rolling : \"Rolling\",\n\t\t\t\t\t\t\t\t\tdataQa: \"rolling\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ROLLING)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.DECLINED) ? Declined : \"Declined\",\n\t\t\t\t\t\t\t\t\tdataQa: \"declined\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.DECLINED),\n\t\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.RELEASED) ? Released : \"Released\",\n\t\t\t\t\t\t\t\t\tdataQa: \"released\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.NOT_RELEASED) ? (\n\t\t\t\t\t\t\t\t\t\tNot Released\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\"Not Released\"\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdivider: true,\n\t\t\t\t\t\t\t\t\tdataQa: \"notReleased\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.NOT_RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Views\",\n\t\t\t\t\t\t\t\t\tname:\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PRODUCTION) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.RELEASED) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PREVIEW) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.LTS) ? (\n\t\t\t\t\t\t\t\t\t\t\tActive\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\"Active\"\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdataQa: \"active\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ACTIVE)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/standard-card.js","c":[{"b":"buttonProps","d":"object","e":"{\n 'aria-label': 'Actions menu',\n children: ,\n title: 'Actions',\n variant: 'icon',\n }"},{"b":"items","d":"expression","e":"generateMenuItems()"},{"b":"numOfMenuItemDisplayed","d":"number","e":"3"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenu/totalUsages.json b/mrc-usage-report-data/per-component/SolaceMenu/totalUsages.json new file mode 100644 index 000000000..8c0474e32 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenu/totalUsages.json @@ -0,0 +1 @@ +69 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenu/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceMenu/usagesByMfe.json new file mode 100644 index 000000000..ddca7c486 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenu/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":42,"intg":2,"mc":13,"saas":8,"infra":1,"maas-ops-react":2,"broker-manager":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenuItem/commonProps.json b/mrc-usage-report-data/per-component/SolaceMenuItem/commonProps.json new file mode 100644 index 000000000..841e0ab86 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenuItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"key","count":1},{"name":"...","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenuItem/customization.json b/mrc-usage-report-data/per-component/SolaceMenuItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenuItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenuItem/files.json b/mrc-usage-report-data/per-component/SolaceMenuItem/files.json new file mode 100644 index 000000000..e1a6d78d3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenuItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenuItem/instances.json b/mrc-usage-report-data/per-component/SolaceMenuItem/instances.json new file mode 100644 index 000000000..e0f237615 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenuItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx","c":[{"b":"key","d":"expression","e":"`graphContextMenu_${menuItem.id ?? index}`"},{"b":"...","d":"spread","e":"menuItem"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenuItem/totalUsages.json b/mrc-usage-report-data/per-component/SolaceMenuItem/totalUsages.json new file mode 100644 index 000000000..56a6051ca --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenuItem/totalUsages.json @@ -0,0 +1 @@ +1 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMenuItem/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceMenuItem/usagesByMfe.json new file mode 100644 index 000000000..fe9021d66 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMenuItem/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMessageBox/commonProps.json b/mrc-usage-report-data/per-component/SolaceMessageBox/commonProps.json new file mode 100644 index 000000000..a0106a928 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMessageBox/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":283},{"name":"variant","count":283},{"name":"dataQa","count":82},{"name":"showCloseButton","count":66},{"name":"onClose","count":57},{"name":"showIcon","count":37},{"name":"dense","count":13},{"name":"details","count":5},{"name":"key","count":3},{"name":"color","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMessageBox/customization.json b/mrc-usage-report-data/per-component/SolaceMessageBox/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMessageBox/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMessageBox/files.json b/mrc-usage-report-data/per-component/SolaceMessageBox/files.json new file mode 100644 index 000000000..be2c9389c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMessageBox/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMessageBox/instances.json b/mrc-usage-report-data/per-component/SolaceMessageBox/instances.json new file mode 100644 index 000000000..1d59ffa55 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMessageBox/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","c":[{"b":"message","d":"expression","e":"en.entities.labels.bulkMove.inProgress"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"message","d":"expression","e":"en.entities.labels.bulkMove.bulkMoveInfo[entityType]"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"error.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"},{"b":"dataQa","d":"string","e":"errorMessageBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"eventAccessRequestError"},{"b":"dataQa","d":"string","e":"eventAccessRequestErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"eventAccessRequestError"},{"b":"dataQa","d":"string","e":"eventAccessRequestErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"getErrorMessage(errors)"},{"b":"dataQa","d":"string","e":"previewErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"expression","e":"\"aclProfileMessageBox\""},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t{messages.preview.aclProfileInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{messages.preview.learnMoreAboutACLProfiles}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"onClose","d":"function","e":"() => handleCloseAclProfileInfoMessage()"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"error.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"},{"b":"dataQa","d":"string","e":"errorMessageBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"eventAccessRequestError"},{"b":"dataQa","d":"string","e":"eventAccessRequestErrorMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[{"b":"message","d":"jsx","e":""},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"message","d":"variable","e":"error"},{"b":"onClose","d":"function","e":"() => setError(null)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"backendErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"enumErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"enumWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"warning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"versionWarningMsg"},{"b":"message","d":"variable","e":"versionWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit.\""},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"\"Any unsaved changes will be lost if you reload the page.\""},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"unsavedWarning\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? \"versions\" : \"version\"} open for editing`"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowUnsavedWarning(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(item.name)"},{"b":"onClose","d":"variable","e":"handleDismissErrorStatus"},{"b":"dataQa","d":"expression","e":"\"deletionErrorMsgBoxSidePanel\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"addHelpText"},{"b":"onClose","d":"function","e":"() => onCloseAddHelp()"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx","c":[{"b":"message","d":"variable","e":"deleteHelpText"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\tEvent Portal does not require your authentication passwords. After Event Portal generates the connection file, replace\n\t\t\t\t\tthe environment variables with your passwords in the installation command, so you can keep them secure.{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\tLearn more about authentication passwords\n\t\t\t\t\t\n\t\t\t\t
"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"onClose","d":"variable","e":"onClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"\"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"submitWarning.message"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx","c":[{"b":"dataQa","d":"string","e":"errorReferencedGatewayMessaggingServices"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx","c":[{"b":"dataQa","d":"string","e":"errorReferencedVersions"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"message","d":"variable","e":"unsavedChangesWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"\"After an object version is Retired, you cannot associate it to other object versions.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(\n\t\t\t\t\t\t\t\tentityType\n\t\t\t\t\t\t\t)} will be removed from the graph view if all versions are in retired state.`"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"variable","e":"stateChangeErrorMessage"},{"b":"variant","d":"string","e":"error"},{"b":"color","d":"expression","e":"theme.palette.ux.error.w100"},{"b":"details","d":"expression","e":"getDetails()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"\"Objects must be in Draft state to edit most attributes.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"message","d":"expression","e":"\"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"versionWarningMsg"},{"b":"message","d":"variable","e":"versionWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"message","d":"variable","e":"unsavedChangesWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"message","d":"variable","e":"unsavedChangesWarningMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"kafkaWarningMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"backendValidationErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"message","d":"expression","e":"getEmptyMessageDetails(true)"},{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"EXPORT_MESSAGE"},{"b":"variant","d":"expression","e":"\"info\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"message","d":"variable","e":"message"},{"b":"variant","d":"variable","e":"messageType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"message","d":"string","e":"The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices."},{"b":"variant","d":"string","e":"warn"},{"b":"dataQa","d":"string","e":"topicAddressResourcesWarning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"kafkaWarningMessage"},{"b":"dense","d":"variable","e":"userHasEditorAccess"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\tCannot delete the last topic domain when{\" \"}\n\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain is selected.\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"variable","e":"applicationDomainMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"variable","e":"topicDomainSuccessMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"expression","e":"\"One or more topic domains were not created successfully.\""},{"b":"variant","d":"string","e":"error"},{"b":"details","d":"expression","e":"renderTopicDomain(failedTopicDomains, false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"message","d":"variable","e":"duplicateTopicDomainMessage"},{"b":"variant","d":"string","e":"warn"},{"b":"details","d":"expression","e":"renderTopicDomain(duplicateTopicDomainEntries, true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"message","d":"expression","e":"en.eventApiProduct.labels.downloadInfo"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"expression","e":"\"error\""},{"b":"message","d":"variable","e":"conflictMessage"},{"b":"details","d":"expression","e":"getErrorDetails()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"message","d":"variable","e":"message"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"expression","e":"!!onClose"},{"b":"onClose","d":"variable","e":"onClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"message","d":"expression","e":"action?.label && !!action?.onClick ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{action.label}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)"},{"b":"variant","d":"string","e":"error"},{"b":"dense","d":"variable","e":"dense"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"message","d":"jsx","e":"{error}"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"dataQa","d":"expression","e":"`runtimeConfigurationBanner-${applicationVersion.id}`"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t{application.configuration.warningOutOfSync}\n\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"message","d":"expression","e":"`This ${pageID === PageID.eventSearchSchemas ? \"event\" : \"schema\"} is shared. Only shared schemas can be selected.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tAll versions of a Kafka event use the same topic address and use versions from the same schema object.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{\"Learn more about creating Kafka events\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => handleCloseInfoMessage()"},{"b":"dataQa","d":"string","e":"kafkaEventInfoBanner"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"All versions of an event have the same broker type. It cannot be changed after the event is created\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseBrokerTypeHelp"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"variable","e":"brokerTypeWarning"},{"b":"dense","d":"variable","e":"userHasEditorAccess"},{"b":"dataQa","d":"expression","e":"\"brokerTypeWarning\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"errors.event.shared.message"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"messages.credentials.configurationWarning"},{"b":"dataQa","d":"string","e":"configurationError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"onCloseError"},{"b":"dataQa","d":"string","e":"credentialsError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : \"You do not have access to this event.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? \"s\" : \"\"}. `}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t{renderWarningDetails()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"nonSharedEventWarning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"message","d":"expression","e":"messages.credentials.removeCredentialsWarning"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowUndeployedInformation(false)"},{"b":"message","d":"expression","e":"messages.add.addApplicationDescription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"NO_TOPIC_ADDRESS_MSG"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"NO_PUBLISHER_MSG"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"NO_MATCHED_SUBSCRIPTION"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"subEventVersionsErrorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"errorMessageForPubEvents"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"expression","e":"errorMessageForPubEvents || subEventVersionsErrorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"variable","e":"ADDITIONAL_CONSUMED_EVENTS_INFO"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setDismissAdditionalConsumedEventsInfo(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setDismissAdditionalConsumedEventsWarning(true)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"message","d":"variable","e":"errorMessageForAdditionalEvents"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)"},{"b":"onClose","d":"function","e":"() => setVersionIdWithDeletionError(null)"},{"b":"dataQa","d":"string","e":"deletionErrorMsgVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SCHEMA_TYPE_MISMATCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SHARED_VALUE_MISMATCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SCHEMA_VERSION_NOT_FOUND"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t setTriggerVersionDuplication(true)}>\n\t\t\t\t\t\t\t\t\t\tDuplicate Version\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"info"},{"b":"dense","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setShowImportedSchemaInfoBanner(false)"},{"b":"dataQa","d":"string","e":"editImportedSchemaWarning"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"schemaVersionReferencesError.message"},{"b":"dataQa","d":"string","e":"manageReferencedSchemasErrorText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"noOptionSelectedError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messages.info}\n\t\t\t\t\t\t\t{getWizardButton(\"text\", goToWizard, false)}\n\t\t\t\t\t\t"},{"b":"onClose","d":"function","e":"() => setShowMessageBox(false)"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"showIcon","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"messages.projectDefinition.guide"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`Returning to an earlier step will reset your progress. `"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"string","e":"Event management agent not connected to Event Portal. View logs for details."},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
{dataCollectionErrorMessage}
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tYour event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and\n\t\t\t\t\t\t\t\t\t\t\t\tre-add it to the modelled event mesh\n\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t handleDeleteMessagingService(selectedMessagingService)}>\n\t\t\t\t\t\t\t\t\t\t\t\t\tDelete From Event Portal\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
{renderDataCollectionError}
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t\tUnable to delete connection to {selectedMessagingService.name}. It is associated\n\t\t\t\t\t\t\t\t\t\t\twith one or more objects in the environment.\n\t\t\t\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"message"},{"b":"onClose","d":"variable","e":"closeInfoMsgBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\tModeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows\n\t\t\t\t\t\tbetween publishing and subscribing applications.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about modeled event meshes\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"onClose"},{"b":"dataQa","d":"string","e":"memInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"message","d":"string","e":"No differences found in the compared version configurations."},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t
{`${status} ${subStatus ?? \"\"}`}
\n\t\t\t\t\t\t\t{actionText && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t{actionIcon}\n\t\t\t\t\t\t\t\t\t\t{actionText}\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
"},{"b":"variant","d":"variable","e":"variant"},{"b":"showCloseButton","d":"boolean","e":"false"},{"b":"onClose","d":"variable","e":"onAuditImportDone"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"message","d":"variable","e":"AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","c":[{"b":"message","d":"string","e":"Resolve partial matches caused by runtime configuration changes by updating the event from the audit results."},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t
{errorMessage}
\n\t\t\t\t\t\t\t\t
"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"warn\""},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"warningInfoBoxMessage"},{"b":"details","d":"jsx","e":"\n\t\t\t\t\t\t\t{showServiceWarning && (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tChoose Event Broker\n\t\t\t\t\t\t\t\t\t{renderMessagingServiceSelect()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{showAuditResultTypeWarning ? \"Choose Audit Result Type\" : \"Selected Objects\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{renderSelectionStats()}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Objects that are already in Event Portal do not need to be imported again.\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"matchFoundMessage\""},{"b":"onClose","d":"variable","e":"handleCloseMatchFoundMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\tIf you plan to create objects on the event broker, consider to tag them as \n\t\t\t\t\t\t\tTo Be Created\n\t\t\t\t\t\t\t using the Quick Actions.\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"SCHEMA_NAME_DUPLICATION_MESSAGE"},{"b":"dataQa","d":"string","e":"duplicateNamesError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"message","d":"variable","e":"NONDRAFT_WARNING"},{"b":"variant","d":"expression","e":"\"info\""},{"b":"dataQa","d":"string","e":"nonDraftWarning"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"`Selected ${\n\t\t\t\t\tAUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]\n\t\t\t\t} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\tentityType\n\t\t\t\t)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"variable","e":"message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"EVENT_NAME_DUPLICATION_MESSAGE"},{"b":"dataQa","d":"string","e":"duplicateNamesError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tUnable to import \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{invalidAudits.length} of {audits.length} selected {auditEntityType}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeselect\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"dataQa","d":"string","e":"auditValidationErrorWithDeselect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`"},{"b":"dataQa","d":"string","e":"auditValidationError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"submitError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx","c":[{"b":"variant","d":"variable","e":"variantType"},{"b":"message","d":"variable","e":"_message"},{"b":"showCloseButton","d":"variable","e":"dismissible"},{"b":"onClose","d":"function","e":"() => handleMessageBoxOnClose(variantType)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t{eventManagementAgentResources.version.needUpgradePrompt}\n\t\t\t\t\t\n\t\t\t\t\t\t{eventManagementAgentResources.version.needUpgradeLinkText}\n\t\t\t\t\t\n\t\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\tYou can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those\n\t\t\t\t\t\t\t\t\t\tdatacenters.\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tView Datacenters\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setViewDatacentersInfoBanner(false)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"string","e":"One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to."},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"errorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"The next steps require you be on the system hosting the connected agent.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors.\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx","c":[{"b":"message","d":"string","e":"Event Management Agent installation setup complete"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx","c":[{"b":"message","d":"expression","e":"`Event Management agent ${emsStatus}`"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"\"Connection details updated. Download the file and run it with the Event Management Agent to update the connection.\""},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"closeInfoBox"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"submitError.message"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleErrorBoxClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Unable to create connections to Event Management Agents."}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"validationError.eventBrokerError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"message","d":"string","e":"The event broker must be in a modeled event mesh to receive runtime data or send configuration data."},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tUnable to delete connection to{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tselectedMessagingServices.filter((service) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted;\n\t\t\t\t\t\t\t\t\t\t\t})[0]?.name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t. It is associated with one or more objects in the environment.\n\t\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\tConnection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that\n\t\t\t\t\t\t\t\tthe agent connects to.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t handleDownloadConnectionFile(item.id, item.name)}>\n\t\t\t\t\t\t\t\t\t\tDownload Connection File\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
"},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{ConnectionStatusLabel.connectionIncomplete}\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tInstall the Event Management Agent and run the connection file to connect to Event Portal.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDownload and install the Event Management Agent.\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t"},{"b":"showCloseButton","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.kpiMetricsDashboard.appDomainFilterError"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tsetAppDomainFilterError(false);\n\t\t\t\t\t\t\t\t\tsetSelectedAppDomainId(\"all\");\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.kpiMetricsDashboard.tableFilterError"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\tsetTableFiltersError(false);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedSharedType(null);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedBrokerType(null);\n\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","c":[{"b":"message","d":"variable","e":"downErrorMessage"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"onClose","d":"function","e":"() => setShowDownError(false)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"dataQa","d":"string","e":"down_state_error_message"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error\n\t\t\t\t\t\t\t\t\t\t\t\t\t? en.connectors.labels.errorStateMessage\n\t\t\t\t\t\t\t\t\t\t\t\t\t: en.connectors.labels.downStateMessage}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error && (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? \"Unknown error\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.additionalSupportMessage}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"message","d":"expression","e":"en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? \"\")"},{"b":"variant","d":"expression","e":"\"info\""},{"b":"dataQa","d":"string","e":"deploying_state_message"},{"b":"showIcon","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"dataQa","d":"string","e":"max-header-count-info-msg"},{"b":"message","d":"expression","e":"en.connectors.labels.maxHeaderCountReached"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"message","d":"variable","e":"sourceTransformationGraphError"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"key","d":"expression","e":"`${direction}GraphError`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"message","d":"variable","e":"targetTransformationGraphError"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"key","d":"expression","e":"`${direction}GraphError`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"en.connectors.helperText.payloadMessage"},{"b":"onClose","d":"function","e":"() => setPayloadInfoDismissed(!payloadInfoDismissed)"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"message","d":"expression","e":"en.connectors.labels.reImportWarning(direction.toLowerCase())"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"message","d":"expression","e":"payloadMappingsValidationErrors.apiError"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorText"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"dataQa","d":"string","e":"max-header-count-info-msg"},{"b":"message","d":"expression","e":"en.connectors.labels.maxConstantCountReached"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx","c":[{"b":"message","d":"jsx","e":"{renderErrorMessages(step, validationErrors)}"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","c":[{"b":"message","d":"expression","e":"buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tinitialStepValidationErrors,\n\t\t\t\t\t\t\t\tvendorSourceDirection,\n\t\t\t\t\t\t\t\tfalse,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\""},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx","c":[{"b":"message","d":"expression","e":"buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tdetailsStepValidationErrors,\n\t\t\t\t\t\t\t\tisEqual(connectorTypeDetails.direction, ConnectorDirection.Source),\n\t\t\t\t\t\t\t\ttrue,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\""},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{errorMessageDetails ?? \"\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"variant","d":"expression","e":"\"error\""},{"b":"dataQa","d":"string","e":"error_message_box"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"message","d":"expression","e":"en.connectors.labels.stateInfoBanner(connectorState ?? \"\")"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"deploying_message_box"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"message","d":"variable","e":"error"},{"b":"onClose","d":"function","e":"() => setError(null)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx","c":[{"b":"variant","d":"variable","e":"type"},{"b":"message","d":"variable","e":"title"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_edit_msg_spool_info\", message: \"This change will not impact queue size.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_customize_msg_spool_info\", message: \"You cannot decrease the message spool size after creating the service, but you can increase it without service interruption.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"message","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"eventMesh.errorMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"warningMessage.join(\" \")"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Upgrade steps have failed. Contact Solace for support."}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_error_facilities\", message: \"At least one facility must be selected.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"pickMessage(isProfileConfigured, isAccessConfigured)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_error_deployment\", message: \"There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace.\" })"},{"b":"dataQa","d":"string","e":"disable-distributed-tracing-error"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_destination_out_of_date\", message: \"Tracing destination is out of date on this service.\" })"},{"b":"dataQa","d":"string","e":"event-broker-version-banner"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_error_retrieving_details\", message: \"An error occurred while retrieving Distributed Tracing details, please try again.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"enableDistributedTracingErrorMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"patchBrandingText(t({ id: \"id_dt_error_disabling\", message: \"An error occurred while disabling Distributed Tracing. For support, contact Solace.\" }))"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_dt_not_supported\", message: \"Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature.\" })"},{"b":"dataQa","d":"string","e":"event-broker-version-banner"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_configuration_progress\", message: \"Configuration in progress...\" })"},{"b":"dataQa","d":"string","e":"configuration-progress"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"message","d":"expression","e":"t({ id: \"id_collector_running\", message: \"Collector is running.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_collector_down\", message: \"Collector is down.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_retrieving_collector_status\", message: \"Retrieving collector status...\" })"},{"b":"dataQa","d":"string","e":"pending-collector-status"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"message","d":"expression","e":"t({ id: \"id_connection_service_active\", message: \"Connection to the service is active.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"brokerConnectionErrorMessage"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({ id: \"id_retrieving_service_status\", message: \"Retrieving service status...\" })"},{"b":"dataQa","d":"string","e":"pending-service-status"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_syslog_error\", message: \"Failed to retrieve the configuration for Syslog Forwarding.\" })"},{"b":"dataQa","d":"string","e":"syslog-error"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tPlan Upgrade\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{t({\n\t\t\t\t\t\t\t\tid: \"id_auto_upgrade_failed\",\n\t\t\t\t\t\t\t\tmessage: `Upgrade steps have failed. Contact Solace for support.`\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t setViewLogs(true)}>\n\t\t\t\t\t\t\t\tView Upgrade Logs\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\tSorry, a problem occurred trying to create your service.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Support Ticket\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({\n\t\t\t\t\t\t\t\t\tid: \"id_sso_out_of_sync\",\n\t\t\t\t\t\t\t\t\tmessage: \"The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details.\"\n\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"t({ id: \"id_warn_not_latest_version\", message: \"Consider using the latest version. (Recommended)\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"i18n._(meta.errorMessage)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"i18n._(meta.warningMessage)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"t({ id: \"id_error_max_spool_size\", message: \"Select a different region. You have reached your limits for this service.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"isSAP\n\t\t\t\t\t\t\t\t\t? t({\n\t\t\t\t\t\t\t\t\t\t\tid: \"id_error_limits_sap\",\n\t\t\t\t\t\t\t\t\t\t\tmessage: \"You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit.\"\n\t\t\t\t\t\t\t\t\t })\n\t\t\t\t\t\t\t\t\t: t({ id: \"id_error_limits\", message: \"Select another service type. You have either reached your limits, or the region does not support this service type.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"t({\n\t\t\t\t\tid: \"id_nodeport_info\",\n\t\t\t\t\tmessage: \"You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation.\"\n\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"showCloseButton","d":"variable","e":"showCloseButton"},{"b":"message","d":"variable","e":"error"},{"b":"onClose","d":"function","e":"() => setError(null)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} \n\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.brokerSsoSetup}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.viewSettings}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","c":[{"b":"message","d":"expression","e":"en.tokens.text.thisCannotBeUndone"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","c":[{"b":"message","d":"expression","e":"en.tokens.text.anyApplicationsOrScriptsUsingThisToken"},{"b":"variant","d":"expression","e":"\"warn\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{en.tokens.text.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.tokens.text.learnMore}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"info"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseInfoMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"en.viewMessageSpoolDetails.dialog.info"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"message","d":"expression","e":"userGroupManagement.noAdminMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t{userGroupManagement.saveChangesText}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{userGroupManagement.testAccess}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"message","d":"expression","e":"userGroupManagement.jitInfoMessage"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.environments.errors.duplicateName"},{"b":"showCloseButton","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.environments.createDialogLabels.error.typeRequired"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"expression","e":"en.environments.createDialogLabels.info.typeCannotBeChanged"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenTopInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenBottomInfoLearnMore}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
"},{"b":"dataQa","d":"string","e":"environmentFirstUseCardTop"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"variable","e":"handleCloseTopMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"messages.warning"},{"b":"dataQa","d":"string","e":"configurationTemplateWarning"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"deleteError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx","c":[{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t{en.environments.labels.deleteDialogMessage}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn more in the documentation\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"message","d":"expression","e":"en.forgotPassword.errorSendingResetEmail"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","c":[{"b":"message","d":"expression","e":"en.notifications.fetchingNotificationsErrorNotLoggedIn"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t{en.privateRegions.emaInfoBanner.title}{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.privateRegions.emaInfoBanner.linkText}\n\t\t\t\t\t\n\t\t\t\t"},{"b":"variant","d":"string","e":"info"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.learnMore}\n\t\t\t\t\n\t\t\t
"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{outOfSynchMessageBox.outOfDate({\n\t\t\t\t\t\t\t\t\toutOfSynchServices: outOfSynchServices.length,\n\t\t\t\t\t\t\t\t\tassociatedServices: associateServicesCount\n\t\t\t\t\t\t\t\t})}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setSynchTracingDialog(true)}>\n\t\t\t\t\t\t\t\t\t\t{outOfSynchMessageBox.viewServices}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"message","d":"expression","e":"tracingLimits.errorMessage.retrieve"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorRetrievingTracingLimits"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"message","d":"expression","e":"tracingProfile.errorMessage.delete"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorDeletingTracingDestination"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"message","d":"expression","e":"tracingProfile.errorMessage.retrieve"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorRetrievingTracingDestinations"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx","c":[{"b":"dataQa","d":"string","e":"failed-to-synch"},{"b":"key","d":"expression","e":"item.serviceId"},{"b":"message","d":"expression","e":"tracingSynchDialog.error(item.serviceName)"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.link.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"infoBox"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"message","d":"expression","e":"en.accountSettings.configNotComplete"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"message","d":"expression","e":"en.accountSettings.configNotYetApplied"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"en.overview.banner.WE_HIT_AN_ISSUE"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{text + \" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{link}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tI Agree\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.messages.editDeleteMessage"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.messages.editDeleteMessage"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.orgDetails.orgIdWarning"},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{` ${createBizOrganization.orgDetails.errorFound}`} \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.purchaseOrderRunbook}\n\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.contactPeTeam} \n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t{/*
\n\t\t\t\t\t\t\t\tContact PE\n\t\t\t\t\t\t\t
*/}\n\t\t\t\t\t\t
"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx","c":[{"b":"dataQa","d":"string","e":"successMsgBox"},{"b":"message","d":"expression","e":"createBizOrganization.orgDetails.organizationSaveSuccess"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.requests.successBannerMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.errorFound}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.messages.purchaseOrder}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPeTeam}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPE}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
"},{"b":"variant","d":"string","e":"error"},{"b":"dense","d":"boolean","e":"true"},{"b":"color","d":"expression","e":"theme.palette.error.light"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"message","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{createBizOrganization.products.products}\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.successMessage}\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"success"},{"b":"dataQa","d":"string","e":"prodValidatedMessageQa"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"message","d":"expression","e":"createBizOrganization.accountAdmins.successBannerMessage"},{"b":"variant","d":"string","e":"success"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"dataQa","d":"expression","e":"`deleting-${request.deploymentId}`"},{"b":"showIcon","d":"boolean","e":"false"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDeleting the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"expression","e":"`error-${request.deploymentId}`"},{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tFailed to delete the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setErrorDetails(`${request.deploymentId}-disable`)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Post-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{!lastValidation &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Pre-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{missingAttributes &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"!autoUpgrades && !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated and customer upgrades are disabled. No scheduled or immediate upgrades can take place.\"\n\t\t\t\t\t\t\t\t\t: !autoUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated upgrades are disabled. Customers can still trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Customer upgrades are disabled. Customers will not be able to trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Upgrade has been paused. Verify upgrade status before proceeding. In progress operations will complete."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"string","e":"Upgrade has been cancelled. In progress operations will complete."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"message","d":"expression","e":"\"For the latest Connector Details, please click the Connector Deployment Info Refresh icon.\""},{"b":"variant","d":"string","e":"warn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dataQa","d":"expression","e":"`${dataQa}Success`"},{"b":"variant","d":"string","e":"success"},{"b":"message","d":"expression","e":"successMessage || \"Success\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"dense","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"`${dataQa}Error`"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t{errorMessage || \"Validation failed. Please try again.\"}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t handleDetails(errorKey)}>\n\t\t\t\t\t\t\t\t\t\tMore Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"string","e":"Note: It can take several minutes for resources to be deployed to Datadog. Please wait before validating."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"dataQa","d":"string","e":"warnUpdateServicesPagination"},{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`This section updates services shown in current page ${currentPage}. To apply monitoring configurations to all services, make sure you run Update Services on all service pages.`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"string","e":"Note: solace-datadog-agent version cannot be overridden for k8s services"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"`${service.name}_agentStatusWarning`"},{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"expression","e":"`${warnings}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"dataQa","d":"expression","e":"`${service.name}_agentStatusError`"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"`${errors.filter(e => e && String(e).trim() !== '')}.`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\tNote: If this step fails because rbac is not enabled, please contact Datadog Support to enable\n\t\t\t\t\t\t\t\trbac for Datadog Sub-Org.\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: You may need to switch to the customer Sub-Org.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: It might take up to a minute for the log to be visible in Datadog.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tNote: Don’t enable PE profile for Insights onboarding. For RMMS consider\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnotifying to their handle.\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: It can take several minutes for resources to be deployed to Datadog. Please wait before\n\t\t\t\t\t\t\t\t\t\tvalidating.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"info"},{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\tNote: Insights policy should not be enabled for RMMS accounts.\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"ema.latestDeployment?.error?.message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"message","d":"variable","e":"errorMessage"},{"b":"showCloseButton","d":"boolean","e":"true"},{"b":"onClose","d":"function","e":"() => setErrorMessage(\"\")"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"releaseNotesError"},{"b":"message","d":"string","e":"Release Notes should be provided"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[{"b":"dataQa","d":"string","e":"errorDialog"},{"b":"variant","d":"string","e":"error"},{"b":"message","d":"expression","e":"error ? error : IN_USE_MESSAGE"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"dataQa","d":"string","e":"error"},{"b":"message","d":"variable","e":"error"},{"b":"variant","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"expression","e":"deleteDialog.contentText"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"message","d":"expression","e":"`Note: This page consists of private regions specific to ${orgId} organization.`"},{"b":"variant","d":"string","e":"info"},{"b":"dataQa","d":"string","e":"note"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"cloneError"},{"b":"message","d":"expression","e":"(error as Error)?.data?.message ?? `Failed to clone ${datacenterId} from ${selectedDatacenterId}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"sameDCError"},{"b":"message","d":"expression","e":"\"Unable to clone a datacenter from itself\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"warn"},{"b":"dataQa","d":"expression","e":"`deleting-${request.infrastructureId}`"},{"b":"showIcon","d":"boolean","e":"false"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeleting the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"expression","e":"`error-${request.infrastructureId}`"},{"b":"dense","d":"boolean","e":"true"},{"b":"message","d":"jsx","e":"
\n\t\t\t\t\t\t\t\t\tFailed to delete the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t\t setErrorDetails(request.infrastructureId)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx","c":[{"b":"message","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t"},{"b":"variant","d":"string","e":"error"},{"b":"dataQa","d":"string","e":"errorModifyingProfile"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"variant","d":"string","e":"success"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"successMessage"},{"b":"dataQa","d":"string","e":"successMsgBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"variant","d":"string","e":"error"},{"b":"showIcon","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"errorMessage"},{"b":"dataQa","d":"string","e":"errorMsgBox"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMessageBox/totalUsages.json b/mrc-usage-report-data/per-component/SolaceMessageBox/totalUsages.json new file mode 100644 index 000000000..2989c6c76 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMessageBox/totalUsages.json @@ -0,0 +1 @@ +283 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceMessageBox/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceMessageBox/usagesByMfe.json new file mode 100644 index 000000000..2836c6347 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceMessageBox/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":146,"intg":16,"mc":38,"saas":33,"maas-ops-react":50} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePageHeader/commonProps.json b/mrc-usage-report-data/per-component/SolacePageHeader/commonProps.json new file mode 100644 index 000000000..971e8c432 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePageHeader/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":20},{"name":"breadcrumbs","count":16},{"name":"environment","count":10},{"name":"borderTop","count":10},{"name":"actions","count":9},{"name":"subTitle","count":5},{"name":"release","count":3},{"name":"actionMenu","count":3},{"name":"tabs","count":3},{"name":"...","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePageHeader/customization.json b/mrc-usage-report-data/per-component/SolacePageHeader/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePageHeader/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePageHeader/files.json b/mrc-usage-report-data/per-component/SolacePageHeader/files.json new file mode 100644 index 000000000..789e3b7e5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePageHeader/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx","../../../maas-ui/micro-frontends/ep/src/pages/home/Home.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePageHeader/instances.json b/mrc-usage-report-data/per-component/SolacePageHeader/instances.json new file mode 100644 index 000000000..faf156368 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePageHeader/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx","c":[{"b":"...","d":"spread","e":"overrideProps"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx","c":[{"b":"...","d":"spread","e":"props"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/home/Home.tsx","c":[{"b":"title","d":"string","e":"Event Portal"},{"b":"breadcrumbs","d":"variable","e":"screenPath"},{"b":"dataQa","d":"string","e":"solace-header"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"title","d":"string","e":"Event Portal AI Designer"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]"},{"b":"release","d":"string","e":"EXPERIMENTAL"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"environment","d":"expression","e":"environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"title","d":"expression","e":"connectorDetails?.name ?? \"\""},{"b":"environment","d":"expression","e":"miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"jsx","e":""},{"b":"actions","d":"expression","e":"(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined"},{"b":"actionMenu","d":"jsx","e":",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"title","d":"expression","e":"`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`"},{"b":"breadcrumbs","d":"jsx","e":""},{"b":"environment","d":"expression","e":"miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.connectorFlows"},{"b":"environment","d":"expression","e":"selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined"},{"b":"borderTop","d":"expression","e":"selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined"},{"b":"actions","d":"expression","e":"[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"title","d":"expression","e":"connectorDetails?.name ?? \"\""},{"b":"environment","d":"expression","e":"miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"title","d":"expression","e":"en.agents.agents"},{"b":"environment","d":"expression","e":"selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined"},{"b":"borderTop","d":"expression","e":"selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined"},{"b":"actions","d":"expression","e":"[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })"},{"b":"subTitle","d":"expression","e":"t({ id: \"id_event_meshes\", message: \"Event Meshes\" })"},{"b":"release","d":"expression","e":"t({ id: \"id_beta\", message: \"BETA\" })"},{"b":"breadcrumbs","d":"array","e":"[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]"},{"b":"actions","d":"expression","e":"hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_compare_services\", message: \"Compare Services\" })"},{"b":"release","d":"expression","e":"t({ id: \"id_beta\", message: \"BETA\" })"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_service_details\", message: \"Service Details\" })"},{"b":"subTitle","d":"expression","e":"service?.name ?? \"...\""},{"b":"environment","d":"expression","e":"environment ? : undefined"},{"b":"borderTop","d":"expression","e":"environment?.bgColor"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]"},{"b":"actionMenu","d":"expression","e":"service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)"},{"b":"actions","d":"expression","e":"service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]"},{"b":"tabs","d":"jsx","e":" {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>
"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"title","d":"variable","e":"title"},{"b":"subTitle","d":"variable","e":"subTitle"},{"b":"environment","d":"expression","e":"environment ? : undefined"},{"b":"borderTop","d":"expression","e":"environment?.bgColor"},{"b":"breadcrumbs","d":"array","e":"[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"title","d":"expression","e":"t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })"},{"b":"subTitle","d":"expression","e":"t({ id: \"id_services\", message: \"Services\" })"},{"b":"environment","d":"expression","e":"selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined"},{"b":"borderTop","d":"expression","e":"selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined"},{"b":"breadcrumbs","d":"array","e":"[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]"},{"b":"actions","d":"expression","e":"hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"title","d":"string","e":"Page Title"},{"b":"environment","d":"jsx","e":""},{"b":"borderTop","d":"variable","e":"bgColor"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx","c":[{"b":"title","d":"expression","e":"en.accountDetails.userSettings.settings"},{"b":"tabs","d":"jsx","e":""}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"title","d":"expression","e":"\"Cluster\""},{"b":"subTitle","d":"expression","e":"isPending ? \"...\" : cluster?.name"},{"b":"breadcrumbs","d":"array","e":"[\n { title: \"Clusters\", link: \"/clusters\" },\n { title: \"Cluster Details\", link: `/clusters/${clusterId}/status`, current: true, progress: isPending },\n ]"},{"b":"actionMenu","d":"expression","e":"!!actionMenuItems && (\n ,\n }}\n key=\"cloudProviderLink\" >\n \n )"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx","c":[{"b":"title","d":"string","e":"Manage Upgrade Plans"},{"b":"breadcrumbs","d":"variable","e":"breadcrumbs"},{"b":"actions","d":"array","e":"[\n\t\t\t\t handleModal()}>\n\t\t\t\t\tCreate Plan\n\t\t\t\t\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx","c":[{"b":"title","d":"string","e":"Upgrades"},{"b":"breadcrumbs","d":"variable","e":"breadcrumbs"},{"b":"actions","d":"array","e":"[\n\t\t\t\t handlePlanRoute()} variant=\"text\" dataQa=\"create\">\n\t\t\t\t\tManage Upgrade Plans\n\t\t\t\t,\n\t\t\t\t\n\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx","c":[{"b":"title","d":"expression","e":"`Upgrade Run${runId ? `: ${runId}` : \"\"}`"},{"b":"breadcrumbs","d":"variable","e":"breadcrumbs"},{"b":"actions","d":"array","e":"[\n\t\t\t\t\t
\n\t\t\t\t\t\t{renderButton(\"Resume\", () => handleAction(resumeUpgradeRun), \"text\", status === \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Pause\", () => openModal(\"pause\"), \"text\", status !== \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Cancel\", () => openModal(\"cancel\"), \"outline\", true)}\n\t\t\t\t\t
\n\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","c":[{"b":"title","d":"expression","e":"integrationStrings.mainPage.pageTitle"},{"b":"breadcrumbs","d":"jsx","e":""},{"b":"tabs","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePageHeader/totalUsages.json b/mrc-usage-report-data/per-component/SolacePageHeader/totalUsages.json new file mode 100644 index 000000000..8fdd954df --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePageHeader/totalUsages.json @@ -0,0 +1 @@ +22 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePageHeader/usagesByMfe.json b/mrc-usage-report-data/per-component/SolacePageHeader/usagesByMfe.json new file mode 100644 index 000000000..42a005869 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePageHeader/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":4,"intg":6,"mc":5,"saas":2,"infra":1,"maas-ops-react":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePagination/commonProps.json b/mrc-usage-report-data/per-component/SolacePagination/commonProps.json new file mode 100644 index 000000000..3f4914ac6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePagination/commonProps.json @@ -0,0 +1 @@ +[{"name":"totalResults","count":46},{"name":"pageSize","count":46},{"name":"activePage","count":46},{"name":"onPageSelection","count":46},{"name":"loading","count":12},{"name":"displayText","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePagination/customization.json b/mrc-usage-report-data/per-component/SolacePagination/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePagination/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePagination/files.json b/mrc-usage-report-data/per-component/SolacePagination/files.json new file mode 100644 index 000000000..5dd888080 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePagination/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePagination/instances.json b/mrc-usage-report-data/per-component/SolacePagination/instances.json new file mode 100644 index 000000000..5dbe5dfa8 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePagination/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"totalResults","d":"expression","e":"tableRows.length"},{"b":"pageSize","d":"variable","e":"PAGE_SIZE"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"totalResults","d":"expression","e":"requests.length"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"},{"b":"displayText","d":"expression","e":"\"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"totalResults","d":"variable","e":"entityCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"applicationVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"applicationCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setApplicationCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"eventVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"eventCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setEventCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"schemaVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"schemaCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setSchemaCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"totalResults","d":"variable","e":"eventApiProductVersionsCount"},{"b":"pageSize","d":"number","e":"20"},{"b":"activePage","d":"variable","e":"eapCurrentPage"},{"b":"onPageSelection","d":"variable","e":"setEapCurrentPage"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityVersionsCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPageNumber"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityVersionsCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPageNumber"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx","c":[{"b":"totalResults","d":"variable","e":"entityVersionsCount"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"currentPageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPageNumber"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","c":[{"b":"activePage","d":"expression","e":"pagination?.pageNumber"},{"b":"onPageSelection","d":"variable","e":"setCurrentPage"},{"b":"pageSize","d":"expression","e":"pagination?.pageSize"},{"b":"totalResults","d":"expression","e":"pagination?.count"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"totalResults","d":"expression","e":"meta.pagination.count ?? 0"},{"b":"pageSize","d":"expression","e":"meta.pagination.pageSize"},{"b":"activePage","d":"expression","e":"meta.pagination.pageNumber"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"totalResults","d":"expression","e":"meta.pagination.count ?? 0"},{"b":"pageSize","d":"expression","e":"meta.pagination.pageSize"},{"b":"activePage","d":"expression","e":"meta.pagination.pageNumber"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"expression","e":"pagination.pageNumber + 1"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"function","e":"() => 1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"number","e":"1"},{"b":"pageSize","d":"number","e":"100"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"expression","e":"pagination.pageNumber"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"displayText","d":"expression","e":"t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })"},{"b":"activePage","d":"expression","e":"pagination.pageNumber"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"activePage","d":"expression","e":"meta?.pagination.pageNumber + 1"},{"b":"onPageSelection","d":"function","e":"(page) => fetchNewPage(page)"},{"b":"totalResults","d":"expression","e":"meta?.pagination.totalHitCount"},{"b":"pageSize","d":"expression","e":"meta?.pagination.pageSize"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"activePage","d":"number","e":"1"},{"b":"pageSize","d":"number","e":"10"},{"b":"totalResults","d":"expression","e":"rows.length"},{"b":"onPageSelection","d":"function","e":"() => undefined"},{"b":"loading","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"activePage","d":"expression","e":"notificationsResponse?.meta?.pageNumber + 1"},{"b":"onPageSelection","d":"function","e":"(page) => {\n\t\t\t\t\t\t\t\t\tsetPageNumber(page);\n\t\t\t\t\t\t\t\t}"},{"b":"totalResults","d":"expression","e":"notificationsResponse?.meta?.count"},{"b":"pageSize","d":"expression","e":"notificationsResponse?.meta?.pageSize"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"activePage","d":"variable","e":"userTablePage"},{"b":"pageSize","d":"variable","e":"USER_LIST_DATA_PER_PAGE"},{"b":"totalResults","d":"expression","e":"pageCount || 0"},{"b":"onPageSelection","d":"function","e":"(page) => setUserTablePage(page)"},{"b":"loading","d":"boolean","e":"false"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","c":[{"b":"totalResults","d":"variable","e":"totalCount"},{"b":"activePage","d":"variable","e":"currentPage"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"loading","d":"variable","e":"isPending"},{"b":"onPageSelection","d":"variable","e":"handlePageChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"totalResults","d":"variable","e":"totalClusterLength"},{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"onPageSelection","d":"variable","e":"handlePageChange"},{"b":"loading","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"variable","e":"connectorCount"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\tsetConnectorQuery(queryBuilder({ orgId, pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t}"},{"b":"loading","d":"expression","e":"isLoading && isLoadingMicroIntegrations && isLoadingAgents"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => setPageNumber(selectedPage)"},{"b":"loading","d":"variable","e":"loadingJobs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"variable","e":"totalResults"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => setPageNumber(selectedPage)"},{"b":"loading","d":"variable","e":"loadingOrgs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"pageNumber"},{"b":"totalResults","d":"variable","e":"jobsCount"},{"b":"onPageSelection","d":"function","e":"(page) => setPageNumber(page)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","c":[{"b":"totalResults","d":"expression","e":"paginationData?.count"},{"b":"activePage","d":"expression","e":"paginationData?.pageNumber"},{"b":"pageSize","d":"expression","e":"paginationData?.pageSize"},{"b":"onPageSelection","d":"variable","e":"setPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[{"b":"totalResults","d":"expression","e":"getMetadata().count"},{"b":"pageSize","d":"expression","e":"getMetadata().pageSize"},{"b":"activePage","d":"variable","e":"selectedPage"},{"b":"onPageSelection","d":"variable","e":"onSelectPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"activePage","d":"expression","e":"(adminServiceResponse?.meta?.pageNumber ?? -1) + 1"},{"b":"pageSize","d":"expression","e":"adminServiceResponse?.meta?.pageSize ?? 20"},{"b":"totalResults","d":"expression","e":"adminServiceResponse?.meta?.count ?? 0"},{"b":"loading","d":"variable","e":"adminServiceResponseIsLoading"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\tsetPageNumber(selectedPage - 1);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"totalResults","d":"expression","e":"paginationData.total"},{"b":"activePage","d":"expression","e":"paginationData.currentPage"},{"b":"pageSize","d":"expression","e":"paginationData.pageSize"},{"b":"onPageSelection","d":"variable","e":"handlePageChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"activePage","d":"variable","e":"activePage"},{"b":"onPageSelection","d":"variable","e":"setActivePage"},{"b":"pageSize","d":"expression","e":"pagination?.pageSize"},{"b":"totalResults","d":"expression","e":"pagination?.count"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"activePage","d":"variable","e":"activePage"},{"b":"loading","d":"variable","e":"managementAgentsIsLoading"},{"b":"onPageSelection","d":"variable","e":"setActivePage"},{"b":"pageSize","d":"expression","e":"pagination.pageSize"},{"b":"totalResults","d":"expression","e":"pagination.count"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"activePage","d":"variable","e":"page"},{"b":"totalResults","d":"expression","e":"tableRows.length"},{"b":"loading","d":"variable","e":"loadingServicePackages"},{"b":"onPageSelection","d":"variable","e":"handlePageSelection"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"totalResults","d":"expression","e":"paginationData.total"},{"b":"activePage","d":"expression","e":"paginationData.currentPage"},{"b":"pageSize","d":"expression","e":"paginationData.pageSize"},{"b":"onPageSelection","d":"variable","e":"onSelectDifferentPage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"activePage","d":"expression","e":"brokerCompatibility?.meta?.pageNumber ?? 0"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"expression","e":"brokerCompatibility?.meta?.count ?? 0"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetBrokerQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"brokerCompatibilityIsLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"activePage","d":"expression","e":"helmChartCompatibility?.meta?.pageNumber ?? 0"},{"b":"pageSize","d":"variable","e":"pageSize"},{"b":"totalResults","d":"expression","e":"helmChartCompatibility?.meta?.count ?? 0"},{"b":"onPageSelection","d":"function","e":"(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetHelmChartQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"brokerCompatibilityIsLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePagination/totalUsages.json b/mrc-usage-report-data/per-component/SolacePagination/totalUsages.json new file mode 100644 index 000000000..abc4eff6a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePagination/totalUsages.json @@ -0,0 +1 @@ +46 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePagination/usagesByMfe.json b/mrc-usage-report-data/per-component/SolacePagination/usagesByMfe.json new file mode 100644 index 000000000..0bb007048 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePagination/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":17,"intg":2,"mc":4,"saas":6,"infra":2,"maas-ops-react":15} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePicker/commonProps.json b/mrc-usage-report-data/per-component/SolacePicker/commonProps.json new file mode 100644 index 000000000..da0598a58 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePicker/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":13},{"name":"variant","count":13},{"name":"value","count":13},{"name":"onChange","count":13},{"name":"icons","count":12},{"name":"dataQa","count":11},{"name":"label","count":11},{"name":"numOfItemsPerRow","count":11},{"name":"iconKeyOrderedList","count":10},{"name":"inlineLabel","count":9}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePicker/customization.json b/mrc-usage-report-data/per-component/SolacePicker/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePicker/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePicker/files.json b/mrc-usage-report-data/per-component/SolacePicker/files.json new file mode 100644 index 000000000..1c9111952 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePicker/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePicker/instances.json b/mrc-usage-report-data/per-component/SolacePicker/instances.json new file mode 100644 index 000000000..4e8f2f41c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePicker/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"applicationColorPicker"},{"b":"dataQa","d":"string","e":"applicationColorPicker"},{"b":"label","d":"expression","e":"\"Application Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"applicationColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedAppColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedAppColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"eventColorPicker"},{"b":"dataQa","d":"string","e":"eventColorPicker"},{"b":"label","d":"expression","e":"\"Event Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"eventColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedEventColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedEventColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"domainColorPicker"},{"b":"dataQa","d":"string","e":"domainColorPicker"},{"b":"label","d":"expression","e":"\"Domain Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"domainColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedDomainColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedDomainColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"iconPicker"},{"b":"dataQa","d":"string","e":"iconPicker"},{"b":"label","d":"expression","e":"\"Select App Icon\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"filteredIcons"},{"b":"iconKeyOrderedList","d":"expression","e":"selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys"},{"b":"value","d":"variable","e":"selectedIconValue"},{"b":"onChange","d":"function","e":"(event) => setSelectedIconValue(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"6"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"autoFocusItem","d":"variable","e":"autoFocusItem"},{"b":"contentControlPanel","d":"variable","e":"contentControlPanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"themePicker"},{"b":"label","d":"expression","e":"\"Select Color Theme\""},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"applicationColorBlocks"},{"b":"value","d":"variable","e":"selectedAppColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedAppColorVariation(event.value)"},{"b":"dataQa","d":"string","e":"themePicker"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"applicationColorPicker"},{"b":"dataQa","d":"string","e":"applicationColorPicker"},{"b":"label","d":"expression","e":"\"Application Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"applicationColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedAppColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedAppColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"eventColorPicker"},{"b":"dataQa","d":"string","e":"eventColorPicker"},{"b":"label","d":"expression","e":"\"Event Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"eventColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedEventColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedEventColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"domainColorPicker"},{"b":"dataQa","d":"string","e":"domainColorPicker"},{"b":"label","d":"expression","e":"\"Domain Color\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"domainColorBlocks"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"value","d":"variable","e":"selectedDomainColorVariation"},{"b":"onChange","d":"function","e":"(event) => setSelectedDomainColorVariation(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"iconPicker"},{"b":"dataQa","d":"string","e":"iconPicker"},{"b":"label","d":"expression","e":"\"Select App Icon\""},{"b":"inlineLabel","d":"boolean","e":"false"},{"b":"variant","d":"expression","e":"\"icons\""},{"b":"icons","d":"variable","e":"filteredIcons"},{"b":"iconKeyOrderedList","d":"expression","e":"selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys"},{"b":"value","d":"variable","e":"selectedIconValue"},{"b":"onChange","d":"function","e":"(event) => setSelectedIconValue(event.value)"},{"b":"numOfItemsPerRow","d":"number","e":"6"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"autoFocusItem","d":"variable","e":"autoFocusItem"},{"b":"contentControlPanel","d":"variable","e":"contentControlPanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"dataQa","d":"expression","e":"`${entityType}-customColour-picker`"},{"b":"name","d":"variable","e":"name"},{"b":"iconKeyOrderedList","d":"variable","e":"SupportedNodeColorVariations"},{"b":"icons","d":"variable","e":"entityColourBlocks"},{"b":"numOfItemsPerRow","d":"number","e":"3"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"variant","d":"string","e":"icons"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx","c":[{"b":"dataQa","d":"expression","e":"`${entityType}-customIconLogo-picker`"},{"b":"name","d":"variable","e":"name"},{"b":"icons","d":"variable","e":"filteredIcons"},{"b":"iconKeyOrderedList","d":"expression","e":"selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys"},{"b":"numOfItemsPerRow","d":"number","e":"6"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"variant","d":"string","e":"icons"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"autoFocusItem","d":"variable","e":"autoFocusItem"},{"b":"emptyStateMessage","d":"expression","e":"\"No Results Found\""},{"b":"contentControlPanel","d":"variable","e":"contentControlPanel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"name","d":"string","e":"color"},{"b":"label","d":"string","e":"Color"},{"b":"variant","d":"string","e":"colors"},{"b":"value","d":"expression","e":"dialogState.color"},{"b":"onChange","d":"variable","e":"handleEnvColorChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"name","d":"string","e":"icon"},{"b":"label","d":"string","e":"Icon"},{"b":"variant","d":"string","e":"icons"},{"b":"value","d":"expression","e":"dialogState.icon"},{"b":"onChange","d":"variable","e":"handleEnvIconChange"},{"b":"icons","d":"variable","e":"Icons24"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePicker/totalUsages.json b/mrc-usage-report-data/per-component/SolacePicker/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePicker/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePicker/usagesByMfe.json b/mrc-usage-report-data/per-component/SolacePicker/usagesByMfe.json new file mode 100644 index 000000000..c0ba86a32 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePicker/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":11,"saas":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePopover/commonProps.json b/mrc-usage-report-data/per-component/SolacePopover/commonProps.json new file mode 100644 index 000000000..a9194972d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePopover/commonProps.json @@ -0,0 +1 @@ +[{"name":"maxWidth","count":6},{"name":"title","count":6},{"name":"placement","count":5},{"name":"id","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePopover/customization.json b/mrc-usage-report-data/per-component/SolacePopover/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePopover/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePopover/files.json b/mrc-usage-report-data/per-component/SolacePopover/files.json new file mode 100644 index 000000000..0afee0dd6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePopover/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePopover/instances.json b/mrc-usage-report-data/per-component/SolacePopover/instances.json new file mode 100644 index 000000000..a77f3c9da --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePopover/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx","c":[{"b":"maxWidth","d":"string","e":"full"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"title","d":"expression","e":"handleHover(connectorType)"},{"b":"placement","d":"string","e":"bottom"},{"b":"id","d":"expression","e":"`connector-card-popover-${connectorType.id}`"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"title","d":"expression","e":"handleHover(connectorType)"},{"b":"placement","d":"string","e":"bottom"},{"b":"id","d":"expression","e":"`connector-card-popover-${connectorType.id}`"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePopover/totalUsages.json b/mrc-usage-report-data/per-component/SolacePopover/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePopover/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolacePopover/usagesByMfe.json b/mrc-usage-report-data/per-component/SolacePopover/usagesByMfe.json new file mode 100644 index 000000000..a02300e74 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolacePopover/usagesByMfe.json @@ -0,0 +1 @@ +{"intg":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadio/commonProps.json b/mrc-usage-report-data/per-component/SolaceRadio/commonProps.json new file mode 100644 index 000000000..efc973c60 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadio/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":28},{"name":"name","count":28},{"name":"value","count":26},{"name":"dataQa","count":16},{"name":"key","count":14},{"name":"disabled","count":8},{"name":"id","count":7},{"name":"subText","count":5},{"name":"checked","count":4},{"name":"onChange","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadio/customization.json b/mrc-usage-report-data/per-component/SolaceRadio/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadio/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadio/files.json b/mrc-usage-report-data/per-component/SolaceRadio/files.json new file mode 100644 index 000000000..e3db047de --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadio/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadio/instances.json b/mrc-usage-report-data/per-component/SolaceRadio/instances.json new file mode 100644 index 000000000..647429d28 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadio/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"label","d":"expression","e":"\"Existing Application\""},{"b":"name","d":"string","e":"existingApplication"},{"b":"value","d":"expression","e":"\"false\""},{"b":"dataQa","d":"string","e":"existingApplication"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"label","d":"expression","e":"\"New Application\""},{"b":"name","d":"string","e":"newApplication"},{"b":"value","d":"expression","e":"\"true\""},{"b":"dataQa","d":"string","e":"newApplication"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","c":[{"b":"key","d":"expression","e":"option.value"},{"b":"name","d":"expression","e":"option.value"},{"b":"value","d":"expression","e":"option.value"},{"b":"label","d":"expression","e":"option.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"key","d":"variable","e":"key"},{"b":"name","d":"variable","e":"key"},{"b":"value","d":"variable","e":"key"},{"b":"label","d":"expression","e":"brokerTypeLabel[key]"},{"b":"disabled","d":"expression","e":"!allowChangeBrokerType"},{"b":"dataQa","d":"expression","e":"`brokerType[${key}]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"en.eventApi.labels.json"},{"b":"name","d":"string","e":"json"},{"b":"value","d":"string","e":"json"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"en.eventApi.labels.yaml"},{"b":"name","d":"string","e":"yaml"},{"b":"value","d":"string","e":"yaml"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"key","d":"variable","e":"value"},{"b":"name","d":"variable","e":"value"},{"b":"value","d":"variable","e":"value"},{"b":"label","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`schemaType[${value}]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"label","d":"expression","e":"\"Add to Existing Consumer\""},{"b":"name","d":"string","e":"existingConsumer"},{"b":"value","d":"expression","e":"\"existingConsumer\""},{"b":"dataQa","d":"string","e":"existingConsumer"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"label","d":"expression","e":"\"Create New Consumer\""},{"b":"name","d":"string","e":"newConsumer"},{"b":"value","d":"expression","e":"\"newConsumer\""},{"b":"dataQa","d":"string","e":"newConsumer"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"key","d":"expression","e":"option.value"},{"b":"name","d":"expression","e":"option.value"},{"b":"value","d":"expression","e":"option.value"},{"b":"label","d":"expression","e":"option.label"},{"b":"subText","d":"expression","e":"option.subText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"disabled","d":"variable","e":"disabled"},{"b":"key","d":"expression","e":"`messagingService-${item.id}`"},{"b":"label","d":"jsx","e":" handleServiceAccordionControl(item.id)}\n\t\t\t\t\t\t\t\tdetails={renderAccordionDetail(item)}\n\t\t\t\t\t\t\t\tsummary={\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t/>"},{"b":"name","d":"expression","e":"item.id"},{"b":"value","d":"expression","e":"item.id"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"checked","d":"expression","e":"resultPerPage === pageSize"},{"b":"onChange","d":"function","e":"() => handleResultsPerPageChange(resultPerPage)"},{"b":"key","d":"expression","e":"`resultsPerPage_${resultPerPage}`"},{"b":"name","d":"string","e":"resultsPerPage"},{"b":"value","d":"expression","e":"`${resultPerPage}`"},{"b":"label","d":"expression","e":"`${resultPerPage}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"key","d":"expression","e":"`selectResultTypeOption_${resultType}`"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{auditResultTypeCount}\n\t\t\t\t\t\t\t\t\t{AUDIT_RESULT_CHIPS[resultType]}\n\t\t\t\t\t\t\t\t\t{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}\n\t\t\t\t\t\t\t\t"},{"b":"name","d":"variable","e":"resultType"},{"b":"value","d":"variable","e":"resultType"},{"b":"disabled","d":"expression","e":"auditResultTypeCount === 0 || isLoading"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanTrue"},{"b":"name","d":"string","e":"constantBooleanTrue"},{"b":"value","d":"expression","e":"\"true\""},{"b":"dataQa","d":"string","e":"constantBooleanTrue"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanFalse"},{"b":"name","d":"string","e":"constantBooleanFalse"},{"b":"value","d":"expression","e":"\"false\""},{"b":"dataQa","d":"string","e":"constantBooleanFalse"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanTrue"},{"b":"name","d":"string","e":"constantBooleanTrue"},{"b":"value","d":"expression","e":"\"true\""},{"b":"dataQa","d":"string","e":"constantBooleanTrue"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"label","d":"expression","e":"en.connectors.labels.constantBooleanFalse"},{"b":"name","d":"string","e":"constantBooleanFalse"},{"b":"value","d":"expression","e":"\"false\""},{"b":"dataQa","d":"string","e":"constantBooleanFalse"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"name","d":"string","e":"endpointsSelector"},{"b":"dataQa","d":"expression","e":"`\"endpointsSelector\"[${id}]`"},{"b":"label","d":"variable","e":"label"},{"b":"lightSubText","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"id"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"name","d":"string","e":"systemType"},{"b":"dataQa","d":"expression","e":"`systemType[${id}]`"},{"b":"label","d":"variable","e":"label"},{"b":"subText","d":"variable","e":"subText"},{"b":"lightSubText","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"id"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"name","d":"string","e":"serviceType"},{"b":"dataQa","d":"expression","e":"`serviceType[${id}]`"},{"b":"label","d":"variable","e":"label"},{"b":"subText","d":"variable","e":"subText"},{"b":"lightSubText","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"id"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"label","d":"expression","e":"i18n._(label)"},{"b":"name","d":"variable","e":"option"},{"b":"checked","d":"variable","e":"checked"},{"b":"onChange","d":"expression","e":"handleMenuClick[index]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx","c":[{"b":"key","d":"variable","e":"id"},{"b":"id","d":"variable","e":"id"},{"b":"label","d":"expression","e":"i18n._(label)"},{"b":"name","d":"variable","e":"option"},{"b":"checked","d":"variable","e":"checked"},{"b":"onChange","d":"expression","e":"handleMenuClick[index]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"key","d":"string","e":"nonprod"},{"b":"id","d":"string","e":"nonprod"},{"b":"value","d":"expression","e":"\"false\""},{"b":"name","d":"string","e":"isProduction"},{"b":"label","d":"variable","e":"nonProductionLabel"},{"b":"subText","d":"expression","e":"en.environments.labels.nonProdSubText"},{"b":"disabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"key","d":"string","e":"prod"},{"b":"id","d":"string","e":"prod"},{"b":"value","d":"expression","e":"\"true\""},{"b":"name","d":"string","e":"isProduction"},{"b":"label","d":"variable","e":"productionLabel"},{"b":"subText","d":"expression","e":"en.environments.labels.prodSubText"},{"b":"disabled","d":"variable","e":"isDisabled"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"checked","d":"expression","e":"resultPerPage === selectedPageSize"},{"b":"onChange","d":"function","e":"() => handleResultsPerPageChange(resultPerPage)"},{"b":"key","d":"expression","e":"`resultsPerPage_${resultPerPage}`"},{"b":"name","d":"string","e":"resultsPerPage"},{"b":"value","d":"expression","e":"`${resultPerPage}`"},{"b":"label","d":"expression","e":"`${resultPerPage}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Upgrade"},{"b":"name","d":"string","e":"Upgrade"},{"b":"value","d":"expression","e":"CollectorModificationAction.UPGRADE"},{"b":"dataQa","d":"string","e":"upgrade"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Rollback"},{"b":"name","d":"string","e":"Rollback"},{"b":"value","d":"expression","e":"CollectorModificationAction.ROLLBACK"},{"b":"dataQa","d":"string","e":"rollback"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Redeploy"},{"b":"name","d":"string","e":"Redeploy"},{"b":"value","d":"expression","e":"CollectorModificationAction.REDEPLOY"},{"b":"dataQa","d":"string","e":"redeploy"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadio/totalUsages.json b/mrc-usage-report-data/per-component/SolaceRadio/totalUsages.json new file mode 100644 index 000000000..368f89cee --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadio/totalUsages.json @@ -0,0 +1 @@ +28 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadio/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceRadio/usagesByMfe.json new file mode 100644 index 000000000..286ec03c9 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadio/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":13,"intg":4,"mc":5,"saas":3,"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadioGroup/commonProps.json b/mrc-usage-report-data/per-component/SolaceRadioGroup/commonProps.json new file mode 100644 index 000000000..da829be99 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadioGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":16},{"name":"onChange","count":16},{"name":"value","count":15},{"name":"id","count":13},{"name":"inline","count":9},{"name":"dataQa","count":4},{"name":"hasErrors","count":3},{"name":"helperText","count":3},{"name":"required","count":3},{"name":"label","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadioGroup/customization.json b/mrc-usage-report-data/per-component/SolaceRadioGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadioGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadioGroup/files.json b/mrc-usage-report-data/per-component/SolaceRadioGroup/files.json new file mode 100644 index 000000000..c5e52f693 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadioGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadioGroup/instances.json b/mrc-usage-report-data/per-component/SolaceRadioGroup/instances.json new file mode 100644 index 000000000..a0581c333 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadioGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"applicationRadioGroup"},{"b":"name","d":"string","e":"applicationRadioGroup"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetIsNewApplication(e.value === \"true\");\n\t\t\t\t\t}"},{"b":"value","d":"expression","e":"isNewApplication ? \"true\" : \"false\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx","c":[{"b":"name","d":"expression","e":"radioGroupName ?? \"customhookRadioGroup\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"variable","e":"label"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg"},{"b":"helperText","d":"variable","e":"validationErrorMsg"},{"b":"required","d":"boolean","e":"true"},{"b":"inline","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"brokerTypeRadioButtons\""},{"b":"name","d":"expression","e":"\"brokerTypeRadioButtons\""},{"b":"value","d":"variable","e":"brokerType"},{"b":"inline","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tsetBrokerType(e.value);\n\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"id","d":"string","e":"downloadFormatRadioGroup"},{"b":"label","d":"expression","e":"en.eventApi.labels.format"},{"b":"name","d":"string","e":"downloadFormatRadioGroup"},{"b":"inline","d":"boolean","e":"false"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetFormat(e.value as SupportedAsyncApiDownloadFormat);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}"},{"b":"stackLabel","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"format"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx","c":[{"b":"id","d":"expression","e":"\"SchemaTypeRadioButtons\""},{"b":"name","d":"expression","e":"\"SchemaTypeRadioButtons\""},{"b":"value","d":"expression","e":"schemaInfo?.schemaType"},{"b":"inline","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"addSubscriptionRadioGroup"},{"b":"name","d":"string","e":"addSubscriptionRadioGroup"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tsetMode(e.value);\n\t\t\t\t\t\t\tresetField(\"consumerId\");\n\t\t\t\t\t\t\tresetField(\"consumerName\");\n\t\t\t\t\t\t\tresetField(\"consumerType\");\n\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"mode"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"name","d":"string","e":"review"},{"b":"onChange","d":"variable","e":"handleReviewChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"id","d":"string","e":"messagingServiceSelectorRadioGroup"},{"b":"name","d":"string","e":"messagingServiceRadioGroup"},{"b":"value","d":"variable","e":"selectedMessagingService"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tsetSelectedMessagingService(e.value);\n\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"id","d":"string","e":"selectResultTypeRadioGroup"},{"b":"name","d":"string","e":"selectResultTypeRadioGroup"},{"b":"onChange","d":"variable","e":"handleAuditResultTypeChange"},{"b":"value","d":"variable","e":"auditResultTypeToImport"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"constant-radio-group"},{"b":"name","d":"string","e":"constantValue"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"constantValue ? \"true\" : \"false\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"inline","d":"boolean","e":"true"},{"b":"id","d":"string","e":"constant-radio-group"},{"b":"name","d":"string","e":"constantValue"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"constantField.constantValue ? \"true\" : \"false\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx","c":[{"b":"id","d":"string","e":"endpointsSelector"},{"b":"name","d":"string","e":"endpointsSelector"},{"b":"dataQa","d":"string","e":"endpointsSelector"},{"b":"value","d":"variable","e":"endpointsSelector"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx","c":[{"b":"id","d":"string","e":"serviceType"},{"b":"name","d":"string","e":"serviceType"},{"b":"dataQa","d":"string","e":"serviceType"},{"b":"value","d":"variable","e":"serviceType"},{"b":"onChange","d":"variable","e":"handleServiceTypeChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx","c":[{"b":"id","d":"string","e":"systemType"},{"b":"name","d":"string","e":"systemType"},{"b":"dataQa","d":"string","e":"systemType"},{"b":"value","d":"variable","e":"systemType"},{"b":"onChange","d":"variable","e":"handleSystemTypeChange"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"id","d":"string","e":"isProduction"},{"b":"name","d":"string","e":"isProduction"},{"b":"required","d":"boolean","e":"true"},{"b":"bold","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"getIsProductionValue(dialogState.isProduction)"},{"b":"onChange","d":"variable","e":"handleEnvProductionChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"name","d":"string","e":"collectorRadioGroup"},{"b":"value","d":"variable","e":"action"},{"b":"onChange","d":"function","e":"(event) => dispatch(setAction(event.value))"},{"b":"inline","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadioGroup/totalUsages.json b/mrc-usage-report-data/per-component/SolaceRadioGroup/totalUsages.json new file mode 100644 index 000000000..19c7bdba7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadioGroup/totalUsages.json @@ -0,0 +1 @@ +16 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceRadioGroup/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceRadioGroup/usagesByMfe.json new file mode 100644 index 000000000..178e6edcf --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceRadioGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":9,"intg":2,"mc":3,"saas":1,"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceResponsiveItemList/commonProps.json b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/commonProps.json new file mode 100644 index 000000000..d37d1de82 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/commonProps.json @@ -0,0 +1 @@ +[{"name":"containerWidth","count":7},{"name":"items","count":7},{"name":"showAll","count":7},{"name":"numOfRowsToShow","count":5},{"name":"onItemsRendered","count":5},{"name":"onItemsOverflow","count":5},{"name":"onItemsOverflowIndicatorClick","count":5},{"name":"dataQa","count":5},{"name":"columnGap","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceResponsiveItemList/customization.json b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceResponsiveItemList/files.json b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/files.json new file mode 100644 index 000000000..075363e42 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceResponsiveItemList/instances.json b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/instances.json new file mode 100644 index 000000000..2df32834a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"containerWidth","d":"variable","e":"filterContainerWidth"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"filterContainerWidth"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"filterContainerWidth"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"items","d":"expression","e":"displayedEnvironments.map((env) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t option.value === env.id)}\n\t\t\t\t\t\t\t\t\thasTooltip={true}\n\t\t\t\t\t\t\t\t\tdataQa={env.id}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t};\n\t\t\t\t\t})"},{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"showAll","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"items","d":"expression","e":"displayedEnvironments.map((env) => {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})"},{"b":"columnGap","d":"number","e":"8"},{"b":"showAll","d":"boolean","e":"false"},{"b":"containerWidth","d":"expression","e":"containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"containerWidth","d":"number","e":"600"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"containerWidth","d":"number","e":"600"},{"b":"items","d":"variable","e":"filterChips"},{"b":"showAll","d":"expression","e":"!!showFilterSection"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"onItemsRendered","d":"variable","e":"handleItemsRendered"},{"b":"onItemsOverflow","d":"variable","e":"handleItemsOverflow"},{"b":"onItemsOverflowIndicatorClick","d":"variable","e":"handleItemsHiddenIndicatorClick"},{"b":"dataQa","d":"expression","e":"\"filterChipsItemList\""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceResponsiveItemList/totalUsages.json b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/totalUsages.json new file mode 100644 index 000000000..c7930257d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/totalUsages.json @@ -0,0 +1 @@ +7 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceResponsiveItemList/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/usagesByMfe.json new file mode 100644 index 000000000..7e5e3c49f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceResponsiveItemList/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":5,"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSearchAndFilter/commonProps.json b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/commonProps.json new file mode 100644 index 000000000..509dfa64e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":13},{"name":"value","count":13},{"name":"onChange","count":13},{"name":"type","count":13},{"name":"id","count":12},{"name":"placeholder","count":11},{"name":"dataQa","count":10},{"name":"width","count":10},{"name":"onClearAll","count":4},{"name":"onFocus","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSearchAndFilter/customization.json b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSearchAndFilter/files.json b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/files.json new file mode 100644 index 000000000..1ab95a744 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSearchAndFilter/instances.json b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/instances.json new file mode 100644 index 000000000..5c50e748a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"string","e":"graphSearchInput"},{"b":"name","d":"string","e":"graphSearchInput"},{"b":"dataQa","d":"string","e":"graphSearchInput"},{"b":"placeholder","d":"expression","e":"searchFieldPlaceholderText || \"Find on Graph\""},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"onFocus","d":"variable","e":"handleOnFocus"},{"b":"onClearAll","d":"variable","e":"handleClearSearchText"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"disabled","d":"expression","e":"graphEmpty || disableActionToChangeGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx","c":[{"b":"id","d":"string","e":"searchInput"},{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"expression","e":"textboxPlaceholderText ?? \"Search\""},{"b":"width","d":"variable","e":"searchTextBoxWidth"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"onClearAll","d":"variable","e":"handleClearSearchText"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","c":[{"b":"id","d":"string","e":"graphSearchInput"},{"b":"name","d":"string","e":"graphSearchInput"},{"b":"dataQa","d":"string","e":"graphSearchInput"},{"b":"placeholder","d":"expression","e":"\"Find on Graph\""},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"onClearAll","d":"variable","e":"handleClearSearchText"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"id","d":"string","e":"domainNameFilter"},{"b":"name","d":"string","e":"domainNameFilter"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"dataQa","d":"string","e":"filterDomainName"},{"b":"placeholder","d":"string","e":"Filter by name"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","c":[{"b":"dataQa","d":"string","e":"filterMeshName"},{"b":"id","d":"string","e":"meshNameFilter"},{"b":"name","d":"string","e":"meshNameFilter"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"placeholder","d":"string","e":"Filter by name"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"value","d":"variable","e":"memNameFilter"},{"b":"width","d":"string","e":"500px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"id","d":"string","e":"applicationFilterByName"},{"b":"name","d":"string","e":"applicationFilterByName"},{"b":"value","d":"variable","e":"filterString"},{"b":"onChange","d":"variable","e":"handleFilterByName"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"dataQa","d":"string","e":"applicationFilterByNameField"},{"b":"placeholder","d":"string","e":"Filter by name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","c":[{"b":"id","d":"string","e":"addToApplicationVersionTextField"},{"b":"name","d":"string","e":"addToApplicationVersionTextField"},{"b":"dataQa","d":"string","e":"addToApplicationVersionTextField"},{"b":"label","d":"variable","e":"selectApplicationVersionLabel"},{"b":"placeholder","d":"string","e":"Filter by application name"},{"b":"value","d":"variable","e":"searchedApplicationName"},{"b":"onChange","d":"function","e":"(e) => setSearchedApplicationName(e.value)"},{"b":"onClearAll","d":"function","e":"() => setSearchedApplicationName(\"\")"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"width","d":"expression","e":"\"480px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"id","d":"string","e":"templateNameFilter"},{"b":"name","d":"string","e":"templateNameFilter"},{"b":"value","d":"variable","e":"filterbyName"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"dataQa","d":"string","e":"templateNameFilter"},{"b":"placeholder","d":"string","e":"Filter by name"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"name","d":"expression","e":"\"connectorNameFilter\""},{"b":"id","d":"expression","e":"\"connectorNameFilter\""},{"b":"onChange","d":"function","e":"(e) => setNameFilter(e.value)"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"placeholder","d":"expression","e":"en.connectors.searchPlaceholder"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"name","d":"expression","e":"`${id}`"},{"b":"id","d":"expression","e":"`${id}`"},{"b":"onChange","d":"function","e":"(e) => setNameFilter(e.value)"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"placeholder","d":"variable","e":"searchPlaceholder"},{"b":"width","d":"string","e":"500px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"id","d":"string","e":"searchBox"},{"b":"name","d":"string","e":"searchBox"},{"b":"dataQa","d":"string","e":"searchBox"},{"b":"width","d":"string","e":"400px"},{"b":"value","d":"variable","e":"searchTerm"},{"b":"onChange","d":"function","e":"(event) => handleSearchField(event.value)"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"id","d":"string","e":"searchAndFilterID"},{"b":"name","d":"string","e":"searchByInfrastructureId"},{"b":"value","d":"variable","e":"searchInfrastructureId"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\tsetSearchInfrastructureId(event.value);\n\t\t\t\t\t}"},{"b":"width","d":"string","e":"250px"},{"b":"type","d":"expression","e":"FIELD_TYPES.SEARCH"},{"b":"dataQa","d":"string","e":"searchByInfrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"name","d":"string","e":"organizationNameFilter"},{"b":"placeholder","d":"expression","e":"integrationStrings.organizations.filters.nameFilter.placeholder"},{"b":"type","d":"expression","e":"FIELD_TYPES.FILTER"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"onChange","d":"variable","e":"handleNameFilterChange"},{"b":"width","d":"string","e":"425px"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSearchAndFilter/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/totalUsages.json new file mode 100644 index 000000000..ca7bf83ac --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/totalUsages.json @@ -0,0 +1 @@ +13 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSearchAndFilter/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/usagesByMfe.json new file mode 100644 index 000000000..d7b1e5b3d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSearchAndFilter/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":8,"intg":2,"infra":1,"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelect/commonProps.json b/mrc-usage-report-data/per-component/SolaceSelect/commonProps.json new file mode 100644 index 000000000..c8af48052 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelect/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":124},{"name":"value","count":122},{"name":"onChange","count":120},{"name":"dataQa","count":95},{"name":"label","count":70},{"name":"id","count":62},{"name":"hasErrors","count":45},{"name":"helperText","count":44},{"name":"width","count":37},{"name":"required","count":36}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelect/customization.json b/mrc-usage-report-data/per-component/SolaceSelect/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelect/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelect/files.json b/mrc-usage-report-data/per-component/SolaceSelect/files.json new file mode 100644 index 000000000..414433680 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelect/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelect/instances.json b/mrc-usage-report-data/per-component/SolaceSelect/instances.json new file mode 100644 index 000000000..636f168d3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelect/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx","c":[{"b":"onChange","d":"variable","e":"handleTypeChange"},{"b":"id","d":"string","e":"objectRelationship[type]"},{"b":"name","d":"string","e":"objectRelationship[type]"},{"b":"dataQa","d":"string","e":"objectRelationship[type]"},{"b":"label","d":"expression","e":"\"Graph Type\""},{"b":"value","d":"variable","e":"layoutType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[environment]"},{"b":"name","d":"string","e":"memAssociation[environment]"},{"b":"dataQa","d":"string","e":"memAssociation[environment]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.environment"},{"b":"onChange","d":"variable","e":"handleEnvironmentSelectChange"},{"b":"value","d":"variable","e":"selectedEnvironmentId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.environmentError"},{"b":"helperText","d":"expression","e":"validationError.environmentError"},{"b":"maxHeight","d":"variable","e":"dropdownListMaxHeight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[eventMesh]"},{"b":"name","d":"string","e":"memAssociation[eventMesh]"},{"b":"dataQa","d":"string","e":"memAssociation[eventMesh]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.mem"},{"b":"onChange","d":"variable","e":"handleEventMeshSelectChange"},{"b":"value","d":"variable","e":"selectedEventMeshId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEnvironmentId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventMeshError"},{"b":"helperText","d":"expression","e":"validationError.eventMeshError"},{"b":"maxHeight","d":"variable","e":"dropdownListMaxHeight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[messagingService]"},{"b":"name","d":"string","e":"memAssociation[messagingService]"},{"b":"dataQa","d":"string","e":"memAssociation[messagingService]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.messagingService"},{"b":"onChange","d":"variable","e":"handleMessagingServiceSelectChange"},{"b":"value","d":"variable","e":"selectedMessagingServiceId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEventMeshId"},{"b":"hasErrors","d":"expression","e":"!!validationError.messagingServiceError"},{"b":"helperText","d":"expression","e":"validationError.messagingServiceError"},{"b":"maxHeight","d":"variable","e":"dropdownListMaxHeight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"id","d":"string","e":"id"},{"b":"name","d":"string","e":"name"},{"b":"dataQa","d":"string","e":"environment[select]"},{"b":"label","d":"expression","e":"`Environment`"},{"b":"onChange","d":"variable","e":"onEnvironmantChange"},{"b":"value","d":"variable","e":"selectedEnvironmentId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError.environmentError || !!validationError.environmentError"},{"b":"helperText","d":"expression","e":"selectQueryError.environmentError ?? validationError.environmentError"},{"b":"maxHeight","d":"variable","e":"DROPDOWN_LIST_MAX_HEIGHT"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","c":[{"b":"id","d":"string","e":"id"},{"b":"name","d":"string","e":"name"},{"b":"dataQa","d":"string","e":"applicationVersion[select]"},{"b":"label","d":"expression","e":"`Application version to add`"},{"b":"onChange","d":"variable","e":"onApplicationVersionChange"},{"b":"value","d":"expression","e":"selectedApplicationVersion?.id"},{"b":"required","d":"boolean","e":"true"},{"b":"maxHeight","d":"variable","e":"DROPDOWN_LIST_MAX_HEIGHT"},{"b":"helperText","d":"variable","e":"helperText"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[domain]"},{"b":"name","d":"string","e":"eapAssociation[domain]"},{"b":"dataQa","d":"string","e":"eapAssociation[domain]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.applicationDomain"},{"b":"onChange","d":"variable","e":"handleApplicationDomainChange"},{"b":"value","d":"variable","e":"selectedApplicationDomainId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.applicationDomainError"},{"b":"helperText","d":"expression","e":"validationError.applicationDomainError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[eventApiProduct]"},{"b":"name","d":"string","e":"eapAssociation[eventApiProduct]"},{"b":"dataQa","d":"string","e":"eapAssociation[eventApiProduct]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.eventApiProduct"},{"b":"onChange","d":"variable","e":"handleEventApiProductSelectChange"},{"b":"value","d":"variable","e":"selectedEventApiProductId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedApplicationDomainId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventApiProductError"},{"b":"helperText","d":"expression","e":"validationError.eventApiProductError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[eventApiProductVersion]"},{"b":"name","d":"string","e":"eapAssociation[eventApiProductVersion]"},{"b":"dataQa","d":"string","e":"eapAssociation[eventApiProductVersion]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.eventApiProductVersion"},{"b":"onChange","d":"variable","e":"handleEventApiProductVersionSelectChange"},{"b":"value","d":"variable","e":"selectedEventApiProductVersionId"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEventApiProductId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventApiProductVersionError"},{"b":"helperText","d":"expression","e":"validationError.eventApiProductVersionError"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceRoleSelect"},{"b":"name","d":"string","e":"resourceRoleSelect"},{"b":"dataQa","d":"string","e":"resourceRoleSelect"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"value","d":"variable","e":"role"},{"b":"onChange","d":"function","e":"(event) => onResourceRoleChange(resourceAssignment, event.value)"},{"b":"getOptionDisplayValue","d":"function","e":"(value: string) => RESOURCE_LABEL_BY_ROLE[value]"},{"b":"menuAnchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"left\" }"},{"b":"menuTransformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"left\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"name","d":"string","e":"enumerationVersion"},{"b":"label","d":"string","e":"Version"},{"b":"dataQa","d":"string","e":"enumerationVersionName"},{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"value","d":"variable","e":"selectedEnumVersionId"},{"b":"disabled","d":"expression","e":"!selectedEnumOption || getEnumVersions.isLoading"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => valueToMenuItemMap.get(value) || \"\""},{"b":"width","d":"string","e":"35%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"envDialog-select-environment"},{"b":"name","d":"string","e":"envDialog-select-environment"},{"b":"dataQa","d":"string","e":"envDialog-select-environment"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"valueType\");\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-type-select`"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"hasErrors","d":"expression","e":"!nameErrorMsg && !!attributeErrorMsg"},{"b":"menuAnchorOrigin","d":"object","e":"{ vertical: \"bottom\", horizontal: \"left\" }"},{"b":"menuTransformOrigin","d":"object","e":"{ vertical: \"top\", horizontal: \"left\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"scope\");\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`${caKey}-scope-select`"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"readOnly","d":"variable","e":"isDomainManager"},{"b":"hasErrors","d":"expression","e":"!nameErrorMsg && !!attributeErrorMsg && !isDomainManager"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"value","d":"expression","e":"version.id"},{"b":"name","d":"string","e":"Entity List"},{"b":"onChange","d":"variable","e":"onChangeVersion"},{"b":"dataQa","d":"string","e":"entityVersionSelect"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleTypeChange"},{"b":"id","d":"string","e":"eventMesh[type]"},{"b":"name","d":"string","e":"eventMesh[type]"},{"b":"dataQa","d":"string","e":"eventMesh[type]"},{"b":"label","d":"variable","e":"LABEL_TYPE"},{"b":"value","d":"expression","e":"memContent.brokerType"},{"b":"required","d":"expression","e":"mode === \"create\""},{"b":"readOnly","d":"expression","e":"mode !== \"create\""},{"b":"disabled","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","c":[{"b":"dataQa","d":"string","e":"schemaRegistry[type]"},{"b":"id","d":"string","e":"schemaRegistry[type]"},{"b":"label","d":"string","e":"Type"},{"b":"name","d":"string","e":"schemaRegistry[type]"},{"b":"onChange","d":"function","e":"() => undefined"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"content.type"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][authentication][${authKey}][${inputField}]`"},{"b":"disabled","d":"expression","e":"kafkaDelimiterIsNotSet || loading"},{"b":"id","d":"expression","e":"`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels[inputField]"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"isJaasConfigPassword || readOnly"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onClose","d":"variable","e":"onBlur"},{"b":"helperText","d":"expression","e":"error?.message ? en.common.error.selectValueRequired : \"\""},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][authentication][authType]"},{"b":"disabled","d":"expression","e":"kafkaDelimiterIsNotSet || loading"},{"b":"id","d":"string","e":"eventBroker[kafka][authentication][authType]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.authentication"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.authentication.auth.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][authentication][saslscram][saslMechanism]`"},{"b":"disabled","d":"expression","e":"kafkaDelimiterIsNotSet || loading"},{"b":"id","d":"string","e":"eventBroker[kafka][authentication][saslscram][saslMechanism]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.saslMechanism"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"id","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels[inputField]"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onClose","d":"variable","e":"onBlur"},{"b":"helperText","d":"expression","e":"error?.message ? en.common.error.selectValueRequired : \"\""},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][schemaRegistry][authType]"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"id","d":"string","e":"eventBroker[kafka][schemaRegistry][authType]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.authentication"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][messaging][type]"},{"b":"disabled","d":"variable","e":"readOnly"},{"b":"id","d":"string","e":"eventBroker[type]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.transport"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => handleTransportChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[type]"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"id","d":"string","e":"eventBroker[type]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.type"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","c":[{"b":"label","d":"expression","e":"`${entityTypeToLabel(entityType)} Version`"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedEntityVersionId"},{"b":"name","d":"string","e":"Entity List"},{"b":"onChange","d":"variable","e":"handleEntityVersionChange"},{"b":"dataQa","d":"string","e":"entityVersionSelect"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx","c":[{"b":"name","d":"string","e":"versionIncrementStrategySelect"},{"b":"onChange","d":"variable","e":"handleStateSelectionChange"},{"b":"value","d":"variable","e":"selectedVersionIncrementStrategy"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"dataQa ?? \"versionIncrementStrategySelect\""},{"b":"label","d":"string","e":"Version Incrementing"},{"b":"width","d":"expression","e":"width ?? \"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","c":[{"b":"name","d":"string","e":"applicationDomainSelect-readOnly"},{"b":"label","d":"expression","e":"title ? title : \"Application Domain\""},{"b":"inlineLabel","d":"variable","e":"inlineLabel"},{"b":"value","d":"expression","e":"selectedApplicationDomain?.value"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"onChange","d":"variable","e":"handleSharedTypeChange"},{"b":"value","d":"variable","e":"selectedValue"},{"b":"displayEmpty","d":"boolean","e":"true"},{"b":"onOpen","d":"variable","e":"handleOpen"},{"b":"onClose","d":"variable","e":"handleClose"},{"b":"open","d":"variable","e":"openDropdown"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx","c":[{"b":"name","d":"expression","e":"`${entityName}[versionState]`"},{"b":"onChange","d":"variable","e":"handleStateSelectionChange"},{"b":"value","d":"variable","e":"versionStateId"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"stateSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"id","d":"expression","e":"\"memSelect\""},{"b":"name","d":"expression","e":"\"memSelect\""},{"b":"label","d":"expression","e":"`Modeled Event Mesh`"},{"b":"onChange","d":"variable","e":"onChangeHandler"},{"b":"value","d":"variable","e":"selectedEventMeshId"},{"b":"dataQa","d":"string","e":"memSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"readOnly","d":"expression","e":"!isNew || consumerTypeMenuItems?.length === 1"},{"b":"disabled","d":"expression","e":"consumerIdInSidepanel === id && sidePanelOpen"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\t\t\t// clear any configuration when changing consumer type\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configuration`, undefined);\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configurations`, []);\n\n\t\t\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.consumerType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx","c":[{"b":"name","d":"string","e":"kafkaDelimiter"},{"b":"dataQa","d":"string","e":"kafkaDelimiter"},{"b":"onChange","d":"variable","e":"handleDelimiterChange"},{"b":"value","d":"variable","e":"delimiter"},{"b":"disabled","d":"variable","e":"hasFetchError"},{"b":"width","d":"string","e":"150px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[approvalType]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"expression","e":"value || brokerTypes[0].value"},{"b":"readOnly","d":"variable","e":"isEdit"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => brokerTypes.find((type) => type.value === value)?.name || \"\""},{"b":"dataQa","d":"string","e":"eventApiProduct[brokerType]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`messagingSelect-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"width","d":"expression","e":"\"556px\""},{"b":"value","d":"expression","e":"`${value}`"},{"b":"dataQa","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`accessTypeSelect-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"width","d":"expression","e":"\"556px\""},{"b":"dataQa","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"mode === \"view\""},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`queueTypeSelect-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"width","d":"expression","e":"\"556px\""},{"b":"dataQa","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"mode === \"view\""},{"b":"value","d":"expression","e":"`${value}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"name","d":"expression","e":"`brokerType-${topicDomain.id}`"},{"b":"dataQa","d":"string","e":"brokerType"},{"b":"onChange","d":"function","e":"(e) => updateBrokerType(e.value, index)"},{"b":"value","d":"expression","e":"topicDomain.brokerType"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"name","d":"expression","e":"`brokerType-${topicDomain.id}`"},{"b":"dataQa","d":"string","e":"brokerType"},{"b":"value","d":"expression","e":"topicDomain.brokerType"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"\"AsyncAPI Version\""},{"b":"name","d":"string","e":"AsyncAPI Version"},{"b":"value","d":"variable","e":"version"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetVersion(e.value as EPSupportedAsyncApiVersion);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"label","d":"expression","e":"\"Document Extensions\""},{"b":"name","d":"string","e":"documentExtensions"},{"b":"value","d":"variable","e":"extension"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetExtension(e.value as SupportedAsyncApiExtensionOptions);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}"},{"b":"getOptionDisplayValue","d":"function","e":"(value) => {\n\t\t\t\tconst match = documentExtensionOptions.find((props) => props.value === value);\n\n\t\t\t\treturn match ? match.name : \"\";\n\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? en.eventApi.error.requiredPlan : null"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.plan"},{"b":"width","d":"string","e":"621px"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t// borkerType is used in the parent, pass the value back.\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"readOnly","d":"variable","e":"isEdit"},{"b":"dataQa","d":"string","e":"eventApi[brokerType]"},{"b":"width","d":"expression","e":"\"526px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"value","d":"expression","e":"context.value"},{"b":"name","d":"string","e":"contextSelector"},{"b":"dataQa","d":"string","e":"contextSelector"},{"b":"onChange","d":"variable","e":"handleContextOptionChange"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!!isDisabled"},{"b":"width","d":"string","e":"400px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\thandleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"restDeliveryPointConfigurationType-selector"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"async (e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\ttrigger(`${configurationName}-postRequestTarget`);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}"},{"b":"disabled","d":"expression","e":"!getValues(`${configurationName}-postRequestTarget`)"},{"b":"dataQa","d":"expression","e":"`${configurationName}-requestTargetEvaluation`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.requestHeaderType"},{"b":"name","d":"expression","e":"`${configurationName}-request`"},{"b":"value","d":"variable","e":"requestHeaderType"},{"b":"onChange","d":"function","e":"(e) => setRequestHeaderType(e.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"name","d":"string","e":"schemaVersionSelect"},{"b":"onChange","d":"variable","e":"handleChangeSchemaVersion"},{"b":"value","d":"expression","e":"viewedSchemaVersion?.id"},{"b":"dataQa","d":"string","e":"schemaVersionSelect"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"label","d":"expression","e":"\"Schema Type\""},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"expression","e":"value || schemaTypes[0]?.value"},{"b":"dataQa","d":"expression","e":"\"schema[schemaType]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\thandleBrokerTypeChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"\"event[brokerType]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"\"event[requiresApproval]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"id","d":"string","e":"configurationTypeId"},{"b":"name","d":"string","e":"configurationTypeId"},{"b":"dataQa","d":"string","e":"configurationTypeId"},{"b":"label","d":"expression","e":"messages.credentials.configurationTypeId"},{"b":"onChange","d":"variable","e":"onChangeConfigurationType"},{"b":"value","d":"expression","e":"configuration.typeId"},{"b":"required","d":"variable","e":"isEditing"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"readOnly","d":"expression","e":"!isEditing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"label","d":"expression","e":"\"Access Approval\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"dataQa","d":"expression","e":"\"event[accessApproval]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","c":[{"b":"name","d":"string","e":"selectedMem"},{"b":"value","d":"expression","e":"memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tconst memId = e.value === designedEventFlowOption.value ? \"\" : e.value;\n\n\t\t\t\t\t\tsetSelectedMemId(memId);\n\t\t\t\t\t}"},{"b":"getOptionDisplayValue","d":"variable","e":"getOptionDisplayValue"},{"b":"width","d":"string","e":"100%"},{"b":"dataQa","d":"expression","e":"`appVersionDetailMemFilter`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"variable","e":"value"},{"b":"readOnly","d":"expression","e":"isEdit || !onBrokerTypeChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.application.consumer.consumerType"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`consumerType`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx","c":[{"b":"label","d":"expression","e":"en.application.consumer.label"},{"b":"value","d":"variable","e":"value"},{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\ttrigger(\"subscriptions\"); // trigger validation\n\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"dataQa","d":"string","e":"consumerSelect"},{"b":"width","d":"string","e":"100%"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetSelectedSchemaType(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"value","d":"expression","e":"value || schemaTypes[0]?.value"},{"b":"dataQa","d":"expression","e":"\"schema[schemaType]\""},{"b":"readOnly","d":"variable","e":"isEdit"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleEnvironmentChange"},{"b":"id","d":"string","e":"addToAppVersions[environmentSelect]"},{"b":"name","d":"string","e":"addToAppVersions[environmentSelect]"},{"b":"dataQa","d":"string","e":"addToAppVersionsBulkPromotion[environmentSelect]"},{"b":"label","d":"expression","e":"\"Environment\""},{"b":"value","d":"variable","e":"selectedEnvironmentId"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!validationError.environmentInputError"},{"b":"helperText","d":"expression","e":"validationError.environmentInputError"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleEventMeshChange"},{"b":"id","d":"string","e":"addToAppVersions[eventMeshSelect]"},{"b":"name","d":"string","e":"addToAppVersions[eventMeshSelect]"},{"b":"dataQa","d":"string","e":"addToAppVersionsBulkPromotion[eventMeshSelect]"},{"b":"label","d":"expression","e":"\"Modeled Event Mesh\""},{"b":"disabled","d":"expression","e":"isLoading || selectedEnvironmentId === \"\" || eventMeshSelectOptions.length === 0"},{"b":"value","d":"variable","e":"selectedEventMeshId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventMeshInputError"},{"b":"helperText","d":"expression","e":"validationError.eventMeshInputError"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleMessagingServiceChange"},{"b":"id","d":"string","e":"addToAppVersions[messagingServiceSelect]"},{"b":"name","d":"string","e":"addToAppVersions[messagingServiceSelect]"},{"b":"dataQa","d":"string","e":"addToAppVersionsBulkPromotion[messagingServiceSelect]"},{"b":"label","d":"expression","e":"\"Event Broker\""},{"b":"disabled","d":"expression","e":"isLoading || selectedEventMeshId === \"\" || messagingServiceOptions.length === 0"},{"b":"value","d":"variable","e":"selectedMessagingServiceId"},{"b":"hasErrors","d":"expression","e":"!!validationError.messagingServiceInputError"},{"b":"helperText","d":"expression","e":"validationError.messagingServiceInputError"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx","c":[{"b":"onChange","d":"variable","e":"handleEventFlowFilterChange"},{"b":"id","d":"string","e":"eventFlowSelect"},{"b":"name","d":"string","e":"eventFlowSelect"},{"b":"dataQa","d":"string","e":"eventFlowSelect"},{"b":"value","d":"variable","e":"eventFlowOption"},{"b":"disabled","d":"expression","e":"graphLoading || graphUpdating || drawInProgress || graphNodeExceeded"},{"b":"width","d":"string","e":"280px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"layoutOptions\""},{"b":"name","d":"expression","e":"\"layoutOptions\""},{"b":"dataQa","d":"expression","e":"\"layoutOptions\""},{"b":"value","d":"variable","e":"layoutType"},{"b":"onChange","d":"variable","e":"handleLayoutTypeChange"},{"b":"width","d":"expression","e":"\"90px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"levelDepthOptions\""},{"b":"name","d":"expression","e":"\"levelDepthOptions\""},{"b":"dataQa","d":"expression","e":"\"levelDepthOptions\""},{"b":"value","d":"variable","e":"levelDepthString"},{"b":"onChange","d":"variable","e":"handleLevelDepthChange"},{"b":"width","d":"expression","e":"\"55px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"id","d":"string","e":"version-selector-runtime"},{"b":"name","d":"string","e":"version-selector-runtime"},{"b":"dataQa","d":"string","e":"versionSelectorRuntime"},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"selectedVersionId"},{"b":"width","d":"string","e":"315px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleSecondVersionChange"},{"b":"id","d":"string","e":"version-selector-runtime"},{"b":"name","d":"string","e":"version-selector-runtime"},{"b":"dataQa","d":"string","e":"versionSelectorRuntime"},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"selectedSecondVersionId"},{"b":"width","d":"string","e":"315px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"id","d":"string","e":"version-selector-runtime"},{"b":"name","d":"string","e":"version-selector-runtime"},{"b":"dataQa","d":"string","e":"versionSelectorRuntime"},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"selectedVersionId"},{"b":"width","d":"string","e":"350px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"filterLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"value","d":"variable","e":"selectedValue"},{"b":"displayEmpty","d":"boolean","e":"true"},{"b":"onOpen","d":"variable","e":"handleOpen"},{"b":"onClose","d":"variable","e":"handleClose"},{"b":"open","d":"variable","e":"openDropdown"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"name","d":"expression","e":"\"configurationVersionSelect\""},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"value","d":"expression","e":"audits[0].id"},{"b":"dataQa","d":"expression","e":"\"configurationVersionSelect\""},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"id","d":"string","e":"selectMessagingService"},{"b":"name","d":"string","e":"selectMessagingService"},{"b":"dataQa","d":"string","e":"selectMessagingService"},{"b":"onChange","d":"variable","e":"handleSelectMessagingServiceChange"},{"b":"value","d":"variable","e":"selectedMessagingServiceId"},{"b":"disabled","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"id","d":"string","e":"messagingServiceTypeSelect"},{"b":"name","d":"string","e":"messagingServiceTypeSelect"},{"b":"dataQa","d":"string","e":"messagingServiceTypeSelect"},{"b":"label","d":"string","e":"Type"},{"b":"onChange","d":"variable","e":"handleMessagingServiceTypeChange"},{"b":"value","d":"variable","e":"selectedMessagingServiceType"},{"b":"width","d":"string","e":"30%"},{"b":"inlineLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"aria-label","d":"string","e":"Agent Mode"},{"b":"disabled","d":"variable","e":"loading"},{"b":"getOptionDisplayValue","d":"function","e":"(value: string) => EMA_MODES_LABELS[value]"},{"b":"hasErrors","d":"expression","e":"!!getRuntimeAgentModeErrorMessage"},{"b":"helperText","d":"variable","e":"getRuntimeAgentModeErrorMessage"},{"b":"name","d":"string","e":"agent mode"},{"b":"onChange","d":"variable","e":"handleDiscoveryScanModeChange"},{"b":"readOnly","d":"expression","e":"!!agentId"},{"b":"width","d":"string","e":"620px"},{"b":"value","d":"expression","e":"eventManagementAgent.runtimeAgentMode"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"environment"},{"b":"name","d":"string","e":"environment"},{"b":"dataQa","d":"string","e":"environment"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"label","d":"expression","e":"props.label"},{"b":"name","d":"expression","e":"props.name"},{"b":"onChange","d":"function","e":"(e) => onChangeTrigger(props, e)"},{"b":"value","d":"expression","e":"props.value"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"title","d":"expression","e":"props.title"},{"b":"id","d":"expression","e":"props.id"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"dataQa","d":"string","e":"sslKeyStoreFormatTypeField"},{"b":"id","d":"string","e":"sslKeyStoreFormatType"},{"b":"label","d":"expression","e":"en.connectors.labels.sslKeyStoreFormat"},{"b":"name","d":"expression","e":"\"sslKeyStoreFormat\""},{"b":"onChange","d":"function","e":"({ value: sslKeyStoreFormat }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"clientCertValues.sslKeyStoreFormat"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"dataQa","d":"string","e":"authenticationType"},{"b":"id","d":"string","e":"authenticationType"},{"b":"label","d":"expression","e":"en.connectors.labels.authenticationType"},{"b":"name","d":"expression","e":"\"authenticationType\""},{"b":"onChange","d":"function","e":"({ value: authType }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthenticationType: authType as AuthenticationType\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"solaceConnectionValues.authenticationType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"expression","e":"\"solaceDestinationType\""},{"b":"onChange","d":"function","e":"({ value: destinationType }) =>\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestinationType: destinationType\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})"},{"b":"value","d":"expression","e":"solaceConnectionValues.binding.destinationType"},{"b":"label","d":"expression","e":"en.connectors.labels.destinationType"},{"b":"required","d":"boolean","e":"true"},{"b":"readOnly","d":"expression","e":"isEqual(solaceDirection, ConnectorDirection.Source) ? true : false"},{"b":"dataQa","d":"string","e":"solaceDestinationType"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetHeaderDataType(dataType);\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"headerDataType"},{"b":"dataQa","d":"string","e":"header-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantDataType(dataType);\n\t\t\t\t\t\tsetDefaultConstantValue(dataType);\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"constantDataType"},{"b":"dataQa","d":"string","e":"header-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, dataType: dataType });\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"customHeaderField.dataType"},{"b":"dataQa","d":"string","e":"header-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"name","d":"expression","e":"\"dataType\""},{"b":"onChange","d":"function","e":"({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\tsetConstantField({\n\t\t\t\t\t\t\t...constantField,\n\t\t\t\t\t\t\tdataType: dataType,\n\t\t\t\t\t\t\tconstantValue: getDefaultConstantValue(dataType)\n\t\t\t\t\t\t});\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.dataType"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"constantField.dataType"},{"b":"dataQa","d":"string","e":"constant-datatype-selection"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"label"},{"b":"onChange","d":"variable","e":"handleSharedTypeChange"},{"b":"value","d":"variable","e":"selectedValue"},{"b":"displayEmpty","d":"boolean","e":"true"},{"b":"onOpen","d":"variable","e":"handleOpen"},{"b":"onClose","d":"variable","e":"handleClose"},{"b":"open","d":"variable","e":"openDropdown"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceRoleSelect"},{"b":"name","d":"string","e":"resourceRoleSelect"},{"b":"dataQa","d":"string","e":"resourceRoleSelect"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"value","d":"variable","e":"role"},{"b":"onChange","d":"function","e":"(event) => onResourceRoleChange(resourceAssignment, event.value)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"environment"},{"b":"name","d":"string","e":"environment"},{"b":"dataQa","d":"string","e":"environment"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"id","d":"string","e":"protocol"},{"b":"name","d":"string","e":"protocol"},{"b":"dataQa","d":"string","e":"protocol"},{"b":"label","d":"expression","e":"t({ id: \"id_protocol\", message: \"Protocol\" })"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"protocolIndex.toString()"},{"b":"onChange","d":"variable","e":"handleProtocolChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"id","d":"string","e":"hosturi"},{"b":"name","d":"string","e":"hosturi"},{"b":"dataQa","d":"string","e":"hosturi"},{"b":"label","d":"expression","e":"t({ id: \"id_hosturi\", message: \"Host URI\" })"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"hostUri"},{"b":"onChange","d":"variable","e":"handleHostUriChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"name","d":"string","e":"selectedTracingProfileId"},{"b":"data-qa","d":"string","e":"selectedTracingProfileId"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })"},{"b":"value","d":"variable","e":"selectedTracingProfileId"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!selectedTracingProfileId && isSubmitted"},{"b":"helperText","d":"expression","e":"selectedTracingProfileId || !isSubmitted ? \"\" : t({ id: \"id_dt_select_tracing_dest\", message: \"Required. Select a tracing destination.\" })"},{"b":"onChange","d":"function","e":"(event) => setSelectedTracingProfileId(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"name","d":"string","e":"view"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_view_by\", message: \"View by\" })"},{"b":"value","d":"variable","e":"view"},{"b":"onChange","d":"variable","e":"handleChangeView"},{"b":"dataQa","d":"expression","e":"\"connect-view-by\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx","c":[{"b":"id","d":"string","e":"brokerFamilyVersion"},{"b":"name","d":"string","e":"brokerFamilyVersion"},{"b":"dataQa","d":"string","e":"brokerFamilyVersion"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx","c":[{"b":"id","d":"string","e":"brokerVersion"},{"b":"name","d":"string","e":"brokerVersion"},{"b":"dataQa","d":"string","e":"brokerVersion"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx","c":[{"b":"id","d":"string","e":"cloud"},{"b":"name","d":"string","e":"cloud"},{"b":"dataQa","d":"string","e":"cloud"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"disabled","d":"variable","e":"cloudDisabled"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx","c":[{"b":"id","d":"string","e":"serviceClass"},{"b":"name","d":"string","e":"serviceClass"},{"b":"dataQa","d":"string","e":"serviceClass"},{"b":"value","d":"expression","e":"serviceClass.value"},{"b":"onChange","d":"variable","e":"handleServiceClassChange"},{"b":"hasErrors","d":"variable","e":"hasServiceClassErrors"},{"b":"helperText","d":"variable","e":"serviceClassErrorText"},{"b":"label","d":"expression","e":"isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })"},{"b":"disabled","d":"expression","e":"activeServiceClasses.length === 0"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx","c":[{"b":"id","d":"string","e":"serviceClass"},{"b":"name","d":"string","e":"serviceClass"},{"b":"dataQa","d":"string","e":"serviceClass"},{"b":"value","d":"expression","e":"serviceClass.value"},{"b":"onChange","d":"variable","e":"handleServiceClassChange"},{"b":"hasErrors","d":"variable","e":"hasServiceClassErrors"},{"b":"helperText","d":"variable","e":"serviceClassErrorText"},{"b":"label","d":"expression","e":"isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })"},{"b":"disabled","d":"expression","e":"activeServiceClasses.length === 0"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"id","d":"string","e":"resourceRoleSelect"},{"b":"name","d":"string","e":"resourceRoleSelect"},{"b":"dataQa","d":"string","e":"resourceRoleSelect"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"value","d":"variable","e":"role"},{"b":"onChange","d":"function","e":"(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.timeRange"},{"b":"name","d":"string","e":"timeRange"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Time Range"},{"b":"value","d":"expression","e":"filters.timeRange.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.status"},{"b":"name","d":"string","e":"status"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Status"},{"b":"value","d":"expression","e":"filters.status.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.category"},{"b":"name","d":"string","e":"category"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Category"},{"b":"value","d":"expression","e":"filters.category.value"},{"b":"id","d":"string","e":"categoryFilter"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"disabled","d":"expression","e":"!filters.category.value"},{"b":"label","d":"expression","e":"en.auditLogs.event"},{"b":"name","d":"string","e":"event"},{"b":"onChange","d":"function","e":"(e) => handleFilterChange(e)"},{"b":"title","d":"string","e":"Event"},{"b":"value","d":"expression","e":"filters.event.value"},{"b":"helperText","d":"expression","e":"!filters.category.value ? en.auditLogs.selectCategory : \"\""},{"b":"id","d":"string","e":"eventFilter"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"width","d":"string","e":"20rem"},{"b":"id","d":"string","e":"userGroupDropdownId"},{"b":"name","d":"string","e":"userGroupDropdown"},{"b":"dataQa","d":"string","e":"userGroupDropdownQa"},{"b":"onChange","d":"variable","e":"handleSelectedUserGroupRole"},{"b":"title","d":"string","e":"User Group Select"},{"b":"value","d":"variable","e":"selectedUserGroupRole"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"environment"},{"b":"name","d":"variable","e":"name"},{"b":"label","d":"expression","e":"environments.moveDialogLabels.destinationEnvironment"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"},{"b":"getOptionDisplayValue","d":"function","e":"(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"width","d":"string","e":"270px"},{"b":"data-qa","d":"string","e":"searchBySelect"},{"b":"name","d":"string","e":"searchBySelect"},{"b":"value","d":"variable","e":"searchByOption"},{"b":"onChange","d":"variable","e":"handleSearchByOptions"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"width","d":"string","e":"250px"},{"b":"name","d":"string","e":"eolStatus"},{"b":"label","d":"string","e":"End of Life Status"},{"b":"dataQa","d":"string","e":"eolStatusSelect"},{"b":"value","d":"variable","e":"endOfLifeStatus"},{"b":"onChange","d":"function","e":"(event) => setEndOfLifeStatus(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"createBizOrganization.products.rateSet"},{"b":"id","d":"string","e":"prodRateSet"},{"b":"name","d":"string","e":"prodRateSet"},{"b":"onChange","d":"variable","e":"handleProdRateSetChange"},{"b":"value","d":"expression","e":"rateSetValues ? prodRateSetValue : \"\""},{"b":"dataQa","d":"string","e":"prodRateSetDropdownQa"},{"b":"readOnly","d":"variable","e":"readOnly"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"organizationType"},{"b":"id","d":"string","e":"organizationType"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.accountType"},{"b":"dataQa","d":"string","e":"accountTypeDropdown"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"organizationType\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0"},{"b":"helperText","d":"expression","e":"validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t\t )[0]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"createBizOrganization.products.productConsumptionType"},{"b":"id","d":"string","e":"productConsumptionType"},{"b":"name","d":"string","e":"productConsumptionType"},{"b":"onChange","d":"variable","e":"handleProdConsumptionChange"},{"b":"value","d":"variable","e":"productType"},{"b":"width","d":"string","e":"450px"},{"b":"dataQa","d":"string","e":"productConsumptionDropdownQa"},{"b":"readOnly","d":"expression","e":"productDrawdown.readonly || productSubscriptions.readonly"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"name","d":"string","e":"availableVersions"},{"b":"id","d":"string","e":"availableVersions"},{"b":"width","d":"string","e":"100%"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"title","d":"string","e":"Available Versions"},{"b":"dataQa","d":"string","e":"availableVersions"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Page Size"},{"b":"name","d":"string","e":"pageSize"},{"b":"width","d":"string","e":"200px"},{"b":"value","d":"expression","e":"pageSize.toString()"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Page Size"},{"b":"name","d":"string","e":"pageSize"},{"b":"width","d":"string","e":"200px"},{"b":"value","d":"expression","e":"pageSize.toString()"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"value","d":"variable","e":"search"},{"b":"label","d":"string","e":"Filter By"},{"b":"name","d":"string","e":"filter by"},{"b":"width","d":"string","e":"250px"},{"b":"onChange","d":"function","e":"(e) => setSearch(e.value as FilterKey)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"value","d":"expression","e":"pageSize.toString()"},{"b":"label","d":"string","e":"Page Size"},{"b":"name","d":"string","e":"page size"},{"b":"width","d":"string","e":"125px"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"name","d":"string","e":"attribute"},{"b":"value","d":"variable","e":"attribute"},{"b":"onChange","d":"function","e":"(event) => setAttribute(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"name","d":"string","e":"comparison"},{"b":"value","d":"variable","e":"operator"},{"b":"onChange","d":"function","e":"(event) => setOperator(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"maxHeight","d":"expression","e":"\"40vh\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"maxHeight","d":"expression","e":"\"30vh\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"key","d":"expression","e":"t.profile"},{"b":"name","d":"expression","e":"`artifactResources_${t.profile}`"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"`Version in Datadog Sub-Org (${t.profile}):`"},{"b":"value","d":"expression","e":"t.version || \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"name","d":"string","e":"artifactResource"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Latest Version:"},{"b":"value","d":"string","e":"artifactVersion"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"value","d":"expression","e":"value ?? \"preview\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"width","d":"string","e":"270px"},{"b":"data-qa","d":"string","e":"searchBySelect"},{"b":"name","d":"string","e":"searchBySelect"},{"b":"value","d":"variable","e":"searchByOption"},{"b":"onChange","d":"variable","e":"handleSearchByOptions"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelect/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSelect/totalUsages.json new file mode 100644 index 000000000..a09fd8ad4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelect/totalUsages.json @@ -0,0 +1 @@ +124 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelect/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSelect/usagesByMfe.json new file mode 100644 index 000000000..ca8abd9bb --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelect/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":72,"intg":10,"mc":12,"saas":10,"infra":2,"maas-ops-react":18} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/commonProps.json b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/commonProps.json new file mode 100644 index 000000000..9e98eac88 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":48},{"name":"onChange","count":48},{"name":"dataQa","count":47},{"name":"options","count":47},{"name":"itemComponent","count":47},{"name":"itemMappingCallback","count":47},{"name":"optionsLabelCallback","count":47},{"name":"fetchOptionsCallback","count":47},{"name":"value","count":46},{"name":"isOptionEqualToValueCallback","count":43}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/customization.json b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/files.json b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/files.json new file mode 100644 index 000000000..2d19b95dc --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/instances.json b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/instances.json new file mode 100644 index 000000000..54eab881c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"id","d":"string","e":"messagingService"},{"b":"name","d":"string","e":"messagingServiceAutocomplete"},{"b":"dataQa","d":"string","e":"messagingService"},{"b":"label","d":"string","e":"Event Broker Context (optional)"},{"b":"helperText","d":"expression","e":"selectQueryError.messagingServiceError ?? validationError.messagingServiceError"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError"},{"b":"value","d":"variable","e":"selectedMessagingService"},{"b":"options","d":"variable","e":"matchingMessagingServices"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleMessagingServiceSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchMessagingServiceOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[{"b":"id","d":"string","e":"memAssociation[protocols]"},{"b":"name","d":"string","e":"memAssociation[protocols]"},{"b":"dataQa","d":"string","e":"memAssociation[protocols]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.supportedProtocols"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.protocolsError"},{"b":"helperText","d":"expression","e":"validationError.protocolsError"},{"b":"multiple","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedMessagingServiceId"},{"b":"value","d":"variable","e":"selectedProtocols"},{"b":"options","d":"variable","e":"matchingProtocols"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleProtocolSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"id","d":"string","e":"modeledEventMesh[select]"},{"b":"name","d":"string","e":"modeledEventMesh[select]"},{"b":"dataQa","d":"string","e":"modeledEventMesh[select]"},{"b":"label","d":"string","e":"Modeled Event Mesh"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEnvironmentId"},{"b":"hasErrors","d":"expression","e":"!!validationError.eventMeshError"},{"b":"helperText","d":"expression","e":"validationError.eventMeshError"},{"b":"multiple","d":"boolean","e":"false"},{"b":"value","d":"expression","e":"selectedEventMeshes[0]"},{"b":"options","d":"variable","e":"matchingEventMeshes"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleEventMeshSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEventMeshOptionsCallback"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabled"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"id","d":"string","e":"messagingService[select]"},{"b":"name","d":"string","e":"messagingService[select]"},{"b":"dataQa","d":"string","e":"messagingService[select]"},{"b":"label","d":"expression","e":"\"Event Broker\""},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"selectedEventMeshes.length === 0"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError"},{"b":"helperText","d":"expression","e":"selectQueryError.messagingServiceError ?? validationError.messagingServiceError"},{"b":"multiple","d":"boolean","e":"false"},{"b":"value","d":"expression","e":"selectedMessagingServices[0]"},{"b":"options","d":"variable","e":"matchingMessagingServices"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleMessagingServiceSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchMessagingServiceOptionsCallback"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabled"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[{"b":"id","d":"string","e":"eapAssociation[protocols]"},{"b":"name","d":"string","e":"eapAssociation[protocols]"},{"b":"dataQa","d":"string","e":"eapAssociation[protocols]"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.supportedProtocols"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationError.protocolsError"},{"b":"helperText","d":"expression","e":"validationError.protocolsError"},{"b":"multiple","d":"boolean","e":"true"},{"b":"disabled","d":"expression","e":"!selectedEventApiProductVersionId"},{"b":"value","d":"variable","e":"selectedProtocols"},{"b":"options","d":"variable","e":"matchingProtocols"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleProtocolSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[{"b":"name","d":"string","e":"userAccessSelect-search"},{"b":"dataQa","d":"expression","e":"`userAccessSelect-${resourceAssignment.userId}`"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option?.value === value?.value"},{"b":"itemMappingCallback","d":"function","e":"(option) => option ?? { name: \"\", value: \"\" }"},{"b":"fetchOptionsCallback","d":"function","e":"(searchTerm) => setSearchTerm(searchTerm)"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]"},{"b":"options","d":"variable","e":"userOptions"},{"b":"value","d":"variable","e":"selectedOption"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"hasErrors","d":"expression","e":"!!resourceAssignment.error"},{"b":"helperText","d":"expression","e":"resourceAssignment.error"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"name","d":"string","e":"enumeration"},{"b":"dataQa","d":"string","e":"enumerationName"},{"b":"label","d":"string","e":"Enumeration"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"searchLocalEnums"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingEnumOptions"},{"b":"onChange","d":"variable","e":"handleEnumChange"},{"b":"value","d":"variable","e":"selectedEnumOption"},{"b":"getOptionDisabledCallback","d":"expression","e":"sharedSearchCriteria ? handleOptionDisabled : undefined"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"showGroupDivider","d":"boolean","e":"true"},{"b":"helperText","d":"expression","e":"sharedSearchCriteria ? \"You can associate only shared enumerations with shared events.\" : null"},{"b":"width","d":"string","e":"65%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"values"},{"b":"options","d":"variable","e":"matchingValues"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleOptionDisabledCallback"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"debouncedFetchOptionsCallback"},{"b":"shouldClearSearchOnSelectCallback","d":"variable","e":"shouldClearSearchOnSelectCallback"},{"b":"maxHeight","d":"string","e":"400px"},{"b":"validateInputCallback","d":"variable","e":"validateInputValue"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"helperText"},{"b":"dataQa","d":"variable","e":"dataQa"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"name","d":"string","e":"applicationVersionSelect-search"},{"b":"label","d":"expression","e":"title ?? \"Application Version\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"handleApplicationVersionChange"},{"b":"value","d":"variable","e":"selectedApplicationVersions"},{"b":"options","d":"variable","e":"applicationVersionOptions"},{"b":"itemComponent","d":"variable","e":"getApplicationVersionSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"renderTags","d":"function","e":"() =>\n\t\t\t\tselectedApplicationVersions?.[0] && (\n\t\t\t\t\t{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}\n\t\t\t\t)"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchApplicationVersionOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isApplicationVersionSelectAutocompleteOptionEqual"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"groupByCallback","d":"expression","e":"applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined"},{"b":"showGroupDivider","d":"expression","e":"applicationVersionOptions.some((option) => option.divider) ? true : false"},{"b":"disableCloseOnSelect","d":"boolean","e":"false"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError"},{"b":"helperText","d":"expression","e":"selectQueryError || helperText || \"\""},{"b":"dataQa","d":"string","e":"applicationVersionSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","c":[{"b":"name","d":"string","e":"applicationDomainSelect-search"},{"b":"label","d":"expression","e":"title ? title : \"Application Domain\""},{"b":"inlineLabel","d":"variable","e":"inlineLabel"},{"b":"multiple","d":"boolean","e":"false"},{"b":"onChange","d":"variable","e":"handleApplicationDomainChange"},{"b":"value","d":"variable","e":"selectedApplicationDomain"},{"b":"options","d":"variable","e":"matchingApplicationDomains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchApplicationDomainOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"required","d":"variable","e":"required"},{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"disabled","d":"boolean","e":"false"},{"b":"hasErrors","d":"expression","e":"!!selectQueryError"},{"b":"helperText","d":"variable","e":"showHelperText"},{"b":"maxHeight","d":"string","e":"370px"},{"b":"dataQa","d":"string","e":"applicationDomainSelect"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","c":[{"b":"id","d":"expression","e":"`${FilterType.eventMesh}Select`"},{"b":"name","d":"expression","e":"`${FilterType.eventMesh}Select`"},{"b":"dataQa","d":"expression","e":"`${FilterType.eventMesh}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel.eventMesh"},{"b":"placeholder","d":"expression","e":"selectedEventMeshes?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedEventMeshes"},{"b":"options","d":"variable","e":"matchingEventMeshes"},{"b":"itemComponent","d":"variable","e":"getEventMeshSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getEventMeshSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChangeEventMeshes"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEventMeshOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isEventMeshSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"id","d":"expression","e":"`${customAttributeFilterType}Select`"},{"b":"name","d":"expression","e":"`${customAttributeFilterType}Select`"},{"b":"dataQa","d":"expression","e":"`${customAttributeFilterType}Select`"},{"b":"label","d":"jsx","e":""},{"b":"placeholder","d":"expression","e":"selectedOptions.length > 0 ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedOptions"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"CustomAttributeValueAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getCustomAttributeValueOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowCustomAttributeValueOptionDivider"},{"b":"onChange","d":"variable","e":"handleChangeCustomAttributeValues"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchCustomAttributeValueOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isCustomAttributeValueOptionEqual"},{"b":"renderTags","d":"function","e":"() =>\n\t\t\t\t\t\tdebouncedSelectedOptions &&\n\t\t\t\t\t\tdebouncedSelectedOptions.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[customAttributeFilterType] = input;\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[filterType] = input;\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"expression","e":"FilterTypeLabel[filterType]"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"placeholder","d":"string","e":"All Domains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"multiple","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.eventApiProduct.labels.messagingService"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchMems"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? en.eventApi.error.requiredGatewayMessagingService : null"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"621px"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"},{"b":"fullWidth","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"multiple","d":"boolean","e":"true"},{"b":"options","d":"expression","e":"getAutoCompleteOptions(level)"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"filterValues"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"value","d":"expression","e":"getAutoCompleteValue(value, level, name)"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"622px"},{"b":"limitTags","d":"number","e":"2"},{"b":"dataQa","d":"variable","e":"name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"key","d":"variable","e":"FormNameClientProfileName"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"variable","e":"templateOptionSelected"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"updateTemplateOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"templateOptions"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t// template selected\n\t\t\t\t\t\t\t\t\t\t\t\tconst template = templates.find((template) => template.id === e.value?.value);\n\t\t\t\t\t\t\t\t\t\t\t\tconst clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tsetTemplateOptionSelected({\n\t\t\t\t\t\t\t\t\t\t\t\t\tname: template.name,\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalue: template.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdescription: template.description,\n\t\t\t\t\t\t\t\t\t\t\t\t\tclientProfileName: clientProfileName\n\t\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(clientProfileName);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t// template cleared\n\t\t\t\t\t\t\t\t\t\t\t\treset(true);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"disabled","d":"expression","e":"templates.length === 0"},{"b":"required","d":"boolean","e":"true"},{"b":"multiple","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"key","d":"variable","e":"FormNameTemplate"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"variable","e":"templateOptionSelected"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"updateTemplateOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"templateOptions"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\tselectTemplate(templates.find((template) => template.id === e.value.value));\n\t\t\t\t\t\t\t\t\t\t\t\t// template changed - keep queue name, clear other properties\n\t\t\t\t\t\t\t\t\t\t\t\tupdateUserConfigValues({ queueName: queueName }, true);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"disabled","d":"expression","e":"isTemplateSelectionDisabled(templates, templateOutOfSync)"},{"b":"required","d":"boolean","e":"true"},{"b":"multiple","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"placeholder","d":"string","e":"All Domains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"searchLocalDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"id","d":"string","e":"domainsSearch"},{"b":"name","d":"string","e":"domainsSearch"},{"b":"dataQa","d":"string","e":"domainsSearch"},{"b":"placeholder","d":"string","e":"All Domains"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchDomains"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"variable","e":"matchingDomainOptions"},{"b":"onChange","d":"variable","e":"onDomainSelectChange"},{"b":"value","d":"variable","e":"selectedDomain"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"id","d":"string","e":"eventMeshSearch"},{"b":"name","d":"string","e":"eventMeshSearch"},{"b":"dataQa","d":"string","e":"eventMeshSearch"},{"b":"placeholder","d":"expression","e":"selectedEventMeshes?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedEventMeshes"},{"b":"options","d":"variable","e":"matchingEventMeshes"},{"b":"itemComponent","d":"variable","e":"getEventMeshSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getEventMeshSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChangeEventMeshes"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEventMeshOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isEventMeshSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{selectedEventMeshes?.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"id","d":"string","e":"requestorSelect"},{"b":"name","d":"string","e":"requestorSelect"},{"b":"dataQa","d":"string","e":"requestorSelect"},{"b":"label","d":"string","e":"Requestor"},{"b":"placeholder","d":"expression","e":"selectedRequestors?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedRequestors"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"function","e":"(option) => option.name"},{"b":"onChange","d":"variable","e":"handleRequestorChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option.value === value.value"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\t\t\t\t\t\t\t\trequestorInputRef.current = input;\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"filterLabel"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx","c":[{"b":"id","d":"string","e":"templateEnvironmentAssociation"},{"b":"name","d":"string","e":"templateEnvironmentAssociation"},{"b":"dataQa","d":"string","e":"templateEnvironmentAssociation"},{"b":"placeholder","d":"expression","e":"displayedEnvironments?.length ? \"\" : \"Select environments\""},{"b":"required","d":"expression","e":"!!isRequired"},{"b":"readOnly","d":"expression","e":"!!isReadOnly"},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"displayedEnvironments"},{"b":"options","d":"variable","e":"matchingEnvironments"},{"b":"onChange","d":"variable","e":"handleChangeEnvironments"},{"b":"itemComponent","d":"variable","e":"EnvironmentMultiSelectOption"},{"b":"itemMappingCallback","d":"function","e":"(option) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...option,\n\t\t\t\t\t\tenvironmentOption: getEnvironmentChipObject(environmentOptions, option.id)\n\t\t\t\t\t};\n\t\t\t\t}"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchEnvironmentsOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isEnvironmentSelectAutocompleteOptionEqual"},{"b":"hasErrors","d":"expression","e":"!!hasErrors"},{"b":"helperText","d":"variable","e":"helperText"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tautocompleteRef.current = input;\n\t\t\t\t}"},{"b":"renderTags","d":"function","e":"() =>\n\t\t\t\t\tdisplayedEnvironments?.length > 0 && (\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tcolumnGap={8}\n\t\t\t\t\t\t\tshowAll={false}\n\t\t\t\t\t\t\tcontainerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"id","d":"string","e":"shareFilterSelect"},{"b":"name","d":"string","e":"shareFilterSelect"},{"b":"dataQa","d":"string","e":"shareFilterSelect"},{"b":"label","d":"expression","e":"en.kpiMetricsDashboard.sharedFilter"},{"b":"value","d":"variable","e":"selectedSharedType"},{"b":"options","d":"variable","e":"filteredSharedTypeOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleShareFilterChange"},{"b":"fetchOptionsCallback","d":"variable","e":"filterSharedTypeOptions"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"175px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"id","d":"string","e":"brokerFilterSelect"},{"b":"name","d":"string","e":"brokerFilterSelect"},{"b":"dataQa","d":"string","e":"brokerFilterSelect"},{"b":"label","d":"expression","e":"en.kpiMetricsDashboard.brokerTypeFilter"},{"b":"value","d":"variable","e":"selectedBrokerType"},{"b":"options","d":"variable","e":"filteredBrokerTypeOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleBrokerTypeFilterChange"},{"b":"fetchOptionsCallback","d":"variable","e":"filterBrokerTypeOptions"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"175px"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"string","e":"serviceSearch"},{"b":"id","d":"string","e":"serviceSearch"},{"b":"dataQa","d":"string","e":"serviceSearch"},{"b":"label","d":"expression","e":"en.connectors.labels.eventBrokerService"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchServices"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"options","d":"expression","e":"showMIEnvironmentsFlag ? getOptionsForEnv : getOptions"},{"b":"onChange","d":"variable","e":"onServiceSelectChange"},{"b":"value","d":"variable","e":"selectedService"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.eventBrokerService"},{"b":"helperText","d":"expression","e":"validationEnabled && solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t: en.connectors.helperText.serviceName"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => option.value === \"no_services\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[{"b":"width","d":"string","e":"80%"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"`transformationAutocomplete_${nodeId}`"},{"b":"id","d":"expression","e":"`transformationAutocomplete_${nodeId}`"},{"b":"dataQa","d":"expression","e":"`transformationAutocomplete_${nodeId}`"},{"b":"label","d":"expression","e":"en.connectors.labels.transformation"},{"b":"required","d":"boolean","e":"true"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"multiple","d":"boolean","e":"false"},{"b":"value","d":"expression","e":"selectedTransformationFunction || undefined"},{"b":"options","d":"variable","e":"matchingTransformationFunctions"},{"b":"onChange","d":"variable","e":"handleTransformationFunctionChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptions"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","c":[{"b":"name","d":"expression","e":"`autocomplete-${id}`"},{"b":"id","d":"expression","e":"`autocomplete-${id}`"},{"b":"dataQa","d":"expression","e":"`autocomplete-${id}`"},{"b":"label","d":"expression","e":"typeof data.label === \"string\"\n\t\t\t\t\t\t\t\t? data.label\n\t\t\t\t\t\t\t\t: data.type === \"input\"\n\t\t\t\t\t\t\t\t? (en.transformations.labels.sourceItem as string)\n\t\t\t\t\t\t\t\t: (en.transformations.labels.targetItem as string)"},{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"expression","e":"selectedField || undefined"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"multiple","d":"boolean","e":"false"},{"b":"options","d":"variable","e":"matchingData"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptions"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"showGroupDivider","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${filterType}Select`"},{"b":"name","d":"expression","e":"`${filterType}Select`"},{"b":"dataQa","d":"expression","e":"`${filterType}Select`"},{"b":"label","d":"variable","e":"label"},{"b":"placeholder","d":"expression","e":"selectedItemValues?.length ? \"\" : \"No Filters\""},{"b":"multiple","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"selectedItemValues"},{"b":"options","d":"variable","e":"matchingOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"renderTags","d":"function","e":"() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)"},{"b":"openOnFocus","d":"boolean","e":"true"},{"b":"inputRef","d":"function","e":"(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}"},{"b":"maxHeight","d":"string","e":"22rem"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[{"b":"name","d":"string","e":"userAccessSelect-search"},{"b":"dataQa","d":"expression","e":"`userAccessSelect-${resourceAssignment.userId}`"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option?.value === value?.value"},{"b":"itemMappingCallback","d":"function","e":"(option) => option ?? { name: \"\", value: \"\" }"},{"b":"fetchOptionsCallback","d":"function","e":"(searchTerm) => setSearchTerm(searchTerm)"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]"},{"b":"options","d":"variable","e":"userOptions"},{"b":"value","d":"variable","e":"selectedOption"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"hasErrors","d":"expression","e":"!!resourceAssignment.error"},{"b":"helperText","d":"expression","e":"resourceAssignment.error"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"version"},{"b":"maxHeight","d":"string","e":"30vh"},{"b":"name","d":"string","e":"targetVersion"},{"b":"label","d":"string","e":"Target Version"},{"b":"hasErrors","d":"expression","e":"!!formError"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"helperText","d":"expression","e":"formError ? formError : \"\""},{"b":"getOptionDisabledCallback","d":"function","e":"(option) => option.value === currentVersion"},{"b":"fetchOptionsCallback","d":"expression","e":"useDebouncedCallback(fetchOptionsCallback, 150)"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\tsetFormError(\"\");\n\t\t\t\t\t\tsetVersion(event.value as SolaceSelectAutocompleteItemProps);\n\t\t\t\t\t}"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","c":[{"b":"id","d":"string","e":"region"},{"b":"name","d":"string","e":"region"},{"b":"dataQa","d":"string","e":"region"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"disabled","d":"variable","e":"regionDisabled"},{"b":"placeholder","d":"expression","e":"getPlaceholder()"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchOptions"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isOptionEqual"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"regionToString"},{"b":"itemMappingCallback","d":"variable","e":"itemToRegion"},{"b":"groupByCallback","d":"variable","e":"getGroupBy"},{"b":"getOptionDisabledCallback","d":"variable","e":"isOptionDisabled"},{"b":"options","d":"variable","e":"matchingRegions"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","c":[{"b":"id","d":"string","e":"clusterName"},{"b":"name","d":"string","e":"clusterName"},{"b":"dataQa","d":"string","e":"clusterName"},{"b":"readOnly","d":"variable","e":"isCloning"},{"b":"required","d":"expression","e":"!!edit"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchOptions"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isOptionEqual"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"clusterNameToString"},{"b":"itemMappingCallback","d":"variable","e":"itemMappingCallback"},{"b":"helperText","d":"expression","e":"errorText ? errorText : t({ id: \"id_cluster_name_info\", message: \"Type a new cluster name or select an existing one.\" })"},{"b":"options","d":"variable","e":"matchingClusterNames"},{"b":"value","d":"variable","e":"value"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"maxHeight","d":"expression","e":"theme.spacing(30)"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[{"b":"name","d":"string","e":"userAccessSelect-search"},{"b":"dataQa","d":"expression","e":"`userAccessSelect-${resourceAssignment.userId}`"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"isOptionEqualToValueCallback","d":"function","e":"(option, value) => option?.value === value?.value"},{"b":"itemMappingCallback","d":"function","e":"(option) => option ?? { name: \"\", value: \"\" }"},{"b":"fetchOptionsCallback","d":"function","e":"(searchTerm) => setSearchTerm(searchTerm)"},{"b":"getOptionDisabledCallback","d":"function","e":"(option) =>\n\t\t\t\t!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]"},{"b":"options","d":"variable","e":"userOptions"},{"b":"value","d":"variable","e":"selectedOption"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"hasErrors","d":"expression","e":"!!resourceAssignment.error"},{"b":"helperText","d":"expression","e":"resourceAssignment.error"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[{"b":"label","d":"expression","e":"en.auditLogs.username"},{"b":"id","d":"string","e":"usernameSelectFilter"},{"b":"name","d":"string","e":"usernameSelectFilter"},{"b":"dataQa","d":"string","e":"usernameSelectFilter"},{"b":"onChange","d":"function","e":"(e) => handleEmailSelection(e.value as IEmailOption)"},{"b":"value","d":"expression","e":"filters.email.value ? selectedEmail : undefined"},{"b":"options","d":"expression","e":"emailSearchTerm ? matchingEmails : getEmails(usersDetails)"},{"b":"itemComponent","d":"function","e":"(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"id","d":"string","e":"claimMappingUserGroups"},{"b":"name","d":"string","e":"claimMappingUserGroups"},{"b":"dataQa","d":"string","e":"claimMappingUserGroups"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])"},{"b":"value","d":"variable","e":"selectedUserGroups"},{"b":"options","d":"expression","e":"userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)"},{"b":"itemComponent","d":"function","e":"(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tsubText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(\", \"),\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"label","d":"expression","e":"userGroupManagement.defaultUserGroupLabel"},{"b":"hasErrors","d":"boolean","e":"true"},{"b":"id","d":"string","e":"customizeUserGroup"},{"b":"name","d":"string","e":"customizeUserGroup"},{"b":"dataQa","d":"string","e":"customizeUserGroup"},{"b":"required","d":"boolean","e":"true"},{"b":"helperText","d":"expression","e":"!selectedUserGroup ? userGroupManagement.selectDefaultGroup : \"\""},{"b":"placeholder","d":"expression","e":"selectedUserGroup?.name"},{"b":"options","d":"expression","e":"userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)"},{"b":"itemComponent","d":"function","e":"(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleUserGroupSelectChange"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFetchProtocolOptionsCallback"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"width","d":"string","e":"30rem"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"id","d":"string","e":"servicesDropdownId"},{"b":"name","d":"string","e":"servicesDropdown"},{"b":"dataQa","d":"string","e":"supportPageService"},{"b":"onChange","d":"variable","e":"handleServiceDropdown"},{"b":"fetchOptionsCallback","d":"variable","e":"handleServiceCallback"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"options","d":"variable","e":"services"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"value","d":"variable","e":"dropdownValueFromParam"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"id","d":"string","e":"userGroupRoleDropdownId"},{"b":"name","d":"string","e":"userGroupRoleDropdown"},{"b":"width","d":"string","e":"800px"},{"b":"label","d":"expression","e":"userGroups.ugDialog.roles"},{"b":"dataQa","d":"string","e":"userGroupRoleDropdownQa"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"handleUserGroupRoleChange"},{"b":"value","d":"expression","e":"dialogState.roleValue ? dialogState.roleValue : currentFilters"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFiltersCallback"},{"b":"getOptionDisabledCallback","d":"variable","e":"handleRolesDisabled"},{"b":"hasErrors","d":"variable","e":"hasRoleError"},{"b":"helperText","d":"expression","e":"hasRoleError ? userGroups.ugDialog.ugRoleError : \"\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx","c":[{"b":"id","d":"string","e":"transferServicesDropdownSelect"},{"b":"name","d":"string","e":"transferServicesDropdownSelect"},{"b":"dataQa","d":"string","e":"transferServicesDropdownSelect"},{"b":"fetchOptionsCallback","d":"variable","e":"fetchOptionsCallback"},{"b":"required","d":"boolean","e":"true"},{"b":"multiple","d":"boolean","e":"false"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"onChange","d":"variable","e":"handleOnChange"},{"b":"options","d":"variable","e":"usersDropdownList"},{"b":"title","d":"string","e":"Select a user to transfer services to"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"multiple","d":"boolean","e":"true"},{"b":"name","d":"string","e":"cloudProvider"},{"b":"label","d":"string","e":"Cloud Provider"},{"b":"dataQa","d":"string","e":"cloudProviderSelect"},{"b":"width","d":"string","e":"300px"},{"b":"options","d":"variable","e":"filteredCloudProviderOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"filterCloudProviderOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(item: { value: string; name: string; }) => item"},{"b":"value","d":"variable","e":"filteredCloudProviders"},{"b":"onChange","d":"variable","e":"handleCloudProviderChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"multiple","d":"boolean","e":"true"},{"b":"name","d":"string","e":"k8sVersion"},{"b":"label","d":"string","e":"Kubernetes Version"},{"b":"dataQa","d":"string","e":"k8sVersionSelect"},{"b":"width","d":"string","e":"300px"},{"b":"options","d":"variable","e":"filteredK8sVersionOptions"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"fetchOptionsCallback","d":"variable","e":"filterK8sVersionOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(item: { value: string; name: string; }) => item"},{"b":"value","d":"variable","e":"filteredK8sVersions"},{"b":"onChange","d":"variable","e":"handleK8sVersionChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"filterBy"},{"b":"name","d":"string","e":"filterBy"},{"b":"label","d":"string","e":"Filter By"},{"b":"width","d":"string","e":"500px"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as Filter[]);\n\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"currentFilters"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFiltersCallback"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"filterBy"},{"b":"name","d":"string","e":"filterBy"},{"b":"label","d":"string","e":"Filter By"},{"b":"width","d":"string","e":"500px"},{"b":"multiple","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as { name: string; value: string }[]);\n\t\t\t\t\t\t}"},{"b":"value","d":"variable","e":"currentFilters"},{"b":"options","d":"variable","e":"filterOptions"},{"b":"itemComponent","d":"variable","e":"SolaceSelectAutocompleteItem"},{"b":"itemMappingCallback","d":"function","e":"(option) => option"},{"b":"optionsLabelCallback","d":"variable","e":"getSolaceSelectAutocompleteOptionLabel"},{"b":"getShowOptionDividerCallback","d":"variable","e":"getShowSolaceSelectAutocompleteOptionDivider"},{"b":"groupByCallback","d":"variable","e":"getSolaceSelectAutocompleteGroupBy"},{"b":"isOptionEqualToValueCallback","d":"variable","e":"isSolaceSelectAutocompleteOptionEqual"},{"b":"fetchOptionsCallback","d":"variable","e":"handleFiltersCallback"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/totalUsages.json new file mode 100644 index 000000000..31ff414b7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/totalUsages.json @@ -0,0 +1 @@ +48 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/usagesByMfe.json new file mode 100644 index 000000000..fe868fedf --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocomplete/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":28,"intg":4,"mc":5,"saas":7,"infra":2,"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/commonProps.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/commonProps.json new file mode 100644 index 000000000..d87692004 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/commonProps.json @@ -0,0 +1 @@ +[{"name":"...","count":10},{"name":"name","count":9},{"name":"value","count":9},{"name":"supplementalText","count":6},{"name":"subText","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/customization.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/files.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/files.json new file mode 100644 index 000000000..ba667c8c0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/instances.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/instances.json new file mode 100644 index 000000000..c98644a8e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"name","d":"expression","e":"RESOURCE_LABEL_BY_ROLE[role]"},{"b":"value","d":"variable","e":"role"},{"b":"subText","d":"expression","e":"RESOURCE_DESCRIPTION_BY_ROLE[role]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"messages.credentials.solaceClientUsername.label"},{"b":"value","d":"expression","e":"CONFIGURATION_TYPES.solaceClientUsername"},{"b":"supplementalText","d":"expression","e":"isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"messages.credentials.solaceAuthorizationGroup.label"},{"b":"value","d":"expression","e":"CONFIGURATION_TYPES.solaceAuthorizationGroup"},{"b":"supplementalText","d":"expression","e":"isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"...","d":"spread","e":"option"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"...","d":"spread","e":"eventMesh"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"...","d":"spread","e":"version"},{"b":"supplementalText","d":"expression","e":"isSecondVersionOptions && selectedVersionId === version.id ? \"No Difference\" : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"name","d":"expression","e":"EMA_MODES_LABELS.scanWithEventPortal"},{"b":"value","d":"expression","e":"EMA_MODES.scanFromEventPortal"},{"b":"subText","d":"string","e":"Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal."}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"name","d":"expression","e":"EMA_MODES_LABELS.uploadScanFile"},{"b":"value","d":"expression","e":"EMA_MODES.uploadScanFile"},{"b":"subText","d":"string","e":"Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode."}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"expression","e":"tracingProfile.tracingType[TracingType.Insights]"},{"b":"value","d":"expression","e":"TracingType.Insights"},{"b":"supplementalText","d":"expression","e":"isInsights ? \"Default\" : \"Not Available\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"name","d":"expression","e":"tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]"},{"b":"value","d":"expression","e":"TlsConnectionType.SecureSkipValidation"},{"b":"subText","d":"string","e":"Skips certificate authority validation"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"expression","e":"createBizOrganization.orgDetails.EnterpriseAcc"},{"b":"supplementalText","d":"expression","e":"createBizOrganization.orgDetails.defaultAcc"},{"b":"value","d":"string","e":"enterprise"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"name","d":"expression","e":"item.id ?? \"\""},{"b":"supplementalText","d":"string","e":"Current Version"},{"b":"value","d":"expression","e":"connectorVersion ?? \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/totalUsages.json new file mode 100644 index 000000000..4800c7da6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/totalUsages.json @@ -0,0 +1 @@ +58 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/usagesByMfe.json new file mode 100644 index 000000000..19bc06773 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteItem/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":35,"intg":4,"mc":5,"saas":9,"infra":1,"maas-ops-react":4} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/commonProps.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/commonProps.json new file mode 100644 index 000000000..8dcc0d847 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/commonProps.json @@ -0,0 +1 @@ +[{"name":"containerWidth","count":8},{"name":"tags","count":8},{"name":"tagMaxWidth","count":8},{"name":"overflowIndicatorLabel","count":8},{"name":"overflowIndicatorLabelSingular","count":8},{"name":"onDelete","count":8},{"name":"dataQa","count":8},{"name":"numOfRowsToShow","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/customization.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/files.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/files.json new file mode 100644 index 000000000..fd2d899f7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/instances.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/instances.json new file mode 100644 index 000000000..b60097313 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${FilterType.eventMesh}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 190}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${customAttributeFilterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 190}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"containerWidth","d":"expression","e":"filtersWidth[FilterType.eventMesh]"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"numOfRowsToShow","d":"number","e":"1"},{"b":"tagMaxWidth","d":"expression","e":"filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null"},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"dataQa","d":"expression","e":"\"eventMeshSearchSelect-tags\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx","c":[{"b":"containerWidth","d":"expression","e":"filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${FilterType.requestor}-tags`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"variable","e":"containerWidth"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"containerWidth ? `${containerWidth - 180}px` : null"},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx","c":[{"b":"containerWidth","d":"number","e":"300"},{"b":"tags","d":"variable","e":"selectedTags"},{"b":"tagMaxWidth","d":"expression","e":"\"200px\""},{"b":"overflowIndicatorLabel","d":"expression","e":"\"Filters\""},{"b":"overflowIndicatorLabelSingular","d":"expression","e":"\"Filter\""},{"b":"onDelete","d":"variable","e":"handleDeleteTag"},{"b":"dataQa","d":"expression","e":"`${filterType}Select-tags`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/totalUsages.json new file mode 100644 index 000000000..301160a93 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/totalUsages.json @@ -0,0 +1 @@ +8 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json new file mode 100644 index 000000000..440cc64e4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSelectAutocompleteResponsiveTags/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7,"intg":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSidePanelLayout/commonProps.json b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/commonProps.json new file mode 100644 index 000000000..1ce49c665 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/commonProps.json @@ -0,0 +1 @@ +[{"name":"showSidePanel","count":23},{"name":"sidePanelContent","count":23},{"name":"sidePanelWidth","count":23},{"name":"sidePanelPosition","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSidePanelLayout/customization.json b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSidePanelLayout/files.json b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/files.json new file mode 100644 index 000000000..8bba9fb30 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSidePanelLayout/instances.json b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/instances.json new file mode 100644 index 000000000..66726b924 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedDomain"},{"b":"sidePanelContent","d":"expression","e":"renderSidePanel()"},{"b":"sidePanelWidth","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!highlightedRow"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEventApi"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEventApiProduct"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedApplication"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEvent"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedEnum"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedSchema"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedMem"},{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"sidePanelContent","d":"expression","e":"selectedMem ? (\n\t\t\t\t\t\t undefined}\n\t\t\t\t\t\t\tuserMap={entityCreateUpdateUsersMap}\n\t\t\t\t\t\t/>\n\t\t\t\t\t) : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"showSidePanel","d":"boolean","e":"true"},{"b":"sidePanelWidth","d":"number","e":"427"},{"b":"sidePanelContent","d":"variable","e":"entitySidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!!selectedRow"},{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"sidePanelContent","d":"variable","e":"sidePanel"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"showSidePanel","d":"boolean","e":"true"},{"b":"sidePanelWidth","d":"number","e":"394"},{"b":"sidePanelPosition","d":"expression","e":"SolacePanelPosition.LEFT"},{"b":"sidePanelContent","d":"expression","e":"renderSidePanelContent()"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","c":[{"b":"showSidePanel","d":"expression","e":"!isEmpty(selectedRowIds)"},{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"sidePanelContent","d":"expression","e":"renderSidePanel()"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"showSidePanel","d":"variable","e":"showPanel"},{"b":"sidePanelWidth","d":"number","e":"480"},{"b":"sidePanelContent","d":"expression","e":"selectedLibrary ? (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{selectedLibrary.displayName}\n\t\t\t\t\t\t\t handleSelectLibrary(null)}>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tGet Started\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"showSidePanel","d":"variable","e":"panelOpen"},{"b":"sidePanelContent","d":"variable","e":"sidePanelMessage"},{"b":"sidePanelWidth","d":"variable","e":"MAX_WIDTH"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","c":[{"b":"sidePanelWidth","d":"number","e":"500"},{"b":"showSidePanel","d":"boolean","e":"true"},{"b":"sidePanelContent","d":"jsx","e":""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx","c":[{"b":"sidePanelWidth","d":"number","e":"400"},{"b":"showSidePanel","d":"expression","e":"!!selectedRowId"},{"b":"sidePanelContent","d":"jsx","e":""}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSidePanelLayout/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/totalUsages.json new file mode 100644 index 000000000..b39356075 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/totalUsages.json @@ -0,0 +1 @@ +23 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSidePanelLayout/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/usagesByMfe.json new file mode 100644 index 000000000..79e3dd2c5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSidePanelLayout/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":18,"intg":1,"mc":1,"saas":1,"maas-ops-react":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSplitPane/commonProps.json b/mrc-usage-report-data/per-component/SolaceSplitPane/commonProps.json new file mode 100644 index 000000000..bc3845be4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSplitPane/commonProps.json @@ -0,0 +1 @@ +[{"name":"minSize","count":2},{"name":"defaultSize","count":2},{"name":"maxSize","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSplitPane/customization.json b/mrc-usage-report-data/per-component/SolaceSplitPane/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSplitPane/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSplitPane/files.json b/mrc-usage-report-data/per-component/SolaceSplitPane/files.json new file mode 100644 index 000000000..78a44cfde --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSplitPane/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSplitPane/instances.json b/mrc-usage-report-data/per-component/SolaceSplitPane/instances.json new file mode 100644 index 000000000..859fa24a1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSplitPane/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"minSize","d":"number","e":"500"},{"b":"defaultSize","d":"number","e":"500"},{"b":"maxSize","d":"expression","e":"-700"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"minSize","d":"number","e":"500"},{"b":"defaultSize","d":"number","e":"500"},{"b":"maxSize","d":"expression","e":"Math.max(500, leftPanelMaxWidth)"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSplitPane/totalUsages.json b/mrc-usage-report-data/per-component/SolaceSplitPane/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSplitPane/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceSplitPane/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceSplitPane/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceSplitPane/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStack/commonProps.json b/mrc-usage-report-data/per-component/SolaceStack/commonProps.json new file mode 100644 index 000000000..895e6ecf5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStack/commonProps.json @@ -0,0 +1 @@ +[{"name":"spacing","count":72},{"name":"direction","count":49},{"name":"padding","count":17},{"name":"alignItems","count":15},{"name":"justifyContent","count":14},{"name":"width","count":10},{"name":"height","count":7},{"name":"data-qa","count":6},{"name":"bgcolor","count":6},{"name":"marginTop","count":4}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStack/customization.json b/mrc-usage-report-data/per-component/SolaceStack/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStack/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStack/files.json b/mrc-usage-report-data/per-component/SolaceStack/files.json new file mode 100644 index 000000000..577d634c3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStack/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStack/instances.json b/mrc-usage-report-data/per-component/SolaceStack/instances.json new file mode 100644 index 000000000..57ed27fb0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStack/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[{"b":"width","d":"number","e":"600"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"space-between"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"paddingLeft","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"paddingLeft","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"paddingLeft","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"flex-start"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"marginTop","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"gap","d":"number","e":"1"},{"b":"marginBottom","d":"number","e":"1"},{"b":"data-qa","d":"string","e":"manageCredentialsEditor"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx","c":[{"b":"spacing","d":"number","e":"4"},{"b":"width","d":"expression","e":"\"100%\""},{"b":"mb","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"maxHeight","d":"expression","e":"\"360px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"spacing","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"spacing","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"width","d":"expression","e":"\"100%\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"p","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"},{"b":"paddingTop","d":"expression","e":"theme.spacing(3)"},{"b":"spacing","d":"number","e":"1.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"spacing","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"spacing","d":"number","e":"3"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"direction","d":"string","e":"row"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"spacing","d":"number","e":"0.25"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"m","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"my","d":"number","e":"2.5"},{"b":"width","d":"expression","e":"\"fit-content\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"spacing","d":"number","e":"2.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx","c":[{"b":"height","d":"expression","e":"allItems.length !== 0 ? `calc(100vh + 80px)` : \"100%\""},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"spacing","d":"number","e":"5"},{"b":"margin","d":"expression","e":"createMode ? 0 : 3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"spacing","d":"number","e":"5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"useFlexGap","d":"boolean","e":"true"},{"b":"flexWrap","d":"expression","e":"\"wrap\""},{"b":"pl","d":"number","e":"3"},{"b":"pr","d":"number","e":"3"},{"b":"height","d":"expression","e":"data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx","c":[{"b":"spacing","d":"number","e":"3"},{"b":"height","d":"expression","e":"`calc(100vh - 80px)`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"data-qa","d":"string","e":"connectorsSidePanel"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[{"b":"spacing","d":"number","e":"5"},{"b":"margin","d":"expression","e":"createMode ? 0 : 3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[{"b":"spacing","d":"number","e":"0"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"useFlexGap","d":"boolean","e":"true"},{"b":"flexWrap","d":"string","e":"wrap"},{"b":"height","d":"expression","e":"data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"spacing","d":"number","e":"5"},{"b":"margin","d":"expression","e":"createMode ? 0 : 3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"spacing","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"alignItems","d":"expression","e":"\"center\""},{"b":"padding","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"justifyContent","d":"expression","e":"\"flex-end\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"ml","d":"number","e":"3"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"spacing","d":"number","e":"6"},{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"spacing","d":"number","e":"0"},{"b":"ml","d":"expression","e":"\"auto\""},{"b":"mt","d":"expression","e":"\"auto\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","c":[{"b":"spacing","d":"number","e":"4.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"spacing","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"spacing","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"padding","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"start"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"height","d":"number","e":"84"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"},{"b":"borderBottom","d":"expression","e":"showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined"},{"b":"alignItems","d":"expression","e":"\"center\""},{"b":"padding","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"height","d":"number","e":"84"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"},{"b":"borderBottom","d":"expression","e":"showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined"},{"b":"alignItems","d":"expression","e":"\"center\""},{"b":"padding","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"width","d":"string","e":"38rem"},{"b":"height","d":"string","e":"auto"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"end"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx","c":[{"b":"style","d":"object","e":"{ minHeight: \"45vh\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""},{"b":"spacing","d":"number","e":"1"},{"b":"marginTop","d":"variable","e":"marginTop"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx","c":[{"b":"gap","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"marginTop","d":"number","e":"2"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w20"},{"b":"padding","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx","c":[{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"1"},{"b":"justifyContent","d":"expression","e":"'flex-end'"},{"b":"marginTop","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"},{"b":"data-qa","d":"string","e":"cluster-status-tab"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"},{"b":"justifyContent","d":"string","e":"space-between"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"},{"b":"data-qa","d":"string","e":"cluster-status-tab"},{"b":"style","d":"object","e":"{ backgroundColor: theme.palette.ux.background.w10, border: `1px solid ${theme.palette.ux.secondary.w20}`, borderRadius: theme.shape.borderRadius }"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"spacing","d":"expression","e":"theme.spacing(1)"},{"b":"data-qa","d":"string","e":"cluster-system-components-tab"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"direction","d":"expression","e":"\"row\""},{"b":"alignItems","d":"string","e":"center"},{"b":"padding","d":"expression","e":"theme.spacing(2, 2, 2, 2)"},{"b":"marginX","d":"expression","e":"theme.spacing(2)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"spacing","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ paddingLeft: 1 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"2"},{"b":"paddingBottom","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"1"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"maxWidth","d":"expression","e":"\"25%\""},{"b":"padding","d":"expression","e":"theme.spacing(1)"},{"b":"alignItems","d":"string","e":""},{"b":"justifyContent","d":"string","e":"space-between"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.secondary.w10"},{"b":"flex","d":"expression","e":"'1 1 0px'"},{"b":"border","d":"number","e":"1"},{"b":"borderRadius","d":"number","e":"1"},{"b":"borderColor","d":"expression","e":"theme.palette.ux.secondary.w40"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"data-qa","d":"string","e":"clusters-summary"},{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"3"},{"b":"margin","d":"expression","e":"theme.spacing(3, 6)"},{"b":"padding","d":"expression","e":"theme.spacing(2)"},{"b":"bgcolor","d":"expression","e":"theme.palette.ux.background.w10"},{"b":"border","d":"number","e":"1"},{"b":"borderRadius","d":"number","e":"1"},{"b":"borderColor","d":"expression","e":"theme.palette.ux.secondary.w70"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"direction","d":"expression","e":"\"row\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"spacing","d":"number","e":"1.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"my","d":"number","e":"1.5"},{"b":"spacing","d":"number","e":"1.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"column"},{"b":"spacing","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"data-testid","d":"string","e":"filter-by"},{"b":"direction","d":"string","e":"row"},{"b":"justifyContent","d":"string","e":"space-between"},{"b":"alignItems","d":"string","e":"center"},{"b":"spacing","d":"number","e":"3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"gap","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"direction","d":"string","e":"row"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"spacing","d":"number","e":"1"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStack/totalUsages.json b/mrc-usage-report-data/per-component/SolaceStack/totalUsages.json new file mode 100644 index 000000000..2bab4226f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStack/totalUsages.json @@ -0,0 +1 @@ +157 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStack/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceStack/usagesByMfe.json new file mode 100644 index 000000000..818c60540 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStack/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":64,"intg":53,"mc":3,"saas":12,"infra":13,"maas-ops-react":12} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStackLabel/commonProps.json b/mrc-usage-report-data/per-component/SolaceStackLabel/commonProps.json new file mode 100644 index 000000000..c6a4d199d --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStackLabel/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":10},{"name":"required","count":6},{"name":"bold","count":5},{"name":"htmlForId","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStackLabel/customization.json b/mrc-usage-report-data/per-component/SolaceStackLabel/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStackLabel/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStackLabel/files.json b/mrc-usage-report-data/per-component/SolaceStackLabel/files.json new file mode 100644 index 000000000..781dde298 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStackLabel/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStackLabel/instances.json b/mrc-usage-report-data/per-component/SolaceStackLabel/instances.json new file mode 100644 index 000000000..388d0fd52 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStackLabel/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"id","d":"expression","e":"`environment-type-label`"},{"b":"htmlForId","d":"expression","e":"`isProduction`"},{"b":"bold","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"required","d":"expression","e":"!!required"},{"b":"id","d":"expression","e":"id ?? name.toLowerCase()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"id","d":"string","e":"metadata"},{"b":"bold","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"required","d":"variable","e":"required"},{"b":"bold","d":"variable","e":"bold"},{"b":"id","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"bold","d":"boolean","e":"true"},{"b":"id","d":"string","e":"currentDatacenterIdField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"bold","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"id","d":"string","e":"sourceDatacenterIdField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"id","d":"variable","e":"id"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStackLabel/totalUsages.json b/mrc-usage-report-data/per-component/SolaceStackLabel/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStackLabel/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStackLabel/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceStackLabel/usagesByMfe.json new file mode 100644 index 000000000..724c478f5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStackLabel/usagesByMfe.json @@ -0,0 +1 @@ +{"saas":2,"maas-ops-react":8} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStepper/commonProps.json b/mrc-usage-report-data/per-component/SolaceStepper/commonProps.json new file mode 100644 index 000000000..fb5c134c8 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStepper/commonProps.json @@ -0,0 +1 @@ +[{"name":"steps","count":3},{"name":"activeStep","count":3},{"name":"setActiveStep","count":3},{"name":"onClose","count":3},{"name":"onSubmit","count":3},{"name":"submitLabel","count":3},{"name":"onSecondarySubmit","count":2},{"name":"secondarySubmitLabel","count":2},{"name":"disableSubmit","count":1},{"name":"stepContentOverflow","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStepper/customization.json b/mrc-usage-report-data/per-component/SolaceStepper/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStepper/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStepper/files.json b/mrc-usage-report-data/per-component/SolaceStepper/files.json new file mode 100644 index 000000000..f38f33a07 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStepper/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStepper/instances.json b/mrc-usage-report-data/per-component/SolaceStepper/instances.json new file mode 100644 index 000000000..b50c163e2 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStepper/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[{"b":"steps","d":"variable","e":"steps"},{"b":"activeStep","d":"variable","e":"activeStep"},{"b":"setActiveStep","d":"variable","e":"handleSetActiveStepRequest"},{"b":"onClose","d":"function","e":"() => history.push(\"/ep/designer\")"},{"b":"onSubmit","d":"variable","e":"handleSubmit"},{"b":"submitLabel","d":"expression","e":"messages.aiWizardButton.submit"},{"b":"disableSubmit","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx","c":[{"b":"steps","d":"expression","e":"renderSteps()"},{"b":"activeStep","d":"variable","e":"activeStep"},{"b":"setActiveStep","d":"function","e":"(step) => setActiveStep(step)"},{"b":"onClose","d":"variable","e":"onClose"},{"b":"onSubmit","d":"variable","e":"onSubmit"},{"b":"onSecondarySubmit","d":"variable","e":"onSecondarySubmit"},{"b":"submitLabel","d":"variable","e":"submitLabel"},{"b":"secondarySubmitLabel","d":"expression","e":"activeStep === steps.length - 1 ? secondarySubmitLabel : undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx","c":[{"b":"steps","d":"variable","e":"steps"},{"b":"activeStep","d":"variable","e":"activeStep"},{"b":"setActiveStep","d":"function","e":"(step) => setActiveStep(step)"},{"b":"onClose","d":"function","e":"() => discardChangesAndClose()"},{"b":"onSubmit","d":"function","e":"() => onSubmit(true)"},{"b":"secondarySubmitLabel","d":"expression","e":"activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined"},{"b":"onSecondarySubmit","d":"function","e":"() => onSubmit(false)"},{"b":"submitLabel","d":"expression","e":"en.connectors.buttons.createDeploy"},{"b":"stepContentOverflow","d":"expression","e":"showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStepper/totalUsages.json b/mrc-usage-report-data/per-component/SolaceStepper/totalUsages.json new file mode 100644 index 000000000..e440e5c84 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStepper/totalUsages.json @@ -0,0 +1 @@ +3 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceStepper/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceStepper/usagesByMfe.json new file mode 100644 index 000000000..b845f34b5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceStepper/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1,"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTable/commonProps.json b/mrc-usage-report-data/per-component/SolaceTable/commonProps.json new file mode 100644 index 000000000..052f99b83 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTable/commonProps.json @@ -0,0 +1 @@ +[{"name":"rows","count":67},{"name":"columns","count":67},{"name":"selectionType","count":67},{"name":"sortCallback","count":67},{"name":"renderCustomRowCells","count":38},{"name":"selectionChangedCallback","count":35},{"name":"loading","count":24},{"name":"hasColumnHiding","count":23},{"name":"showEmptyState","count":20},{"name":"renderCustomRowActionItem","count":19}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTable/customization.json b/mrc-usage-report-data/per-component/SolaceTable/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTable/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTable/files.json b/mrc-usage-report-data/per-component/SolaceTable/files.json new file mode 100644 index 000000000..457963af5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTable/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTable/instances.json b/mrc-usage-report-data/per-component/SolaceTable/instances.json new file mode 100644 index 000000000..65d78564e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTable/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"selectionType ?? SolaceTableSelectionType.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"renderCustomEmptyState","d":"expression","e":"renderCustomEmptyState ?? defaultEmptyState"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.MULTI"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"renderCustomEmptyState","d":"expression","e":"renderCustomEmptyState ?? defaultEmptyState"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"variable","e":"highlightedRowId"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"id","d":"string","e":"event-flow-discrepancy-preview-table"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"paginatedRows"},{"b":"columns","d":"variable","e":"columns"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItems"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"renderCustomEmptyState","d":"variable","e":"customEmptyState"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"expression","e":"hasColumnHiding ?? true"},{"b":"renderCustomRowActionItem","d":"expression","e":"renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No ${entityTypeToLabelLowercase(entityType)}s have been created`"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"variable","e":"highlightedRowId"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"},{"b":"disabledRowIds","d":"variable","e":"disabledRowIds"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","c":[{"b":"id","d":"expression","e":"\"metricsDashboardTable\""},{"b":"rows","d":"expression","e":"handleProcessEntities(entities)"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"hasColumnHiding","d":"boolean","e":"false"},{"b":"rowActionMenuItems","d":"null","e":"null"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\treturn renderRowCells(row);\n\t\t\t}"},{"b":"renderCustomEmptyState","d":"variable","e":"customEmptyState"},{"b":"showEmptyState","d":"expression","e":"!entities || entities.length === 0"},{"b":"sortCallback","d":"null","e":"null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"id","d":"expression","e":"`parentEventsTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"false"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"disabledRowIds","d":"variable","e":"existingSharedEventIds"},{"b":"emptyStateMessage","d":"expression","e":"`No matching events have been found`"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: false,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"id","d":"expression","e":"`parentEventsTable`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\t\treturn renderRowCells(row, columnsHiddenInfo);\n\t\t\t\t\t}"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"en.eventApi.labels.emptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\trenderChildren: renderExpandedRowContent,\n\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\tsetExpandedRowIds: setExpandedRowIds,\n\t\t\t\t\t\tselectRowWhenClickOnChildren: false\n\t\t\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowCells","d":"variable","e":"renderCustomRowCells"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"id","d":"expression","e":"`parentSchemasTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No matching schemas have been found`"},{"b":"renderCustomEmptyState","d":"expression","e":"hasFilter && clearFilterEmptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"id","d":"expression","e":"`parentApplicationsTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No matching applications have been found`"},{"b":"renderCustomEmptyState","d":"expression","e":"hasFilter && clearFilterEmptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"id","d":"expression","e":"`parentEventsTable`"},{"b":"rows","d":"variable","e":"displayedRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"null","e":"null"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No matching events have been found`"},{"b":"renderCustomEmptyState","d":"expression","e":"hasFilter && clearFilterEmptyState"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"id","d":"expression","e":"`eventAccessRequestTable`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"renderCustomEmptyState","d":"variable","e":"renderEmptyState"},{"b":"showEmptyState","d":"expression","e":"tableDataAvailable && !loading"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"expression","e":"highlightedRow?.id"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\t\t\tallowToggle: false,\n\t\t\t\t\t\trenderChildren: (row) => renderExpandedRowContent(row),\n\t\t\t\t\t\texpandedRowIds: [],\n\t\t\t\t\t\tsetExpandedRowIds: () => {\n\t\t\t\t\t\t\tvoid 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"loading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"id","d":"string","e":"remTable"},{"b":"renderCustomRowCells","d":"variable","e":"renderCustomRow"},{"b":"maxHeight","d":"expression","e":"`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`"},{"b":"renderCustomRowActionItem","d":"variable","e":"actions"},{"b":"rows","d":"variable","e":"remEntities"},{"b":"selectedRowIds","d":"array","e":"[selectedMem?.id]"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelection"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx","c":[{"b":"loading","d":"variable","e":"isLoading"},{"b":"id","d":"expression","e":"`${entityType}Table`"},{"b":"rows","d":"variable","e":"tableData"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.MULTI"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"highlightedRowId","d":"variable","e":"highlightedRowId"},{"b":"rowHighlightChangedCallback","d":"variable","e":"handleRowHighlight"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"rowActionMenuItems","d":"expression","e":"rowActionMenuItems?.length > 0 ? rowActionMenuItems : null"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"expression","e":"customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"handleDisplayedColumnsChanged"},{"b":"emptyStateMessage","d":"expression","e":"`No ${entityTypeToLabelLowercase(entityType)}s have been created`"},{"b":"expandableRowOptions","d":"variable","e":"expandableRowOptions"},{"b":"renderCustomEmptyState","d":"variable","e":"renderCustomEmptyState"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"},{"b":"customContentDefinitions","d":"variable","e":"customContentDefinitions"},{"b":"displayedCustomContent","d":"variable","e":"displayedCustomContent"},{"b":"customContentDisplayChangeCallback","d":"variable","e":"customContentDisplayChangeCallback"},{"b":"customMenuActions","d":"variable","e":"customMenuActions"},{"b":"crossPageRowSelectionSupported","d":"expression","e":"auditEntityType === null ? false : true"},{"b":"totalObjectCount","d":"variable","e":"entityCount"},{"b":"deselectedRowIds","d":"variable","e":"deselectedRowIds"},{"b":"allPagesSelectedByDefault","d":"variable","e":"allPagesSelectedByDefault"},{"b":"crossPageSelectionChangedCallback","d":"variable","e":"handleCrossPageRowSelectionsChange"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowCells","d":"variable","e":"renderCustomRowCells"},{"b":"showEmptyState","d":"variable","e":"tableDataAvailable"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"sortCallback","d":"function","e":"() => null"},{"b":"rows","d":"expression","e":"getFilteredRows()"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"columns","d":"expression","e":"TEMPLATE_TYPES[type].tableColumns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"emptyStateMessage","d":"expression","e":"messages[type].emptyTableMessage"},{"b":"showEmptyState","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"dataQa","d":"string","e":"connector-flow-list-table"},{"b":"id","d":"string","e":"connector-flow-list-table"},{"b":"rows","d":"variable","e":"allConnectors"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"function","e":"(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);\n\t\t\t\t}"},{"b":"sortedColumn","d":"expression","e":"columns.find((column) => column.field === connectorSort.split(\":\")[0])"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}"},{"b":"renderCustomRowActionItem","d":"variable","e":"customRowActionMenuItems"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"dataQa","d":"string","e":"agent-list-table"},{"b":"id","d":"string","e":"agent-list-table"},{"b":"rows","d":"variable","e":"allAgents"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"function","e":"(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetAgentSort(`sort=${column?.field}`);\n\t\t\t\t}"},{"b":"sortedColumn","d":"expression","e":"columns.find((column) => column.field === agentSort)"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[{"b":"dataQa","d":"string","e":"connector-flow-list-table"},{"b":"id","d":"string","e":"connector-flow-list-table"},{"b":"rows","d":"expression","e":"connectorErrorLogs ?? []"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"function","e":"function (): void {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}"},{"b":"renderCustomRowCells","d":"function","e":"(row: SolaceTableRow) => {\n\t\t\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t\t\t}"},{"b":"loading","d":"variable","e":"logsFetching"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"onRowSelected"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelectionsChange"},{"b":"sortCallback","d":"function","e":"() => null"},{"b":"rows","d":"variable","e":"auditLogsRows"},{"b":"columns","d":"variable","e":"AuditLogsTableColumns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomEmptyState","d":"variable","e":"emptyState"},{"b":"showEmptyState","d":"boolean","e":"true"},{"b":"loadingMessage","d":"expression","e":"en.auditLogs.loadingMessage"},{"b":"loading","d":"variable","e":"loading"},{"b":"maxHeight","d":"string","e":"40rem"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"rows","d":"expression","e":"showEmptyState ? [] : tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"function","e":"(columm) => handleSort(columm, drawdownData)"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"dataQa","d":"string","e":"drawdownUsageTable"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"variable","e":"sortClaimValuesDirection"},{"b":"rows","d":"expression","e":"groupMappingState ? [addMappingRow, ...tableRows] : tableRows"},{"b":"columns","d":"expression","e":"columns(groupMappingState)"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"loading","d":"boolean","e":"false"},{"b":"showEmptyState","d":"expression","e":"rows.length < 1"},{"b":"minHeight","d":"string","e":"476px"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"dataQa","d":"string","e":"notificationsTable"},{"b":"loading","d":"expression","e":"isLoading || isFetchingNotifications || deletingNotification"},{"b":"loadingMessage","d":"expression","e":"en.notifications[deletingNotification ? \"deletingNotifications\" : \"fetchingNotifications\"]"},{"b":"emptyStateMessage","d":"expression","e":"en.notifications.emptyStateMessage(showUnreadNotifications)"},{"b":"columns","d":"variable","e":"NOTIFICATION_TABLE_COLUMNS"},{"b":"displayedColumns","d":"variable","e":"NOTIFICATION_TABLE_COLUMNS"},{"b":"customContentDisplayChangeCallback","d":"function","e":"() => null"},{"b":"displayedCustomContent","d":"array","e":"[]"},{"b":"renderCustomRowActionItem","d":"variable","e":"getRowActionMenuItem"},{"b":"expandableRowOptions","d":"object","e":"{\n\t\t\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\t\t\trenderChildren: (data) => {\n\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tsetExpandedRowIds: expandRowHandler\n\t\t\t\t\t\t\t}"},{"b":"rows","d":"expression","e":"notifications ?? []"},{"b":"sortCallback","d":"function","e":"() => null"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"dataQa","d":"string","e":"userGroupsTableQA"},{"b":"customMenuActions","d":"variable","e":"resultsPerPageActions"},{"b":"hasColumnHiding","d":"boolean","e":"false"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"rows","d":"expression","e":"distributedTracingLimits ?? []"},{"b":"columns","d":"variable","e":"limitColumn"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomEmptyState","d":"function","e":"() => {tracingLimits.emptyStateMessage}"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"rows","d":"expression","e":"tracingProfiles ?? []"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"customRowActionMenuItems"},{"b":"renderCustomEmptyState","d":"function","e":"() => {tracingProfile.emptyStateMessage}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"userManagementColumns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"loading","d":"boolean","e":"false"},{"b":"showEmptyState","d":"expression","e":"tableRows.length < 1"},{"b":"minHeight","d":"string","e":"476px"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx","c":[{"b":"columns","d":"variable","e":"ServiceListTableColumns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"loading","d":"variable","e":"isPending"},{"b":"emptyStateMessage","d":"string","e":"No services found"},{"b":"minHeight","d":"expression","e":"theme.spacing(72)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"columns","d":"variable","e":"ClusterListTableColumns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"loading","d":"variable","e":"isLoading"},{"b":"emptyStateMessage","d":"string","e":"No clusters found"},{"b":"minHeight","d":"expression","e":"theme.spacing(54)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"rows","d":"variable","e":"filteredProds"},{"b":"selectionType","d":"expression","e":"readOnlyProducts ? SELECTION_TYPE.NONE : SELECTION_TYPE.MULTI"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelections"},{"b":"selectedRowIds","d":"variable","e":"selectedRowIds"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomEmptyState","d":"variable","e":"customEmptyStateView"},{"b":"data-qa","d":"expression","e":"`subscription-products-table`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"(sort) => {\n\t\t\t\t\t\t\tsetConnectorQuery(\n\t\t\t\t\t\t\t\tqueryBuilder({ orgId, pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}"},{"b":"rows","d":"variable","e":"connectors"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)"},{"b":"rows","d":"variable","e":"monitoringJobs"},{"b":"columns","d":"expression","e":"columns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderCustomRowActionItem"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"loading","d":"variable","e":"loadingJobs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)"},{"b":"rows","d":"variable","e":"orgDetails"},{"b":"columns","d":"expression","e":"columns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"loading","d":"variable","e":"loadingOrgs"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"sortCallback","d":"function","e":"() => {}"},{"b":"rows","d":"variable","e":"jobs"},{"b":"loading","d":"variable","e":"jobsLoading"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"columns","d":"variable","e":"memoizedColumns"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","c":[{"b":"columns","d":"expression","e":"getColumns()"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"noop"},{"b":"loadingMessage","d":"variable","e":"customErrorMessage"},{"b":"emptyStateMessage","d":"variable","e":"customErrorMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"},{"b":"emptyStateMessage","d":"string","e":"An error has occurred retrieving the upgrade logs. Contact @sc-launch-pad for support."},{"b":"loading","d":"expression","e":"loading && rows.length === 0"},{"b":"loadingMessage","d":"string","e":"Loading upgrade logs..."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"emptyStateMessage","d":"string","e":"An error has occurred triggering the Post-Upgrade Checks. Contact @sc-launch-pad for support."},{"b":"loading","d":"variable","e":"loading"},{"b":"loadingMessage","d":"string","e":"Loading Post-Upgrade Check results..."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"emptyStateMessage","d":"string","e":"An error has occurred triggering the Pre-Upgrade Checks. Contact @sc-launch-pad for support."},{"b":"loading","d":"variable","e":"loading"},{"b":"loadingMessage","d":"string","e":"Loading Pre-Upgrade Check results..."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"tableCols"},{"b":"loading","d":"variable","e":"plansLoading"},{"b":"selectedRowIds","d":"array","e":"[rowId]"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"selectionChangedCallback","d":"function","e":"(rows) => setRowId(rows.map((row) => row.id)[0])"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx","c":[{"b":"rows","d":"variable","e":"rows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => void 0"},{"b":"emptyStateMessage","d":"string","e":"No services returned."}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"maxHeight","d":"string","e":"75vh"},{"b":"columns","d":"variable","e":"tableCols"},{"b":"loading","d":"variable","e":"runsLoading"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"showEmptyState","d":"expression","e":"tableRows.length === 0 && !runsLoading"},{"b":"selectionChangedCallback","d":"function","e":"(run) => history.push(`/automatic-upgrades/run/${run[0].id}`)"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\ttitle=\"No scheduled upgrade runs\"\n\t\t\t\t\t\t\t\t\tdetails=\"No upgrade runs returned. Open the create modal to schedule based off an existing Plan.\"\n\t\t\t\t\t\t\t\t\tactions={[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"rows","d":"variable","e":"tableRows"},{"b":"maxHeight","d":"string","e":"75vh"},{"b":"loading","d":"expression","e":"loading && !services"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"columns","d":"variable","e":"tableCols"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","c":[{"b":"rows","d":"variable","e":"processOrganizationsList"},{"b":"columns","d":"expression","e":"hasSAPAccount ? columnsWithTenantIds : columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectionChangedCallback","d":"variable","e":"onRowSelected"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"columns","d":"variable","e":"columns"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"},{"b":"emptyStateMessage","d":"expression","e":"orgLimitsLoading ? \"Loading data...\" : \"No data to show\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortCallback","d":"variable","e":"sortFunc"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx","c":[{"b":"rows","d":"variable","e":"rowData"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"columns","d":"variable","e":"columns"},{"b":"rowActionMenuItems","d":"variable","e":"rowActionMenuItems"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","c":[{"b":"rows","d":"variable","e":"datacCentersRowData"},{"b":"columns","d":"variable","e":"dataCenterTableColumns"},{"b":"sortCallback","d":"function","e":"()=>\"\""},{"b":"selectionChangedCallback","d":"function","e":"()=>\"\""},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"minHeight","d":"variable","e":"CUSTOMER_DETAILS_TABLE_MIN_HEIGHT"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"showEmptyState","d":"variable","e":"showEmptyState"},{"b":"rows","d":"expression","e":"showEmptyState ? [] : tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"function","e":"(columm) => handleSort(columm, drawdownData)"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"dataQa","d":"string","e":"drawdownUsageTable"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"columns","d":"variable","e":"serviceColumns"},{"b":"rows","d":"variable","e":"serviceRows"},{"b":"selectedRowIds","d":"array","e":"[]"},{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"},{"b":"dataQa","d":"string","e":"ServiceMonitoringSettingsTable"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"columns","d":"variable","e":"ddIntegrationColumns"},{"b":"rows","d":"variable","e":"ddIntegrationRows"},{"b":"sortCallback","d":"function","e":"() => {}"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"minHeight","d":"string","e":"fit-content"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"columns","d":"variable","e":"facetsListColumns"},{"b":"rows","d":"variable","e":"facetsListRows"},{"b":"sortCallback","d":"function","e":"() => {}"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"minHeight","d":"string","e":"fit-content"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"columns","d":"variable","e":"toggleOverrideColumns"},{"b":"rows","d":"expression","e":"toggleOverridesResponse.data.map((override) => ({\n\t\t\t\t\t\t\t\t\t\t\t...override,\n\t\t\t\t\t\t\t\t\t\t\tid: override.orgId // Use orgId as the id property\n\t\t\t\t\t\t\t\t\t\t}))"},{"b":"renderCustomRowCells","d":"variable","e":"renderToggleOverrideRowCells"},{"b":"loading","d":"variable","e":"isLoadingOverrides"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"function","e":"() => undefined"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"selectionChangedCallback","d":"variable","e":"handleRowSelection"},{"b":"sortCallback","d":"variable","e":"sortFn"},{"b":"selectedRowIds","d":"expression","e":"selectedRowId ? [selectedRowId] : []"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx","c":[{"b":"columns","d":"variable","e":"tableCols"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"rows","d":"expression","e":"emas?.data ?? []"},{"b":"renderCustomRowCells","d":"function","e":"(row) => renderRowCells(row, evmrId)"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.SINGLE"},{"b":"sortCallback","d":"function","e":"() => undefined"},{"b":"loading","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"columns","d":"variable","e":"columns"},{"b":"disabledRowIds","d":"variable","e":"disabledRowIds"},{"b":"independentRowHighlight","d":"boolean","e":"true"},{"b":"loading","d":"variable","e":"managementAgentsIsLoading"},{"b":"renderCustomRowCells","d":"function","e":"(rows) => renderRowCells(rows, latestImageTag, evmrId, cloudManagedType)"},{"b":"rows","d":"expression","e":"rows ?? []"},{"b":"selectedRowIds","d":"variable","e":"selectedRows"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"sortCallback","d":"function","e":"() => undefined"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortedColumn","d":"variable","e":"sortedColumn"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"paginatedRows"},{"b":"columns","d":"variable","e":"columnsDef"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"},{"b":"loading","d":"variable","e":"loadingServicePackages"},{"b":"maxHeight","d":"string","e":"calc(100vh - 17.25rem)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx","c":[{"b":"columns","d":"variable","e":"COLUMNS"},{"b":"rows","d":"variable","e":"rows"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"renderCustomRowCells","d":"variable","e":"renderRowCells"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"columns","d":"variable","e":"displayedColumns"},{"b":"rows","d":"variable","e":"tableData"},{"b":"selectionType","d":"expression","e":"SELECTION_TYPE.NONE"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumns","d":"variable","e":"displayedColumns"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"columnSelectionHandler"},{"b":"renderCustomEmptyState","d":"function","e":"() => (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.noResults}\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.checkFilters}\n\t\t\t\t\t\t\t setClearFiltersFlag(true)}>{organizationStrings.table.emptyState.clearFilters}\n\t\t\t\t\t\t\n\t\t\t\t\t)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"selectionChangedCallback","d":"variable","e":"handleSelectionChangedCallback"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columnsDef"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.SINGLE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"variable","e":"handleSort"},{"b":"rows","d":"variable","e":"tableRows"},{"b":"columns","d":"variable","e":"columns"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"renderCustomRowActionItem","d":"variable","e":"renderSchemaRowActions"},{"b":"renderCustomRowCells","d":"variable","e":"renderSchemaRowCells"},{"b":"hasColumnHiding","d":"boolean","e":"true"},{"b":"displayedColumnsChangedCallback","d":"variable","e":"displayedColumnsChanged"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"(sort) => {\n\t\t\t\t\t\t\t\tsetBrokerQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}"},{"b":"rows","d":"expression","e":"brokerCompatibility?.data ?? []"},{"b":"columns","d":"expression","e":"brokerCompatibilityColumns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"rowActionMenuItems","d":"variable","e":"brokerCompatibilityActionMenuItems"},{"b":"loading","d":"variable","e":"brokerCompatibilityIsLoading"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"selectionChangedCallback","d":"function","e":"() => undefined"},{"b":"sortCallback","d":"function","e":"(sort) => {\n\t\t\t\t\t\t\t\tsetHelmChartQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}"},{"b":"rows","d":"expression","e":"helmChartCompatibility?.data ?? []"},{"b":"columns","d":"expression","e":"helmChartCompatibilityColumns as any"},{"b":"selectionType","d":"expression","e":"SolaceTableSelectionType.NONE"},{"b":"rowActionMenuItems","d":"variable","e":"helmChartCompatibilityActionMenuItems"},{"b":"loading","d":"variable","e":"helmChartCompatibilityIsLoading"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTable/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTable/totalUsages.json new file mode 100644 index 000000000..832332893 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTable/totalUsages.json @@ -0,0 +1 @@ +67 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTable/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTable/usagesByMfe.json new file mode 100644 index 000000000..03ae54364 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTable/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":19,"intg":3,"saas":9,"infra":2,"maas-ops-react":34} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTabs/commonProps.json b/mrc-usage-report-data/per-component/SolaceTabs/commonProps.json new file mode 100644 index 000000000..4024f1811 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTabs/commonProps.json @@ -0,0 +1 @@ +[{"name":"tabs","count":36},{"name":"activeTabValue","count":36},{"name":"onTabClick","count":29},{"name":"size","count":15},{"name":"variant","count":10},{"name":"...","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTabs/customization.json b/mrc-usage-report-data/per-component/SolaceTabs/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTabs/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTabs/files.json b/mrc-usage-report-data/per-component/SolaceTabs/files.json new file mode 100644 index 000000000..1986acb3b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTabs/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTabs/instances.json b/mrc-usage-report-data/per-component/SolaceTabs/instances.json new file mode 100644 index 000000000..02d48cc4c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTabs/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx","c":[{"b":"...","d":"spread","e":"tabProps"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","c":[{"b":"tabs","d":"variable","e":"brokerTypeOptions"},{"b":"activeTabValue","d":"variable","e":"addObjectsActiveTab"},{"b":"onTabClick","d":"variable","e":"handleAddObjectTabClick"},{"b":"size","d":"string","e":"sm"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"size","d":"string","e":"md"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"size","d":"string","e":"md"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeEntityType"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => handleTabClick(tab)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx","c":[{"b":"tabs","d":"variable","e":"actionTabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleActionTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeEntityType"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tabValue) => setActiveTab(tabValue)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"size","d":"string","e":"md"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx","c":[{"b":"...","d":"spread","e":"tabProps"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx","c":[{"b":"tabs","d":"variable","e":"tabArray"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"activeTabValue","d":"variable","e":"selectedTab"},{"b":"onTabClick","d":"variable","e":"handleTabClick"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: \"mostUsed\" },\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: \"leastused\" }\n\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx","c":[{"b":"tabs","d":"expression","e":"tabs(setActiveTab, showMiTransformation, showGaMiTransformation)"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"activeTabValue","d":"variable","e":"activeStep"},{"b":"onTabClick","d":"variable","e":"setActiveStep"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t{ value: \"1\", label: t({ id: \"id_get_api\", message: \"1. Get API\" }) },\n\t\t\t\t\t{ value: \"2\", label: t({ id: \"id_connect_service\", message: \"2. Connect to Service\" }) },\n\t\t\t\t\t{ value: \"3\", label: t({ id: \"id_learn_more\", message: \"3. Learn with Tutorials\" }) }\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx","c":[{"b":"activeTabValue","d":"variable","e":"certType"},{"b":"onTabClick","d":"variable","e":"setCertType"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t{ value: \"client\", label: t({ id: \"id_client_cert_auths\", message: \"Client Certificate Authorities\" }) },\n\t\t\t\t\t\t\t\t\t{ value: \"domain\", label: t({ id: \"id_domain_cert_auths\", message: \"Domain Certificate Authorities\" }) }\n\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx","c":[{"b":"activeTabValue","d":"variable","e":"tab"},{"b":"tabs","d":"array","e":"[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_status\", message: \"Status\" }), value: \"status\" },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_connect\", message: \"Connect\" }), value: \"connect\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_manage\", message: \"Manage\" }), value: \"manage\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_monitoring\", message: \"Monitoring\" }), value: \"monitoring\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_configuration\", message: \"Configuration\" }), value: \"configuration\", disabled: isInProgress },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_tryme\", message: \"Try Me!\" }), value: \"tryme\", disabled: areTabsDisabled }\n\t\t\t\t\t\t]"},{"b":"onTabClick","d":"function","e":"(value) => {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"},{"b":"tabs","d":"variable","e":"TABS"},{"b":"size","d":"string","e":"md"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx","c":[{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"variant","d":"string","e":"scrollable"},{"b":"tabs","d":"variable","e":"TABS"},{"b":"size","d":"string","e":"md"},{"b":"onTabClick","d":"variable","e":"handleTabClick"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx","c":[{"b":"activeTabValue","d":"variable","e":"tab"},{"b":"tabs","d":"array","e":"[\n { label: \"Datacenters\", value: \"datacenters\" },\n { label: \"Preupgrade Validation\", value: \"preupgrade-validation\" },\n { label: \"System Components\", value: \"system-components\" },\n { label: \"Network\", value: \"network\" },\n { label: \"Services\", value: \"services\" },\n ]"},{"b":"onTabClick","d":"function","e":"(tab) => history.push(`/clusters/${clusterId}/${tab}`)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab as MonitoringTabs)"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"tabs","d":"variable","e":"wanTuningFeaturesTabs"},{"b":"activeTabValue","d":"variable","e":"activeTabFeature"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTabFeature(tab as WanTuningFeatures)"},{"b":"variant","d":"string","e":"fullWidth"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab)"},{"b":"size","d":"string","e":"md"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"variable","e":"handleTabChange"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(value) => setActiveTab(value as EMA_TYPES)"},{"b":"size","d":"string","e":"lg"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx","c":[{"b":"tabs","d":"variable","e":"tabs"},{"b":"activeTabValue","d":"variable","e":"activeTab"},{"b":"onTabClick","d":"function","e":"(tab) => setActiveTab(tab)"},{"b":"size","d":"string","e":"md"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTabs/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTabs/totalUsages.json new file mode 100644 index 000000000..c24b6ae77 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTabs/totalUsages.json @@ -0,0 +1 @@ +38 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTabs/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTabs/usagesByMfe.json new file mode 100644 index 000000000..074956d8c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTabs/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":22,"intg":4,"mc":3,"saas":2,"infra":1,"maas-ops-react":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTag/commonProps.json b/mrc-usage-report-data/per-component/SolaceTag/commonProps.json new file mode 100644 index 000000000..488f9128f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTag/commonProps.json @@ -0,0 +1 @@ +[{"name":"label","count":10},{"name":"fillColor","count":8},{"name":"labelColor","count":8},{"name":"variant","count":3},{"name":"clickable","count":2},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTag/customization.json b/mrc-usage-report-data/per-component/SolaceTag/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTag/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTag/files.json b/mrc-usage-report-data/per-component/SolaceTag/files.json new file mode 100644 index 000000000..9b59d2416 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTag/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTag/instances.json b/mrc-usage-report-data/per-component/SolaceTag/instances.json new file mode 100644 index 000000000..eeff735b5 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTag/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.OUTLINED"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.infoBgBlue"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx","c":[{"b":"label","d":"expression","e":"AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.infoBgBlue"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.DARK_GREY"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"label","d":"expression","e":"`${row.daemonSetStatus.desired}/${row.daemonSetStatus.currentScheduled}/${row.daemonSetStatus.ready}/${row.daemonSetStatus.upToDate}/${row.daemonSetStatus.available}`"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"(allEleInArrayAreSame(Object.values(row.daemonSetStatus))) ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"(allEleInArrayAreSame(Object.values(row.daemonSetStatus)))? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`podStatus-${index}`"},{"b":"label","d":"expression","e":"row.podStatus"},{"b":"variant","d":"expression","e":"CHIP_VARIANT.FILLED"},{"b":"fillColor","d":"expression","e":"row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"label","d":"expression","e":"\"ENABLED\""},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"label","d":"expression","e":"\"DISABLED\""},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"TaskStatus.COMPLETED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.SUCCESS_BG_GREEN"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.SUCCESS_GREEN_LABEL"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"clickable","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"TaskStatus.FAILED"},{"b":"fillColor","d":"expression","e":"CHIP_COLORS.ERROR_BG_RED"},{"b":"labelColor","d":"expression","e":"CHIP_COLORS.ERROR_RED_LABEL"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTag/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTag/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTag/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTag/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTag/usagesByMfe.json new file mode 100644 index 000000000..1eb9b2e76 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTag/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":4,"maas-ops-react":6} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextArea/commonProps.json b/mrc-usage-report-data/per-component/SolaceTextArea/commonProps.json new file mode 100644 index 000000000..1c5e01ff4 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextArea/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":22},{"name":"value","count":19},{"name":"onChange","count":19},{"name":"dataQa","count":19},{"name":"maxLength","count":14},{"name":"label","count":14},{"name":"helperText","count":13},{"name":"hasErrors","count":12},{"name":"resizable","count":7},{"name":"onBlur","count":5}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextArea/customization.json b/mrc-usage-report-data/per-component/SolaceTextArea/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextArea/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextArea/files.json b/mrc-usage-report-data/per-component/SolaceTextArea/files.json new file mode 100644 index 000000000..bd9a7ebda --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextArea/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextArea/instances.json b/mrc-usage-report-data/per-component/SolaceTextArea/instances.json new file mode 100644 index 000000000..ed22fe5a2 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextArea/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)"},{"b":"minRows","d":"number","e":"3"},{"b":"maxRows","d":"number","e":"3"},{"b":"maxLength","d":"variable","e":"complexValueTypeCharLimit"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"resizable","d":"expression","e":"\"vertical\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${entityType}[name]`"},{"b":"autoFocus","d":"expression","e":"!isDuplicateVersion"},{"b":"maxLength","d":"expression","e":"nameMaxLength + 1"},{"b":"minRows","d":"number","e":"1"},{"b":"maxRows","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)"},{"b":"minRows","d":"number","e":"3"},{"b":"maxRows","d":"number","e":"3"},{"b":"maxLength","d":"variable","e":"complexValueTypeCharLimit"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"resizable","d":"expression","e":"\"vertical\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"expression","e":"`postRequestTargetValue`"},{"b":"value","d":"expression","e":"queueBindingConfiguration.postRequestTarget"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"`postRequestTargetValue`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"expression","e":"`${prefix}Value`"},{"b":"value","d":"variable","e":"displayedHeaderValue"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"`${prefix}Value`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.requestHeaderValue"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"required","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2001"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"variable","e":"configurationNameRequestHeaderValue"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"aria-label","d":"string","e":"Comment"},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"comment"},{"b":"value","d":"expression","e":"item?.comments"},{"b":"onChange","d":"function","e":"(e) => handleOnCommentChange(e, item)"},{"b":"label","d":"expression","e":"\"Comment\""},{"b":"maxLength","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx","c":[{"b":"name","d":"string","e":"declineReason"},{"b":"value","d":"variable","e":"declineReason"},{"b":"onChange","d":"variable","e":"handleReasonChange"},{"b":"label","d":"expression","e":"\"Reason for Decline\""},{"b":"hasErrors","d":"expression","e":"!!declineReasonError"},{"b":"helperText","d":"variable","e":"declineReasonError"},{"b":"maxLength","d":"variable","e":"MAX_REASON_LENGTH"},{"b":"disabled","d":"expression","e":"reviewDecision !== ReviewDecision.declined"},{"b":"dataQa","d":"string","e":"declineReason"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"width","d":"string","e":"550px"},{"b":"name","d":"string","e":"declineReason"},{"b":"value","d":"variable","e":"declineReason"},{"b":"onChange","d":"variable","e":"handleReasonChange"},{"b":"label","d":"expression","e":"\"Reason for Revocation\""},{"b":"hasErrors","d":"expression","e":"!!declineReasonError"},{"b":"helperText","d":"variable","e":"declineReasonError"},{"b":"maxLength","d":"variable","e":"MAX_REASON_LENGTH"},{"b":"dataQa","d":"string","e":"declineReason"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"name","d":"expression","e":"description ?? \"emptyDescription\""},{"b":"label","d":"expression","e":"label ?? \"Description\""},{"b":"value","d":"variable","e":"description"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tsetDescription(e.value ?? \"\");\n\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\tsetDescription(description.trim());\n\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"description\""},{"b":"maxLength","d":"number","e":"10000"},{"b":"placeholder","d":"expression","e":"placeholder ?? \"\""},{"b":"resizable","d":"variable","e":"resizable"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"name","d":"expression","e":"props.name"},{"b":"label","d":"expression","e":"props.label"},{"b":"onChange","d":"function","e":"(e) => onChangeTrigger(props, e)"},{"b":"value","d":"variable","e":"fieldValue"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"width","d":"string","e":"100%"},{"b":"maxLength","d":"expression","e":"props.schema.maxLength"},{"b":"dataQa","d":"expression","e":"`${props.label}-form-textArea`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx","c":[{"b":"maxLength","d":"number","e":"3000"},{"b":"label","d":"expression","e":"drawdownUsage.noDrawdownUsage.details"},{"b":"name","d":"string","e":"contactUsTextField"},{"b":"dataQa","d":"string","e":"contactUsTextField"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"({ value }) => setContactUseMessage(value)"},{"b":"hasErrors","d":"expression","e":"!validateText(contactUseMessage) ? false : true"},{"b":"helperText","d":"expression","e":"!validateText(contactUseMessage) ? \"\" : drawdownUsage.noDrawdownUsage.containsScript"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"name","d":"string","e":"limitChangeDetails"},{"b":"label","d":"expression","e":"en.serviceLimits.labels.details"},{"b":"onBlur","d":"variable","e":"onDetailsChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"dataQa","d":"expression","e":"\"limitChangeDetails\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"hasErrors","d":"variable","e":"descriptionError"},{"b":"helperText","d":"expression","e":"handleDescriptionError()"},{"b":"name","d":"string","e":"descriptionField"},{"b":"resizable","d":"string","e":"vertical"},{"b":"value","d":"variable","e":"descriptionValue"},{"b":"onChange","d":"variable","e":"handleDescriptionFieldValue"},{"b":"maxLength","d":"number","e":"5000"},{"b":"dataQa","d":"string","e":"supportPageIssue"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"maxLength","d":"number","e":"1500"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.environments.labels.descripiton"},{"b":"value","d":"expression","e":"dialogState.description"},{"b":"name","d":"string","e":"environmentDescription"},{"b":"onChange","d":"variable","e":"handleEnvDescriptionChange"},{"b":"helperText","d":"expression","e":"handleDescriptionErrorText()"},{"b":"hasErrors","d":"variable","e":"hasDescError"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"dataQa","d":"string","e":"envDescriptionTestId"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"maxLength","d":"number","e":"255"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"userGroups.ugDialog.descripiton"},{"b":"value","d":"expression","e":"dialogState.description"},{"b":"name","d":"string","e":"userGroupsDescription"},{"b":"onChange","d":"variable","e":"handleUGDescriptionChange"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"dataQa","d":"string","e":"userGroupsDescriptionQa"},{"b":"helperText","d":"expression","e":"handleDescriptionCount()"},{"b":"resizable","d":"string","e":"vertical"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx","c":[{"b":"name","d":"expression","e":"\"sendRequest\""},{"b":"maxLength","d":"number","e":"1000"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.privateRegions.labels.newRequestDetails"},{"b":"onChange","d":"function","e":"(event) => setTicketBody(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"label","d":"expression","e":"en.accountSettings.additionalComments"},{"b":"name","d":"string","e":"additionalComments"},{"b":"onChange","d":"function","e":"(e) => setAdditionalCommentsText(e.value)"},{"b":"title","d":"expression","e":"en.accountSettings.additionalComments"},{"b":"value","d":"variable","e":"additionalCommentsText"},{"b":"dataQa","d":"string","e":"additionalCommentsTextField"},{"b":"hasErrors","d":"expression","e":"additionalCommentsText.length >= 255"},{"b":"helperText","d":"expression","e":"additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : \"\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"id","d":"string","e":"limitRequestTextArea"},{"b":"name","d":"string","e":"limitRequestTextArea"},{"b":"onChange","d":"function","e":"({ value }) => setRequestDetailsTexts(value)"},{"b":"title","d":"expression","e":"en.overview.eventPortalSection.requestDetailsTextArea"},{"b":"value","d":"variable","e":"requestDetailsTexts"},{"b":"label","d":"expression","e":"en.overview.eventPortalSection.requestDetailsTextArea"},{"b":"width","d":"string","e":"40rem"},{"b":"resizable","d":"string","e":"vertical"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"label","d":"expression","e":"en.overview.banner.additionalComments"},{"b":"name","d":"expression","e":"en.overview.banner.additionalComments"},{"b":"onChange","d":"function","e":"(e) => setAdditionalComments(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.additionalComments"},{"b":"value","d":"variable","e":"additionalComments"},{"b":"width","d":"string","e":"30vw"},{"b":"resizable","d":"string","e":"vertical"},{"b":"dataQa","d":"string","e":"additionalCommentsId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextArea/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTextArea/totalUsages.json new file mode 100644 index 000000000..8fdd954df --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextArea/totalUsages.json @@ -0,0 +1 @@ +22 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextArea/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTextArea/usagesByMfe.json new file mode 100644 index 000000000..a33d2aa50 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextArea/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":10,"intg":1,"mc":1,"saas":9,"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextDiff/commonProps.json b/mrc-usage-report-data/per-component/SolaceTextDiff/commonProps.json new file mode 100644 index 000000000..5c69bc14a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextDiff/commonProps.json @@ -0,0 +1 @@ +[{"name":"text1","count":2},{"name":"text2","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextDiff/customization.json b/mrc-usage-report-data/per-component/SolaceTextDiff/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextDiff/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextDiff/files.json b/mrc-usage-report-data/per-component/SolaceTextDiff/files.json new file mode 100644 index 000000000..6177793e3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextDiff/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextDiff/instances.json b/mrc-usage-report-data/per-component/SolaceTextDiff/instances.json new file mode 100644 index 000000000..51d30d431 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextDiff/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx","c":[{"b":"text1","d":"variable","e":"schemaBody"},{"b":"text2","d":"variable","e":"secondSchemaBody"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"text1","d":"variable","e":"runtimeAttributes"},{"b":"text2","d":"variable","e":"designerAttributes"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextDiff/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTextDiff/totalUsages.json new file mode 100644 index 000000000..d8263ee98 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextDiff/totalUsages.json @@ -0,0 +1 @@ +2 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextDiff/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTextDiff/usagesByMfe.json new file mode 100644 index 000000000..40bd61eb0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextDiff/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextField/commonProps.json b/mrc-usage-report-data/per-component/SolaceTextField/commonProps.json new file mode 100644 index 000000000..336b43b96 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextField/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":197},{"name":"value","count":188},{"name":"onChange","count":156},{"name":"dataQa","count":147},{"name":"hasErrors","count":113},{"name":"helperText","count":111},{"name":"label","count":99},{"name":"readOnly","count":71},{"name":"required","count":64},{"name":"onBlur","count":52}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextField/customization.json b/mrc-usage-report-data/per-component/SolaceTextField/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextField/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextField/files.json b/mrc-usage-report-data/per-component/SolaceTextField/files.json new file mode 100644 index 000000000..e641a0080 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextField/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextField/instances.json b/mrc-usage-report-data/per-component/SolaceTextField/instances.json new file mode 100644 index 000000000..05ff81103 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextField/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"name","d":"expression","e":"\"authenticationB\""},{"b":"dataQa","d":"expression","e":"\"authenticationB\""},{"b":"value","d":"expression","e":"getCredentialsFieldValue(credentials, \"inputB\")"},{"b":"type","d":"variable","e":"inputBType"},{"b":"disabled","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx","c":[{"b":"name","d":"string","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"string","e":"Name"},{"b":"value","d":"variable","e":"variableName"},{"b":"onChange","d":"variable","e":"handleNameChange"},{"b":"onBlur","d":"function","e":"() => handleNameValidate()"},{"b":"hasErrors","d":"expression","e":"!!nameErrorMsg"},{"b":"helperText","d":"variable","e":"nameErrorMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getVersionErrorMessage(value, error) : \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"autoFocus","d":"expression","e":"mode === \"edit\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getVersionErrorMessage(value, error) : \"\""},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\t\t\t\t\t\t\t\t\t\tconst validVersion = semverValid(newValue) ?? newValue;\n\n\t\t\t\t\t\t\t\t\t\tonChange(validVersion);\n\t\t\t\t\t\t\t\t\t\tcheckVersionAndSetWarning(validVersion);\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"\"DuplicateEntityVersion[version]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"maxLength","d":"number","e":"251"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!nameErrorMsg || !!attributeErrorMsg"},{"b":"helperText","d":"expression","e":"nameErrorMsg || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-input`"},{"b":"dataTags","d":"expression","e":"`hasFocus=${customAttribute.hasFocus}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!nameErrorMsg || !!attributeErrorMsg"},{"b":"helperText","d":"expression","e":"nameErrorMsg || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-input`"},{"b":"dataTags","d":"expression","e":"`hasFocus=${customAttribute.hasFocus}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx","c":[{"b":"id","d":"expression","e":"`messagingServiceDetails[${attribute}]`"},{"b":"name","d":"expression","e":"`messagingServiceDetails[${attribute}]`"},{"b":"dataQa","d":"expression","e":"`messagingServiceDetails[${attribute}]`"},{"b":"value","d":"variable","e":"attributeValue"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"onChange","d":"variable","e":"handleNameChange"},{"b":"onBlur","d":"variable","e":"handleNameOnBlur"},{"b":"id","d":"string","e":"eventMesh[name]"},{"b":"name","d":"string","e":"eventMesh[name]"},{"b":"dataQa","d":"string","e":"eventMesh[name]"},{"b":"label","d":"variable","e":"LABEL_NAME"},{"b":"value","d":"expression","e":"memContent.name"},{"b":"required","d":"expression","e":"mode === \"create\" || mode === \"edit\""},{"b":"readOnly","d":"expression","e":"mode === \"view\""},{"b":"hasErrors","d":"expression","e":"!!getNameErrorMessage"},{"b":"helperText","d":"variable","e":"getNameErrorMessage"},{"b":"disabled","d":"variable","e":"isLoading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][schemaRegistry][registryUrl]"},{"b":"disabled","d":"variable","e":"isDisabled"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? renderKafkaAuthHelperText(\"registryUrl\") : \"\""},{"b":"id","d":"string","e":"schemaRegistry[registryUrl]"},{"b":"label","d":"string","e":"Registry URL"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][management][sempUsername]"},{"b":"disabled","d":"variable","e":"loading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"id","d":"string","e":"eventBroker[solace][management][sempUsername]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.sempUsername"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][management][sempUrl]"},{"b":"disabled","d":"variable","e":"loading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"id","d":"string","e":"eventBroker[solace][management][sempUrl]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.sempUrl"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][messaging][host]"},{"b":"disabled","d":"variable","e":"loading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? \"e.g. ########.messaging.solace.cloud or 123.89.40.72\" : \"\""},{"b":"id","d":"string","e":"eventBroker[solace][messaging][host]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.host"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][authentication][${authKey}][${inputField}]`"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? helperText : \"\""},{"b":"id","d":"expression","e":"`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels[inputField]"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"isRequired"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[kafka][authentication][bootstrapServers]"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? \"Use a comma (,) to separate the messaging services in the Kafka cluster.\" : \"\""},{"b":"id","d":"string","e":"eventBroker[kafka][authentication][bootstrapServers]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.bootstrapServers"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"},{"b":"disabled","d":"expression","e":"loading || kafkaDelimiterIsNotSet"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx","c":[{"b":"dataQa","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"!readOnly ? error?.message ?? helperText : \"\""},{"b":"id","d":"expression","e":"`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"variable","e":"label"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tsetValue(name, value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"expression","e":"!readOnly && isRequired"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"100%"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","c":[{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.port"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"selectedMode === \"view\""},{"b":"type","d":"string","e":"number"},{"b":"value","d":"variable","e":"value"},{"b":"width","d":"string","e":"250px"},{"b":"dataQa","d":"expression","e":"`eventBroker[solace][messaging][protocol][${index}][port]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[name]"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.name"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"expression","e":"readOnly || !!content.solaceCloudMessagingServiceId"},{"b":"required","d":"expression","e":"!readOnly"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx","c":[{"b":"dataQa","d":"string","e":"eventBroker[solace][messageVpn]"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message ?? \"\""},{"b":"id","d":"string","e":"eventBroker[solace][messageVpn]"},{"b":"label","d":"expression","e":"eventBrokerFormFieldLabels.messageVPN"},{"b":"name","d":"variable","e":"name"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"required","d":"variable","e":"required"},{"b":"value","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Filter by Name"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"width","d":"string","e":"50%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","c":[{"b":"name","d":"expression","e":"textFieldName ?? \"entityVersionTextField\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"string","e":"Version"},{"b":"value","d":"variable","e":"version"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg"},{"b":"helperText","d":"expression","e":"validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText"},{"b":"onChange","d":"variable","e":"handleVersionChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx","c":[{"b":"name","d":"string","e":"createInlineApplication"},{"b":"dataQa","d":"string","e":"createInlineApplication"},{"b":"label","d":"string","e":"New Application Name"},{"b":"value","d":"variable","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg || !!backendErrorMsg"},{"b":"helperText","d":"expression","e":"validationErrorMsg || backendErrorMsg || \"\""},{"b":"onChange","d":"variable","e":"handleEntityNameChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"},{"b":"disabled","d":"expression","e":"!domainId"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx","c":[{"b":"name","d":"string","e":"createInlineApplicationDomain"},{"b":"dataQa","d":"string","e":"createInlineApplicationDomain"},{"b":"label","d":"string","e":"New Application Domain Name"},{"b":"value","d":"variable","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg || !!backendErrorMsg"},{"b":"helperText","d":"expression","e":"validationErrorMsg || backendErrorMsg || SHARE_WARNING"},{"b":"onChange","d":"variable","e":"handleEntityNameChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx","c":[{"b":"name","d":"expression","e":"textFieldName ?? \"entityNameTextField\""},{"b":"dataQa","d":"expression","e":"dataQa ?? \"\""},{"b":"label","d":"variable","e":"label"},{"b":"value","d":"variable","e":"entityName"},{"b":"required","d":"boolean","e":"true"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"maxLength","d":"expression","e":"maxLength + 1"},{"b":"hasErrors","d":"expression","e":"!!validationErrorMsg"},{"b":"helperText","d":"variable","e":"validationErrorMsg"},{"b":"onChange","d":"variable","e":"handleEntityNameChange"},{"b":"onBlur","d":"variable","e":"handleOnBlur"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? getVersionErrorMessage(value, error) : \"\""},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (semverValid(newValue) !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tcheckIfVersionStillLatestAfterUpdate(newValue, versionId);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(semverValid(newValue) ?? newValue);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[version]`"},{"b":"autoFocus","d":"variable","e":"isDuplicateVersion"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${versionObjectName}[displayName]`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsgs[index]"},{"b":"helperText","d":"expression","e":"errorMsgs[index] || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${caKey}-value-input`"},{"b":"maxLength","d":"number","e":"251"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"name","d":"string","e":"eventSearchInput"},{"b":"dataQa","d":"string","e":"eventSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx","c":[{"b":"name","d":"string","e":"nodeNameTextField"},{"b":"dataQa","d":"string","e":"appDomain-graph-object-name-field"},{"b":"value","d":"variable","e":"nodeName"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"onKeyDown","d":"variable","e":"handleKeyDown"},{"b":"onFocus","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetTimeout(() => e.target.select(), 100); // Delay to ensure select() works\n\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!errorMessage"},{"b":"helperText","d":"variable","e":"errorMessage"},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"`${nameEditorWidth}px`"},{"b":"maxLength","d":"expression","e":"maxNameLength + 1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"autoFocus","d":"expression","e":"value === \"\""},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"dataQa","d":"expression","e":"`applicationVersion[consumers].${index}.name`"},{"b":"maxLength","d":"number","e":"256"},{"b":"readOnly","d":"expression","e":"!isGlobal"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!errorMsg"},{"b":"helperText","d":"expression","e":"errorMsg || null"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\thandleFilenameUpdate(e.value);\n\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\thandleFilenameUpdate(value.trim());\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`filenameInput`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"eventApiProduct[name]\""},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`maxTTLTextField-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value.trim())"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"readOnly","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"id","d":"expression","e":"`maxMsgSpoolUsageTextField-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value.trim())"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"readOnly","d":"expression","e":"mode === \"view\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"id","d":"expression","e":"`planNameTextField-${index}`"},{"b":"dataQa","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"topicAddressResourcesDisplayName"},{"b":"required","d":"boolean","e":"true"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"topicAddressResourcesLink"},{"b":"required","d":"boolean","e":"true"},{"b":"type","d":"string","e":"url"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"applicationDomain[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"eventApi[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"width","d":"expression","e":"\"526px\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"name","d":"string","e":"eventApiSearchInput"},{"b":"dataQa","d":"string","e":"eventApiSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"id","d":"expression","e":"`${level.name}-${index}`"},{"b":"name","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error && \"Invalid Format\""},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value.trim())"},{"b":"dataQa","d":"variable","e":"name"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"minWidth","d":"string","e":"622px"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[{"b":"key","d":"variable","e":"FormCustomizedClientProfileName"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"label","d":"expression","e":"messagesConfiguration.solaceClientProfileName.clientProfileName"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (e.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"required","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"33"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value);\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value ? value.trim() : \"\");\n\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`restDeliveryPointName-editor`"},{"b":"readOnly","d":"expression","e":"!getValues(`${formName}.configurationTypeId`)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonChange(value?.trim());\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`${configurationName}-postRequestTarget`"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message || \"\""},{"b":"maxLength","d":"number","e":"2001"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx","c":[{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.requestHeaderName"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"required","d":"boolean","e":"true"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"variable","e":"configurationNameRequestHeaderName"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"enumeration[name]\""},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"label","d":"expression","e":"\"Name\""},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"schema[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"getVersionErrorMessage(value, error)"},{"b":"onChange","d":"function","e":"(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())"},{"b":"dataQa","d":"expression","e":"\"schemaVersion[version]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Search"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"width","d":"string","e":"100%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"name","d":"string","e":"schemaSearchInput"},{"b":"dataQa","d":"string","e":"schemaSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"event[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"\"configurationInputA\""},{"b":"dataQa","d":"expression","e":"\"configurationInputA\""},{"b":"label","d":"expression","e":"messages.credentials[configuration.typeId].inputA"},{"b":"value","d":"expression","e":"inputA ?? \"\""},{"b":"required","d":"variable","e":"isEditing"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"!!inputAValidationError"},{"b":"helperText","d":"variable","e":"inputAValidationError"},{"b":"onChange","d":"variable","e":"onChangeInputA"},{"b":"readOnly","d":"expression","e":"!isEditing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx","c":[{"b":"name","d":"expression","e":"\"configurationInputB\""},{"b":"dataQa","d":"expression","e":"\"configurationInputB\""},{"b":"label","d":"expression","e":"messages.credentials[configuration.typeId].inputB"},{"b":"value","d":"expression","e":"inputB || \"\""},{"b":"type","d":"variable","e":"inputBType"},{"b":"required","d":"variable","e":"isEditing"},{"b":"disabled","d":"expression","e":"isLoading || (configuration.inputB.type === \"password\" && !isEditing)"},{"b":"hasErrors","d":"expression","e":"!!inputBValidationError"},{"b":"helperText","d":"expression","e":"inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext"},{"b":"onChange","d":"variable","e":"onChangeInputB"},{"b":"readOnly","d":"expression","e":"configuration.inputB.type !== \"password\" && !isEditing"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"label","d":"expression","e":"\"Name\""},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"event[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"getVersionErrorMessage(value, error)"},{"b":"onChange","d":"function","e":"(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())"},{"b":"dataQa","d":"expression","e":"\"eventVersion[version]\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"name","d":"string","e":"eventSearchInput"},{"b":"dataQa","d":"string","e":"eventSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"application[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.common.labels.name"},{"b":"autoFocus","d":"expression","e":"value === \"\""},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"dataQa","d":"expression","e":"`consumerName`"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx","c":[{"b":"name","d":"string","e":"applicationSearchInput"},{"b":"dataQa","d":"string","e":"applicationSearchInput"},{"b":"value","d":"variable","e":"internalSearchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onKeyDown","d":"variable","e":"blockEnterKey"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"\"schema[name]\""},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"maxLength","d":"number","e":"2049"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"name","d":"expression","e":"name ?? \"emptyName\""},{"b":"label","d":"expression","e":"label ?? \"Name\""},{"b":"value","d":"variable","e":"name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tconst newName = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\tconst newName = name.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!errorMsg"},{"b":"helperText","d":"variable","e":"errorMsg"},{"b":"dataQa","d":"expression","e":"\"name\""},{"b":"maxLength","d":"number","e":"256"},{"b":"required","d":"boolean","e":"true"},{"b":"placeholder","d":"variable","e":"placeholder"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"name","d":"expression","e":"topic ?? \"emptyTopic\""},{"b":"label","d":"variable","e":"label"},{"b":"value","d":"variable","e":"topic"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\tconst newTopic = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\tconst newTopic = topic.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!errorMsg"},{"b":"helperText","d":"variable","e":"errorMsg"},{"b":"dataQa","d":"variable","e":"label"},{"b":"maxLength","d":"variable","e":"maxLength"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"id","d":"string","e":"email-input"},{"b":"name","d":"string","e":"email-input"},{"b":"type","d":"string","e":"email"},{"b":"label","d":"expression","e":"en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress"},{"b":"helperText","d":"expression","e":"!isValid ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.eventPortalResources.labels.startJourney.inviteUsers.helperTextError\n\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t)"},{"b":"hasErrors","d":"expression","e":"!isValid"},{"b":"onChange","d":"variable","e":"handleEmailInput"},{"b":"value","d":"variable","e":"email"},{"b":"fullWidth","d":"boolean","e":"true"},{"b":"onBlur","d":"variable","e":"validateEmail"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"name","d":"expression","e":"\"Event Broker\""},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"\"Event Broker\""},{"b":"value","d":"expression","e":"scan.messagingServiceName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx","c":[{"b":"name","d":"string","e":"topicAddress"},{"b":"label","d":"string","e":"Topic Address"},{"b":"value","d":"expression","e":"selectedAudits[0].identifier"},{"b":"required","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"name","d":"string","e":"searchInput"},{"b":"dataQa","d":"string","e":"searchInput"},{"b":"placeholder","d":"string","e":"Search"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"variable","e":"handleSearchTextChange"},{"b":"width","d":"string","e":"100%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"onChange","d":"variable","e":"handleNameChange"},{"b":"onBlur","d":"variable","e":"handleNameOnBlur"},{"b":"id","d":"string","e":"runtimeAgent[name]"},{"b":"name","d":"string","e":"runtimeAgent[name]"},{"b":"dataQa","d":"string","e":"runtimeAgent[name]"},{"b":"value","d":"expression","e":"eventManagementAgent.name"},{"b":"hasErrors","d":"expression","e":"!!getNameErrorMessage"},{"b":"helperText","d":"variable","e":"getNameErrorMessage"},{"b":"disabled","d":"variable","e":"loading"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx","c":[{"b":"id","d":"string","e":"runtimeAgent[id]"},{"b":"name","d":"string","e":"runtimeAgent[id]"},{"b":"dataQa","d":"string","e":"runtimeAgent[id]"},{"b":"value","d":"variable","e":"agentId"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"clientProfileName"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\tsetClientProfileName(e.value);\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"expression","e":"`clientProfileName`"},{"b":"maxLength","d":"number","e":"33"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error ? error.message : null"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"dataQa","d":"expression","e":"`detailsName`"},{"b":"maxLength","d":"number","e":"256"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"name","d":"string","e":"targetHeaderExample"},{"b":"value","d":"expression","e":"en.connectors.targetHeaderMapping.targetHeaderExample"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx","c":[{"b":"name","d":"string","e":"headerExpressionExample"},{"b":"value","d":"expression","e":"en.connectors.targetHeaderMapping.headerExpressionExample"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"name","d":"string","e":"name"},{"b":"value","d":"expression","e":"values.name"},{"b":"dataQa","d":"string","e":"details_name_field"},{"b":"onChange","d":"function","e":"({ value: name }) => setValues({ ...values, name })"},{"b":"label","d":"expression","e":"en.connectors.labels.name"},{"b":"required","d":"boolean","e":"true"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\tif (isEmpty(values.name)) {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({\n\t\t\t\t\t\t\t\t\t...initialStepValidationErrors,\n\t\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({ ...initialStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!initialStepValidationErrors.name"},{"b":"helperText","d":"expression","e":"validationEnabled ? initialStepValidationErrors.name : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"type","d":"expression","e":"sensitiveField && !showSensitiveField ? \"password\" : \"text\""},{"b":"label","d":"expression","e":"props.label"},{"b":"name","d":"expression","e":"props.name"},{"b":"onChange","d":"function","e":"(e) => onChangeTrigger(props, e)"},{"b":"value","d":"variable","e":"fieldValue"},{"b":"readOnly","d":"expression","e":"props.readonly"},{"b":"required","d":"expression","e":"props.required && !props.readonly"},{"b":"disabled","d":"expression","e":"props.disabled"},{"b":"endAdornment","d":"variable","e":"endAdornment"},{"b":"dataQa","d":"expression","e":"`${props.label}-form-textField`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"name","d":"string","e":"sslKeyStoreReadOnlyBlank"},{"b":"value","d":"expression","e":"props.value ? \"\" : \"-\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientUsername"},{"b":"value","d":"expression","e":"basicAuthValues.clientUsername"},{"b":"label","d":"expression","e":"en.connectors.labels.clientUsername"},{"b":"dataQa","d":"string","e":"clientUsernameBasicAuthTextField"},{"b":"onChange","d":"function","e":"({ value: clientUsername }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientUsername)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.basicAuthUsername"},{"b":"helperText","d":"expression","e":"!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername\n\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientPassword"},{"b":"label","d":"expression","e":"en.connectors.labels.clientPassword"},{"b":"dataQa","d":"string","e":"clientPasswordTextField"},{"b":"value","d":"expression","e":"basicAuthValues.clientPassword"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"onChange","d":"function","e":"({ value: clientPassword }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientPassword: clientPassword\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"type","d":"expression","e":"showPassword ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t setShowPassword(!showPassword)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showPassword ? : }\n\t\t\t\t\t\n\t\t\t\t]"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientPassword)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientPassword\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.clientPassword"},{"b":"helperText","d":"expression","e":"!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.clientPassword && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.clientPassword\n\t\t\t\t\t\t\t: en.connectors.helperText.clientPassword\n\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"tokenUri"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.tokenUri"},{"b":"dataQa","d":"string","e":"tokenUriTextField"},{"b":"onChange","d":"function","e":"({ value: tokenUri }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\ttokenUri: tokenUri\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(oauthValues.tokenUri)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!solaceValidationErrors.tokenUri"},{"b":"helperText","d":"expression","e":"!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientId"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientId"},{"b":"dataQa","d":"string","e":"tclientIdTextField"},{"b":"onChange","d":"function","e":"({ value: clientId }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientId: clientId\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientId)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!solaceValidationErrors.clientId"},{"b":"helperText","d":"expression","e":"!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"required","d":"expression","e":"!readOnly"},{"b":"name","d":"string","e":"clientSecret"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientSecret"},{"b":"dataQa","d":"string","e":"clientSecretTextField"},{"b":"onChange","d":"function","e":"({ value: clientSecret }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientSecret: clientSecret\n\t\t\t\t\t});\n\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientSecret)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientSecret\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!solaceValidationErrors.clientSecret"},{"b":"helperText","d":"expression","e":"!readOnly && validationEnabled && solaceValidationErrors.clientSecret\n\t\t\t\t\t\t? solaceValidationErrors.clientSecret\n\t\t\t\t\t\t: \"\""},{"b":"type","d":"expression","e":"showClientSecret ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t setShowClientSecret(!showClientSecret)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showClientSecret ? : }\n\t\t\t\t\t\n\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"name","d":"string","e":"scopes"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.scopes"},{"b":"dataQa","d":"string","e":"scopesTextField"},{"b":"onChange","d":"function","e":"({ value: scopes }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx","c":[{"b":"name","d":"string","e":"clientName"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientName"},{"b":"dataQa","d":"string","e":"clientNameTextField"},{"b":"onChange","d":"function","e":"({ value: clientName }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslKeyStoreReadOnlyBlank"},{"b":"value","d":"expression","e":"\"-\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslKeyStorePassword"},{"b":"value","d":"expression","e":"readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslKeyStorePassword"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.sslKeyStorePassword"},{"b":"dataQa","d":"string","e":"sslKeyStorePasswordTextField"},{"b":"onChange","d":"function","e":"({ value: sslKeyStorePassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"type","d":"expression","e":"showSslKeyStorePassword ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslPrivateKeyAliasName"},{"b":"value","d":"expression","e":"readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyAliasName"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.sslPrivateKeyAliasName"},{"b":"dataQa","d":"string","e":"sslPrivateKeyAliasNameTextField"},{"b":"onChange","d":"function","e":"({ value: sslPrivateKeyAliasName }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"sslPrivateKeyPassword"},{"b":"value","d":"expression","e":"readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyPassword"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.sslPrivateKeyPassword"},{"b":"dataQa","d":"string","e":"sslPrivateKeyPasswordTextField"},{"b":"onChange","d":"function","e":"({ value: sslPrivateKeyPassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"type","d":"expression","e":"showSslPrivateKeyPassword ? \"text\" : \"password\""},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx","c":[{"b":"name","d":"string","e":"clientUsername"},{"b":"value","d":"expression","e":"readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername"},{"b":"readOnly","d":"variable","e":"readOnly"},{"b":"label","d":"expression","e":"en.connectors.labels.clientUsername"},{"b":"dataQa","d":"string","e":"clientUsernameClientCertAuthTextField"},{"b":"onChange","d":"function","e":"({ value: clientUsername }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!readOnly && !!solaceValidationErrors.clientCertUsername"},{"b":"helperText","d":"expression","e":"!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"host"},{"b":"value","d":"expression","e":"solaceConnectionValues.authentication.host"},{"b":"label","d":"expression","e":"en.connectors.labels.host"},{"b":"dataQa","d":"string","e":"connectionDetailsHostTextField"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.host)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}"},{"b":"onChange","d":"function","e":"({ value: host }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\thost: host\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.host"},{"b":"helperText","d":"expression","e":"validationEnabled && solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.host"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"string","e":"msgVpn"},{"b":"value","d":"expression","e":"solaceConnectionValues.authentication.messageVpn"},{"b":"label","d":"expression","e":"en.connectors.labels.msgVpn"},{"b":"dataQa","d":"string","e":"msgVpnTextField"},{"b":"onChange","d":"function","e":"({ value: msgVpn }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: msgVpn\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.messageVpn)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.msgVpn\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.messageVpn"},{"b":"helperText","d":"expression","e":"validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : \"\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"name","d":"string","e":"solaceBindingDestination"},{"b":"onChange","d":"function","e":"({ value: destination }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestination: destination\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"solaceConnectionValues.binding.destination"},{"b":"label","d":"expression","e":"en.connectors.labels.bindingDestination"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"solaceBindingDestinationTextField"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\t\t\t\t\tvalidateDestination();\n\t\t\t\t\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"validationEnabled && !!solaceValidationErrors.destination"},{"b":"helperText","d":"expression","e":"solaceValidationErrors.destination && validationEnabled\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.destination\n\t\t\t\t\t\t\t\t\t\t\t: // flipped because solaceDirection is the opposite of the actual connector direction\n\t\t\t\t\t\t\t\t\t\t\tisEqual(solaceDirection, ConnectorDirection.Source)\n\t\t\t\t\t\t\t\t\t\t\t? en.connectors.helperText.destinationTarget\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.destinationSource"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx","c":[{"b":"name","d":"string","e":"headerName"},{"b":"label","d":"expression","e":"en.connectors.labels.customHeaderName"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"header-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"value","d":"variable","e":"headerName"},{"b":"hasErrors","d":"expression","e":"!!headerNameError"},{"b":"helperText","d":"variable","e":"headerNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetHeaderName(e.value);\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx","c":[{"b":"name","d":"string","e":"constantName"},{"b":"label","d":"expression","e":"en.connectors.labels.customConstantValue"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"constant-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"value","d":"variable","e":"constantValue"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"name","d":"string","e":"headerName"},{"b":"label","d":"expression","e":"en.connectors.labels.customHeaderName"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"header-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"hasErrors","d":"expression","e":"!!headerNameError"},{"b":"helperText","d":"variable","e":"headerNameError"},{"b":"value","d":"expression","e":"customHeaderField.headerName"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, headerName: e.value });\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"name","d":"string","e":"constantName"},{"b":"label","d":"expression","e":"en.connectors.labels.customConstantValue"},{"b":"required","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"constant-name-textfield"},{"b":"maxLength","d":"number","e":"255"},{"b":"hasErrors","d":"expression","e":"!!constantNameError"},{"b":"helperText","d":"variable","e":"constantNameError"},{"b":"value","d":"expression","e":"String(constantField.constantValue)"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"key"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(key)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"value"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(value)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"name","d":"string","e":"name"},{"b":"value","d":"expression","e":"connectorDetails.name"},{"b":"dataQa","d":"string","e":"details_name_field"},{"b":"onChange","d":"function","e":"({ value: name }) => {\n\t\t\t\t\t\tsetConnectorDetails({ ...connectorDetails, name });\n\t\t\t\t\t}"},{"b":"label","d":"expression","e":"en.connectors.labels.name"},{"b":"required","d":"boolean","e":"true"},{"b":"onBlur","d":"function","e":"() => {\n\t\t\t\t\t\tif (isEmpty(connectorDetails.name)) {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({\n\t\t\t\t\t\t\t\t...detailsStepValidationErrors,\n\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t}\n\t\t\t\t\t}"},{"b":"hasErrors","d":"expression","e":"!!detailsStepValidationErrors.name"},{"b":"helperText","d":"expression","e":"detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName"},{"b":"autoFocus","d":"variable","e":"clone"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"eventBrokerService"},{"b":"label","d":"expression","e":"en.connectors.labels.eventBrokerService"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"host"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.host"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"msgVpn"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.msgVpn"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"authenticationTypeReadOnlyField"},{"b":"label","d":"expression","e":"en.connectors.labels.authenticationType"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"clientUsername"},{"b":"label","d":"expression","e":"en.connectors.labels.clientUsername"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(basicAuthValues.clientUsername)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"name","d":"string","e":"clientPassword"},{"b":"label","d":"expression","e":"en.connectors.labels.clientPassword"},{"b":"value","d":"variable","e":"clientPassword"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"destinationType"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.destinationType"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"bindingDestination"},{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.connectors.labels.bindingDestination"},{"b":"value","d":"expression","e":"getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx","c":[{"b":"id","d":"string","e":"service_name"},{"b":"name","d":"string","e":"service_name"},{"b":"dataQa","d":"string","e":"delete-service-confirm-name"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\tPlease type {matchText} to confirm.\n\t\t\t\t\t\t\t"},{"b":"value","d":"variable","e":"matchName"},{"b":"onChange","d":"function","e":"(e) => setMatchName(e.value)"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx","c":[{"b":"id","d":"string","e":"service_name"},{"b":"name","d":"string","e":"service_name"},{"b":"dataQa","d":"string","e":"rename-service-name"},{"b":"label","d":"expression","e":"t({ id: \"id_new_service_name_label\", message: \"Service Name\" })"},{"b":"value","d":"variable","e":"newName"},{"b":"onChange","d":"function","e":"(e) => setNewName(e.value)"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"isEmpty\n\t\t\t\t\t\t\t? t({ id: \"id_rule_enter_value\", message: \"Required. Enter a value.\" })\n\t\t\t\t\t\t\t: hasErrors\n\t\t\t\t\t\t\t? t({ id: \"id_rule_less_n_chars\", message: \"Exceeds limit. Enter a value under {0} characters.\", values: { 0: 50 } })\n\t\t\t\t\t\t\t: \"\\xa0\""},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"id","d":"string","e":"new_msg_spool_size"},{"b":"name","d":"string","e":"new_msg_spool_size"},{"b":"dataQa","d":"string","e":"newMessageSpoolSize"},{"b":"label","d":"expression","e":"t({ id: \"id_new_msg_spool_size_label\", message: \"New Message Spool Size (GB)\" })"},{"b":"required","d":"boolean","e":"true"},{"b":"disabled","d":"variable","e":"progress"},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"size","d":"number","e":"4"},{"b":"value","d":"expression","e":"messageStorage.value"},{"b":"onChange","d":"variable","e":"handleMessageStorageChange"},{"b":"hasErrors","d":"variable","e":"hasMessageStorageErrors"},{"b":"helperText","d":"expression","e":"hasMessageStorageErrors ? messageStorageErrorText : t({ id: \"id_default_size_gb\", message: \"Default: {0} GB\", values: { 0: formatter.format(defaultMessageSpoolSize) } })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"expression","e":"(hasBlurred || isSubmitted) && hasErrors"},{"b":"helperText","d":"expression","e":"(hasBlurred || isSubmitted ? errorText : \"\") || helperText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"onBlur","d":"variable","e":"handleBlur"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","c":[{"b":"name","d":"string","e":"accessType"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_access_type\", message: \"Access Type\" })"},{"b":"value","d":"expression","e":"i18n._(accessTypes[endpoint.accessType])"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"name","d":"string","e":"telemetryProfileName"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })"},{"b":"value","d":"variable","e":"telemetryProfileName"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"name","d":"string","e":"selectedTracingProfileId"},{"b":"dataQa","d":"string","e":"selectedTracingProfileId"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })"},{"b":"value","d":"expression","e":"tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : \"-\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"name","d":"string","e":"authenticationBasicEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationBasicEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"name","d":"string","e":"authenticationClientCertEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_client_cert_auth\", message: \"Client Certificate Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationClientCertEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx","c":[{"b":"name","d":"string","e":"authenticationOauthEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_oauth_provider_auth\", message: \"OAuth Provider Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationOauthEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx","c":[{"b":"name","d":"string","e":"msg_spool_size"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_cur_msg_spool_size\", message: \"Current Message Spool Size (GB)\" })"},{"b":"value","d":"variable","e":"messageSpoolSize"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx","c":[{"b":"name","d":"string","e":"authenticationBasicEnabled"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })"},{"b":"value","d":"expression","e":"getEnablingText(msgVpn?.authenticationBasicEnabled)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"name","d":"string","e":"tracingProfileName"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })"},{"b":"value","d":"variable","e":"tracingProfileName"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"name","d":"string","e":"tracingClientUsername"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_tracing_client_username\", message: \"Tracing Client Username\" })"},{"b":"value","d":"expression","e":"\"sc-dt-trace-collector\""},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"name","d":"string","e":"telemetryProfileName"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })"},{"b":"value","d":"variable","e":"telemetryProfileName"},{"b":"readOnly","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","c":[{"b":"id","d":"string","e":"messageStorage"},{"b":"name","d":"string","e":"messageStorage"},{"b":"dataQa","d":"string","e":"messageStorage"},{"b":"type","d":"string","e":"number"},{"b":"label","d":"expression","e":"t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })"},{"b":"value","d":"expression","e":"activeServiceClasses.length === 0 ? \"\" : formatter.format(parseInt(messageStorage.value))"},{"b":"onChange","d":"variable","e":"handleMessageStorageChange"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx","c":[{"b":"id","d":"string","e":"messageStorage"},{"b":"name","d":"string","e":"messageStorage"},{"b":"dataQa","d":"string","e":"messageStorage"},{"b":"type","d":"string","e":"number"},{"b":"label","d":"expression","e":"t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })"},{"b":"disabled","d":"expression","e":"activeServiceClasses.length === 0"},{"b":"value","d":"expression","e":"activeServiceClasses.length === 0 ? \"\" : messageStorage.value"},{"b":"onChange","d":"variable","e":"handleMessageStorageChange"},{"b":"hasErrors","d":"variable","e":"hasMessageStorageErrors"},{"b":"helperText","d":"variable","e":"messageStorageErrorText"},{"b":"readOnly","d":"expression","e":"activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx","c":[{"b":"id","d":"variable","e":"namePort"},{"b":"name","d":"variable","e":"namePort"},{"b":"dataQa","d":"variable","e":"namePort"},{"b":"type","d":"string","e":"number"},{"b":"label","d":"expression","e":"\"\""},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"size","d":"number","e":"5"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"variable","e":"errorText"},{"b":"value","d":"variable","e":"port"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx","c":[{"b":"id","d":"string","e":"msgVpnName"},{"b":"name","d":"string","e":"msgVpnName"},{"b":"dataQa","d":"string","e":"msgVpnName"},{"b":"type","d":"string","e":"text"},{"b":"readOnly","d":"variable","e":"isCloning"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText ? errorText : t({ id: \"id_message_vpn_name_help\", message: \"The message VPN name cannot be changed once the service is created.\" })"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx","c":[{"b":"id","d":"string","e":"name"},{"b":"name","d":"string","e":"name"},{"b":"dataQa","d":"string","e":"name"},{"b":"type","d":"string","e":"text"},{"b":"autoFocus","d":"boolean","e":"true"},{"b":"hasErrors","d":"variable","e":"hasAnyErrors"},{"b":"helperText","d":"variable","e":"anyErrorText"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"onBlur","d":"variable","e":"handleBlur"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"id","d":"string","e":"filterName"},{"b":"name","d":"string","e":"filterName"},{"b":"dataQa","d":"string","e":"services-filter-name"},{"b":"value","d":"variable","e":"filter"},{"b":"onChange","d":"variable","e":"handleSetFilter"},{"b":"placeholder","d":"expression","e":"t({ id: \"id_filter_services\", message: \"Filter by service name\" })"},{"b":"customIcon","d":"object","e":"{\n\t\t\t\t\t\t\t\ticon: filter ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: filter ? handleClearFilter : undefined\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx","c":[{"b":"value","d":"expression","e":"tokenFormValues.name"},{"b":"aria-label","d":"string","e":"Name"},{"b":"data-lpignore","d":"string","e":"true"},{"b":"width","d":"string","e":"500px"},{"b":"name","d":"string","e":"name"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"!!nameError"},{"b":"helperText","d":"expression","e":"nameError ?? undefined"},{"b":"onChange","d":"function","e":"(e) => dispatch(setTokenName(e.value))"},{"b":"dataQa","d":"string","e":"tokenName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[{"b":"name","d":"string","e":"serviceLimitValue"},{"b":"label","d":"expression","e":"en.serviceLimits.labels.newServiceLimit"},{"b":"type","d":"string","e":"number"},{"b":"required","d":"boolean","e":"true"},{"b":"onChange","d":"variable","e":"onServiceLimitChange"},{"b":"value","d":"variable","e":"newServiceLimit"},{"b":"dataQa","d":"expression","e":"\"serviceLimitValue\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"id","d":"string","e":"addClaimValuesField"},{"b":"name","d":"string","e":"addClaimValuesField"},{"b":"value","d":"variable","e":"claimValuesMapping"},{"b":"onChange","d":"function","e":"({ value }) => setClaimValuesMapping(value)"},{"b":"helperText","d":"expression","e":"claimValueError ? userGroupManagement.claimValueErrorMessage : undefined"},{"b":"hasErrors","d":"variable","e":"claimValueError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","c":[{"b":"id","d":"string","e":"editClaimValuesFieldId"},{"b":"name","d":"string","e":"editClaimValuesField"},{"b":"value","d":"variable","e":"claimValuesMapping"},{"b":"onChange","d":"function","e":"({ value }) => setClaimValuesMapping(value)"},{"b":"helperText","d":"expression","e":"claimValueError ? userGroupManagement.claimValueErrorMessage :  "},{"b":"hasErrors","d":"variable","e":"claimValueError"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"helperText","d":"expression","e":"userGroupManagement[\n\t\t\t\t\t\t\t\t\tclaimIdChanged && claimId.trim().length < 1 ? \"claimIdError\" : \"identityProviderHelperText\"\n\t\t\t\t\t\t\t\t]"},{"b":"hasErrors","d":"expression","e":"claimIdChanged && claimId.trim().length < 1"},{"b":"label","d":"expression","e":"userGroupManagement.identityProviderLabel"},{"b":"name","d":"string","e":"claimId"},{"b":"onChange","d":"function","e":"({ value }) => claimIdChangeHandler(value)"},{"b":"value","d":"variable","e":"claimId"},{"b":"dataQa","d":"string","e":"roleId"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"firstNameError"},{"b":"helperText","d":"expression","e":"firstNameError ? myProfile.firstNameError : \"\""},{"b":"name","d":"string","e":"userFirstName"},{"b":"id","d":"string","e":"userFirstName"},{"b":"dataQa","d":"string","e":"userFirstName"},{"b":"value","d":"variable","e":"firstNameValue"},{"b":"maxLength","d":"number","e":"150"},{"b":"onChange","d":"variable","e":"handleFirstName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"lastNameError"},{"b":"helperText","d":"expression","e":"lastNameError ? myProfile.lastNameError : \"\""},{"b":"name","d":"string","e":"userLastName"},{"b":"id","d":"string","e":"userLastName"},{"b":"dataQa","d":"string","e":"userLastName"},{"b":"value","d":"variable","e":"lastNameValue"},{"b":"maxLength","d":"number","e":"150"},{"b":"onChange","d":"variable","e":"handleLastName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"oldPasswordReq"},{"b":"helperText","d":"expression","e":"oldPasswordReq ? myProfile.oldPasswordReq : \"\""},{"b":"name","d":"string","e":"userOldPassword"},{"b":"type","d":"string","e":"password"},{"b":"id","d":"string","e":"userOldPassword"},{"b":"dataQa","d":"string","e":"userOldPassword"},{"b":"value","d":"variable","e":"oldPasswordValue"},{"b":"maxLength","d":"number","e":"50"},{"b":"onChange","d":"variable","e":"handleOldPasswordChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"expression","e":"newPasswordError.length > 0"},{"b":"helperText","d":"variable","e":"newPasswordError"},{"b":"name","d":"string","e":"userNewPassword"},{"b":"id","d":"string","e":"userNewPassword"},{"b":"type","d":"string","e":"password"},{"b":"dataQa","d":"string","e":"userNewPassword"},{"b":"value","d":"variable","e":"newPasswordValue"},{"b":"maxLength","d":"number","e":"50"},{"b":"onChange","d":"variable","e":"handleNewPasswordChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"hasErrors","d":"variable","e":"confirmPasswordError"},{"b":"helperText","d":"expression","e":"confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning"},{"b":"name","d":"string","e":"userNewConfirmation"},{"b":"id","d":"string","e":"userNewConfirmation"},{"b":"type","d":"string","e":"password"},{"b":"dataQa","d":"string","e":"userNewConfirmation"},{"b":"value","d":"variable","e":"newPasswordValueConfirm"},{"b":"maxLength","d":"number","e":"50"},{"b":"onChange","d":"variable","e":"handleNewPasswordConfirmChange"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"hasErrors","d":"variable","e":"summaryError"},{"b":"helperText","d":"expression","e":"handleSummaryError()"},{"b":"name","d":"string","e":"summaryfield"},{"b":"id","d":"string","e":"supportPageSummary"},{"b":"dataQa","d":"string","e":"supportPageSummary"},{"b":"value","d":"variable","e":"summaryValue"},{"b":"onChange","d":"variable","e":"handleSummaryFieldValue"},{"b":"maxLength","d":"number","e":"150"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"hasErrors","d":"variable","e":"errorIdError"},{"b":"helperText","d":"expression","e":"handleErrorIdError()"},{"b":"name","d":"string","e":"errorField"},{"b":"id","d":"string","e":"supportPageErrorId"},{"b":"dataQa","d":"string","e":"supportPageErrorId"},{"b":"value","d":"variable","e":"errorIdValue"},{"b":"onChange","d":"variable","e":"handleErrorIdFieldValue"},{"b":"maxLength","d":"number","e":"350"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"label","d":"expression","e":"en.environments.labels.environmentName"},{"b":"value","d":"expression","e":"dialogState.name"},{"b":"name","d":"string","e":"environmentName"},{"b":"maxLength","d":"number","e":"100"},{"b":"onChange","d":"variable","e":"handleEnvNameChange"},{"b":"required","d":"boolean","e":"true"},{"b":"hasErrors","d":"expression","e":"isDuplicate || hasError || hasNameRequiredError"},{"b":"helperText","d":"expression","e":"handleErrorText()"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"dataQa","d":"string","e":"envNameTestId"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx","c":[{"b":"name","d":"string","e":"environmentFilter"},{"b":"placeholder","d":"expression","e":"environmentsStr.environmentList.filterPlaceholder"},{"b":"endAdornment","d":"array","e":"[]"},{"b":"onChange","d":"variable","e":"handleSearch"},{"b":"dataQa","d":"string","e":"environmentFilterInput"},{"b":"width","d":"expression","e":"\"313px\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"fullWidth","d":"boolean","e":"true"},{"b":"id","d":"string","e":"resetPasswordEmail"},{"b":"name","d":"string","e":"resetPasswordEmail"},{"b":"onChange","d":"variable","e":"handleChange"},{"b":"title","d":"expression","e":"en.forgotPassword.resetPasswordFieldTitle"},{"b":"placeholder","d":"expression","e":"en.forgotPassword.email"},{"b":"dataQa","d":"string","e":"resetPasswordEmailInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"name","d":"string","e":"userGroupSearch"},{"b":"dataQa","d":"string","e":"userGroupSearchQa"},{"b":"value","d":"variable","e":"userGroupSearchValue"},{"b":"onChange","d":"variable","e":"handleUserGroupSearchValue"},{"b":"placeholder","d":"expression","e":"userGroups.userGroupsHome.search"},{"b":"size","d":"number","e":"155"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tuserGroupSearchValue ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"},{"b":"width","d":"string","e":"20rem"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"userGroups.ugDialog.ugName"},{"b":"value","d":"expression","e":"dialogState.name"},{"b":"name","d":"string","e":"userGroupName"},{"b":"maxLength","d":"number","e":"100"},{"b":"onChange","d":"variable","e":"handleUGNameChange"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"hasErrors","d":"expression","e":"hasNameError || isDuplicate || hasNoNameError || isDefaultError"},{"b":"helperText","d":"expression","e":"handleErrorText()"},{"b":"dataQa","d":"string","e":"userGroupNameQa"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx","c":[{"b":"name","d":"string","e":"search"},{"b":"width","d":"string","e":"45%"},{"b":"placeholder","d":"string","e":"Search..."},{"b":"onChange","d":"function","e":"(event) => setSearch(event.value)"},{"b":"value","d":"variable","e":"search"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"readOnly","d":"expression","e":"!!readOnly"},{"b":"name","d":"variable","e":"name"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"hasErrors","d":"expression","e":"!_.isEmpty(error)"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"},{"b":"onBlur","d":"variable","e":"onBlur"},{"b":"dataQa","d":"expression","e":"dataQa ?? name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"details_displayName"},{"b":"name","d":"expression","e":"tracingProfile.formFields.name.field"},{"b":"value","d":"expression","e":"tracingDestination?.displayName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.type.field"},{"b":"value","d":"expression","e":"tracingProfile.tracingType[tracingDestination?.tracingBackendType]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.connectionType.field"},{"b":"value","d":"expression","e":"tracingProfile.tlsConnectionType[tracingDestination.connectionType]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.region.field"},{"b":"value","d":"expression","e":"tracingProfile.datadogSite[tracingDestination.datadogSite]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"expression","e":"tracingProfile.formFields.endpoint.field"},{"b":"value","d":"expression","e":"tracingDestination.endpoint"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"details_apiKey"},{"b":"name","d":"expression","e":"tracingProfile.formFields.datadogApiKey.field"},{"b":"value","d":"expression","e":"tracingDestination.datadogApiKey"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"label","d":"expression","e":"en.accountSettings.preferredSubdomain"},{"b":"name","d":"string","e":"preferredSubdomain"},{"b":"onChange","d":"function","e":"(e) => setPreferredSubdomainText({ edited: true, text: e.value })"},{"b":"required","d":"boolean","e":"true"},{"b":"title","d":"expression","e":"en.accountSettings.preferredSubdomain"},{"b":"value","d":"expression","e":"preferredSubdomain.text"},{"b":"hasErrors","d":"expression","e":"preferredSubdomain.edited && !canSendRequest"},{"b":"helperText","d":"expression","e":"preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : \"\""},{"b":"width","d":"string","e":"100%"},{"b":"dataQa","d":"string","e":"preferredSubdomainTextField"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.clientId?.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : \"\""},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"clientId"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientIdErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientId, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.clientId"},{"b":"value","d":"expression","e":"configSettings.clientId.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.clientSecretKey.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : \"\""},{"b":"type","d":"expression","e":"hideSecretKey ? \"password\" : \"text\""},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"clientSecretKey"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientSecretKeyErrorMsg);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientSecretKey, value, errors } };\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.clientSecretKey"},{"b":"value","d":"expression","e":"configSettings.clientSecretKey.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.oidcDiscoveryUrl.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.oidcDiscoveryUrl.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.oidcDiscoveryUrl.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.discoveryUrlExpectedFormat"},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"oidcDiscoveryUrl"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.discoveryUrl"},{"b":"value","d":"expression","e":"configSettings.oidcDiscoveryUrl.value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"hasErrors","d":"expression","e":"configSettings.additionalScopes.errors?.length > 0"},{"b":"helperText","d":"expression","e":"configSettings.additionalScopes.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.additionalScopes.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.additionalScopesExpectedFormat"},{"b":"width","d":"string","e":"100%"},{"b":"name","d":"string","e":"additionalScopes"},{"b":"onChange","d":"function","e":"({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.indexOf(\" \") >= 0) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.noWhiteSpaceAllowed);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.additionalScopes, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}"},{"b":"title","d":"expression","e":"en.accountSettings.additionalScopes"},{"b":"value","d":"expression","e":"configSettings.additionalScopes.value as string"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"id","d":"string","e":"limitRequestNumber"},{"b":"name","d":"string","e":"limitRequestNumber"},{"b":"onChange","d":"function","e":"({ value }) => setLimitRequestNumber(+value)"},{"b":"type","d":"string","e":"number"},{"b":"value","d":"variable","e":"limitRequestNumber"},{"b":"label","d":"expression","e":"en.overview.eventPortalSection.totalObjects"},{"b":"required","d":"boolean","e":"true"},{"b":"width","d":"string","e":"15rem"},{"b":"data-qa","d":"string","e":"limitRequestNumberInput"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[{"b":"label","d":"expression","e":"en.overview.banner.contactEmail"},{"b":"name","d":"expression","e":"en.overview.banner.contactEmail"},{"b":"onChange","d":"function","e":"(e) => setContactEmail(e.value)"},{"b":"title","d":"expression","e":"en.overview.banner.contactEmail"},{"b":"value","d":"variable","e":"contactEmail"},{"b":"hasErrors","d":"expression","e":"!!contactEmail && !isValidEmail(contactEmail)"},{"b":"helperText","d":"expression","e":"!!contactEmail && !isValidEmail(contactEmail) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.overview.banner.errorHelperText}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"required","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"en.overview.advancedSettingsSection.password"},{"b":"name","d":"expression","e":"en.overview.advancedSettingsSection.password"},{"b":"onChange","d":"function","e":"({ value }) => setPassword(value)"},{"b":"title","d":"expression","e":"en.overview.advancedSettingsSection.password"},{"b":"value","d":"variable","e":"password"},{"b":"type","d":"string","e":"password"},{"b":"width","d":"string","e":"45rem"},{"b":"hasErrors","d":"variable","e":"inCorrectPassword"},{"b":"dataQa","d":"string","e":"password"},{"b":"helperText","d":"expression","e":"inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : \"\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"label","d":"string","e":"List of Emails"},{"b":"value","d":"variable","e":"handle"},{"b":"onChange","d":"function","e":"({ value }) => setHandle(value)"},{"b":"onFocus","d":"function","e":"() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))"},{"b":"onBlur","d":"function","e":"() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({\n\t\t\t\t\t\t...previous,\n\t\t\t\t\t\t[name]: { hasErrors: false, helperText: handle ? \"\" : helperText.warning(name) }\n\t\t\t\t\t}))"},{"b":"hasErrors","d":"expression","e":"helper.hasErrors"},{"b":"helperText","d":"expression","e":"helper.helperText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"readOnly","d":"expression","e":"readOnlyProducts || isFieldReadOnly"},{"b":"type","d":"string","e":"number"},{"b":"size","d":"number","e":"5"},{"b":"name","d":"expression","e":"`countField${key}`"},{"b":"value","d":"expression","e":"prod.count !== 0 ? prod.count : undefined"},{"b":"onChange","d":"function","e":"(e) => handleCountSet(key, parseInt(e.value))"},{"b":"width","d":"expression","e":"!(readOnlyProducts || isFieldReadOnly) ? \"100%\" : \"auto\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"id","d":"string","e":"quantityTextfieldId"},{"b":"name","d":"string","e":"quantityTextfield"},{"b":"onChange","d":"function","e":"({ value }) => validateQuantity(value)"},{"b":"value","d":"variable","e":"prodQuantityValue"},{"b":"width","d":"string","e":"100%"},{"b":"dataQa","d":"string","e":"quantityTextfieldQa"},{"b":"hasErrors","d":"expression","e":"productDrawdown.inputError"},{"b":"helperText","d":"expression","e":"prodQuantityErrors[0]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"name","d":"string","e":"domainNameFilter"},{"b":"value","d":"variable","e":"nameFilter"},{"b":"onChange","d":"variable","e":"handleFilterChange"},{"b":"readOnly","d":"variable","e":"readOnlyProducts"},{"b":"dataQa","d":"string","e":"filterDomainName"},{"b":"placeholder","d":"expression","e":"i18nStrings.filterByNameLabel"},{"b":"size","d":"number","e":"155"},{"b":"width","d":"string","e":"100%"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\t\t\tnameFilter ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"hasErrors","d":"expression","e":"(orgDetails[\"orgDisplayName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0"},{"b":"helperText","d":"expression","e":"orgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0]"},{"b":"name","d":"string","e":"orgDisplayName"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.orgDisplayName"},{"b":"disabled","d":"expression","e":"!!validationErrors"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"hasErrors","d":"expression","e":"(orgDetails[\"orgId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors).length > 0"},{"b":"helperText","d":"expression","e":"validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\t\t createBizOrganization.orgDetails.orgIdWarning"},{"b":"name","d":"string","e":"orgId"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.orgId"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"hasWarnings","d":"expression","e":"!validationErrors"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"accountName"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.accountName"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"accountName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.validationErrors.concat(orgDetails[\"accountName\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0"},{"b":"helperText","d":"expression","e":"orgDetails[\"accountName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0] || createBizOrganization.orgDetails.accountNameHelperText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"accountId"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.accountId"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"accountId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0"},{"b":"helperText","d":"expression","e":"orgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\tcreateBizOrganization.orgDetails.accountIdHelperText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"name","d":"string","e":"costCenter"},{"b":"onChange","d":"variable","e":"inputHandler"},{"b":"width","d":"string","e":"80%"},{"b":"value","d":"expression","e":"orgDetails[\"costCenter\"].value"},{"b":"disabled","d":"expression","e":"!!validationErrors"},{"b":"title","d":"expression","e":"createBizOrganization.orgDetails.costCenter"},{"b":"dataQa","d":"string","e":"costCenterInput"},{"b":"hasErrors","d":"expression","e":"(orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors().length > 0"},{"b":"helperText","d":"expression","e":"((orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors()[0]) || \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx","c":[{"b":"helperText","d":"expression","e":"currentEmailEntry.length > 0 && !isEmailValid ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.errorHelperText}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : emailList.length === 0 && !isSaveAllowed ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.requiredFieldError}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\tcreateBizOrganization.accountAdmins.emailsPlaceholder\n\t\t\t\t\t\t\t\t)"},{"b":"hasErrors","d":"expression","e":"(currentEmailEntry.length > 0 && !isEmailValid) || (emailList.length === 0 && !isSaveAllowed)"},{"b":"name","d":"string","e":"accountAdminEmail"},{"b":"onChange","d":"function","e":"({ value }) => setCurrentEmailEntry(value)"},{"b":"onBlur","d":"function","e":"() => { setIsEmailValid(isEmail(currentEmailEntry)) }"},{"b":"value","d":"variable","e":"currentEmailEntry"},{"b":"width","d":"string","e":"100%"},{"b":"data-qa","d":"string","e":"accountAdminTextField"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"autoFocus","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"searchByOrgId"},{"b":"name","d":"string","e":"searchByOrgId"},{"b":"label","d":"string","e":"Search By Organization ID"},{"b":"width","d":"string","e":"500px"},{"b":"value","d":"variable","e":"orgId"},{"b":"onChange","d":"function","e":"(event) => (!loadingJobs ? setOrgId(event.value) : undefined)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"autoFocus","d":"boolean","e":"true"},{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"dataQa","d":"string","e":"searchByOrgId"},{"b":"name","d":"string","e":"searchByOrgId"},{"b":"label","d":"string","e":"Search By Organization ID"},{"b":"width","d":"string","e":"500px"},{"b":"value","d":"variable","e":"orgId"},{"b":"onChange","d":"function","e":"(event) => (!loadingOrgs ? setOrgId(event.value) : undefined)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"disabled","d":"expression","e":"search === \"none\""},{"b":"label","d":"string","e":"Search"},{"b":"name","d":"string","e":"search"},{"b":"width","d":"string","e":"375px"},{"b":"value","d":"expression","e":"filters[search]"},{"b":"onChange","d":"function","e":"(event) => setFilters({ ...filters, [search]: event.value })"},{"b":"endAdornment","d":"array","e":"[]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx","c":[{"b":"name","d":"string","e":"searchFor"},{"b":"onChange","d":"variable","e":"searchBoxChangeHandler"},{"b":"dataQa","d":"string","e":"search-for-textbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"dataQa","d":"string","e":"plan-name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"dataQa","d":"string","e":"plan-description"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx","c":[{"b":"name","d":"string","e":"value"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => setValue(event?.value)"},{"b":"placeholder","d":"expression","e":"operator === \"=in=\" || operator === \"=out=\" ? \"value1,value2,value3\" : \"Enter value\""},{"b":"fullWidth","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"name","d":"variable","e":"name"},{"b":"value","d":"variable","e":"value"},{"b":"onChange","d":"function","e":"(event) => onChange(event.value)"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"dataQa","d":"string","e":"run-description"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[{"b":"customIcon","d":"object","e":"{\n\t\t\t\t\t\ticon: ,\n\t\t\t\t\t\tposition: \"end\"\n\t\t\t\t\t}"},{"b":"width","d":"string","e":"50%"},{"b":"label","d":"expression","e":"customers.searchAggregationName"},{"b":"name","d":"string","e":"searchCustomerTextbox"},{"b":"onChange","d":"variable","e":"handleSearchTextSearch"},{"b":"title","d":"expression","e":"customers.searchAggregationName"},{"b":"dataQa","d":"string","e":"searchCustomerTextbox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"name","d":"string","e":"SolaceDatadogAgentVersion"},{"b":"placeholder","d":"string","e":"Enter to override Production Datadog Agent Version"},{"b":"helperText","d":"string","e":"Overrides solace-datadog-agent image version, default: latest"},{"b":"onChange","d":"function","e":"(e) => setValue(\"SolaceDatadogAgentVersion\", e.value)"},{"b":"dataQa","d":"string","e":"SolaceDatadogAgentVersionTextBox"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"orgIdField"},{"b":"label","d":"string","e":"Organization Id"},{"b":"value","d":"variable","e":"orgId"},{"b":"dataQa","d":"string","e":"orgIdField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"disabled","d":"boolean","e":"true"},{"b":"name","d":"string","e":"apiKeyField"},{"b":"label","d":"string","e":"API Key"},{"b":"value","d":"expression","e":"ddOrgData?.apiKey ?? \"\""},{"b":"dataQa","d":"string","e":"apiKeyTextField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"readOnly","d":"boolean","e":"true"},{"b":"name","d":"string","e":"orgNameField"},{"b":"label","d":"string","e":"Organization Display Name"},{"b":"value","d":"expression","e":"ddOrgData?.orgPublicId ?? \"\""},{"b":"dataQa","d":"string","e":"orgNameField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"disabled","d":"boolean","e":"true"},{"b":"name","d":"string","e":"appKeyField"},{"b":"label","d":"string","e":"APP Key"},{"b":"value","d":"expression","e":"ddOrgData?.appKey ?? \"\""},{"b":"dataQa","d":"string","e":"appKeyTextField"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"ddSubOrgName"},{"b":"label","d":"string","e":"Datadog Sub-Org Name"},{"b":"value","d":"variable","e":"subOrgName"},{"b":"placeholder","d":"string","e":"Enter Datadog Sub-Org name"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\thandleSubOrgNameInput(e.value);\n\t\t\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"ddSubOrgNameTextBox"},{"b":"width","d":"string","e":"50%"},{"b":"maxLength","d":"number","e":"32"},{"b":"hasErrors","d":"variable","e":"subOrgNameInvalid"},{"b":"helperText","d":"expression","e":"subOrgNameInvalid\n\t\t\t\t\t\t\t\t\t\t? \"Datadog Sub-Org Name does not start with 'PI - ' or 'RMMS - ' , change the name and retry\"\n\t\t\t\t\t\t\t\t\t\t: \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"alertHandles"},{"b":"label","d":"string","e":"Alert Handles"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"resource.alertHandles ?? \"\""},{"b":"dataQa","d":"expression","e":"`${resource.profile}_alertHandlesTextBox`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"warningHandles"},{"b":"label","d":"string","e":"Warning Handles"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"resource.warningHandles ?? \"\""},{"b":"dataQa","d":"expression","e":"`${resource.profile}_warningHandlesTextBox`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"recoveryHandles"},{"b":"label","d":"string","e":"Recovery Handles"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}"},{"b":"value","d":"expression","e":"resource.recoveryHandles ?? \"\""},{"b":"dataQa","d":"expression","e":"`${resource.profile}_recoveryHandlesTextBox`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"inviteUsersInput"},{"b":"label","d":"string","e":"Provide a list of comma-separated solace.com email addresses"},{"b":"value","d":"variable","e":"adminUsersList"},{"b":"onChange","d":"function","e":"(e) => {\n\t\t\t\t\t\t\tsetAdminUsersList(e.value);\n\t\t\t\t\t\t}"},{"b":"dataQa","d":"string","e":"inviteUsersTextBox"},{"b":"width","d":"string","e":"60%"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"dataQa","d":"string","e":"search"},{"b":"name","d":"string","e":"search"},{"b":"placeholder","d":"string","e":"Search by event broker version"},{"b":"width","d":"string","e":"400px"},{"b":"value","d":"variable","e":"search"},{"b":"onChange","d":"function","e":"(input) => setSearch(input.value)"},{"b":"customIcon","d":"object","e":"{\n\t\t\t\t\t\t\t\ticon: search ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: search ? handleClearSearch : undefined\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[{"b":"name","d":"string","e":"confirmationBox"},{"b":"value","d":"variable","e":"confirmationText"},{"b":"dataQa","d":"string","e":"confirmationBox"},{"b":"onChange","d":"function","e":"({ value }) => setConfirmationText(value)"},{"b":"label","d":"jsx","e":"\n\t\t\t\t\t\t\t\tPlease type DELETE to confirm.\n\t\t\t\t\t\t\t"},{"b":"autoFocus","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"hasErrors","d":"expression","e":"!!error"},{"b":"helperText","d":"expression","e":"error?.message"},{"b":"dataQa","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"disabled","d":"variable","e":"disabled"},{"b":"value","d":"expression","e":"value || \"\""},{"b":"onChange","d":"function","e":"(e) => onChange(e.value)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"id","d":"string","e":"orgSearchBox"},{"b":"name","d":"string","e":"orgSearchBox"},{"b":"dataQa","d":"string","e":"orgSearchBox"},{"b":"width","d":"string","e":"400px"},{"b":"value","d":"variable","e":"searchText"},{"b":"onChange","d":"function","e":"(event) => handleSearchField(event.value)"},{"b":"endAdornment","d":"array","e":"[\n\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t handleSearchField(EMPTY_STRING)}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"readOnly","d":"boolean","e":"true"},{"b":"value","d":"variable","e":"datacenterId"},{"b":"name","d":"string","e":"datacenterId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx","c":[{"b":"inlineLabel","d":"boolean","e":"true"},{"b":"required","d":"boolean","e":"true"},{"b":"placeholder","d":"string","e":"Type a datacenter ID ..."},{"b":"name","d":"string","e":"sourceDatacenterId"},{"b":"dataQa","d":"string","e":"sourceDatacenterId"},{"b":"value","d":"variable","e":"selectedDatacenterId"},{"b":"disabled","d":"variable","e":"isLoading"},{"b":"onChange","d":"function","e":"({ value }) => {\n\t\t\t\t\t\t\tsetSelectedDatacenterId(value);\n\t\t\t\t\t\t\treset();\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Image Tag"},{"b":"name","d":"string","e":"imageTag"},{"b":"title","d":"string","e":"Image Tag"},{"b":"value","d":"variable","e":"imageTag"},{"b":"onChange","d":"function","e":"(event) => dispatch(setImageTag(event.value.trim()))"},{"b":"dataQa","d":"string","e":"imageTag"},{"b":"required","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx","c":[{"b":"disabled","d":"variable","e":"isPerformingRequest"},{"b":"label","d":"string","e":"Helm Chart Version"},{"b":"name","d":"string","e":"helmChartVersion"},{"b":"title","d":"string","e":"Helm Chart Version"},{"b":"value","d":"variable","e":"helmChartVersion"},{"b":"onChange","d":"function","e":"(event) => dispatch(setHelmChartVersion(event.value.trim()))"},{"b":"dataQa","d":"string","e":"helmChartVersion"},{"b":"required","d":"boolean","e":"true"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextField/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTextField/totalUsages.json new file mode 100644 index 000000000..fb3518156 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextField/totalUsages.json @@ -0,0 +1 @@ +197 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTextField/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTextField/usagesByMfe.json new file mode 100644 index 000000000..5939759d7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTextField/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":71,"intg":35,"mc":21,"saas":34,"maas-ops-react":36} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToasts/commonProps.json b/mrc-usage-report-data/per-component/SolaceToasts/commonProps.json new file mode 100644 index 000000000..2291613eb --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToasts/commonProps.json @@ -0,0 +1 @@ +[{"name":"message","count":6},{"name":"open","count":6},{"name":"onClose","count":6},{"name":"severity","count":5},{"name":"action","count":2},{"name":"autoDismiss","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToasts/customization.json b/mrc-usage-report-data/per-component/SolaceToasts/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToasts/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToasts/files.json b/mrc-usage-report-data/per-component/SolaceToasts/files.json new file mode 100644 index 000000000..06592133a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToasts/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx","../../../maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToasts/instances.json b/mrc-usage-report-data/per-component/SolaceToasts/instances.json new file mode 100644 index 000000000..620a01490 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToasts/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx","c":[{"b":"message","d":"expression","e":"toast.message"},{"b":"open","d":"expression","e":"toast.open"},{"b":"action","d":"expression","e":"toast.action"},{"b":"severity","d":"expression","e":"toast.severity"},{"b":"autoDismiss","d":"expression","e":"toast.autoDismiss"},{"b":"onClose","d":"variable","e":"removeToast"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx","c":[{"b":"open","d":"boolean","e":"true"},{"b":"message","d":"variable","e":"message"},{"b":"severity","d":"expression","e":"severity as SolaceToastsProps[\"severity\"]"},{"b":"onClose","d":"variable","e":"handleCloseSnackbar"},{"b":"action","d":"expression","e":"action as SolaceToastsProps[\"action\"]"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"message","d":"expression","e":"showToast.message"},{"b":"severity","d":"expression","e":"showToast.severity"},{"b":"onClose","d":"function","e":"() => setShowToast(null)"},{"b":"open","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"severity","d":"string","e":"error"},{"b":"message","d":"string","e":"Rerun Monitoring Job Failed"},{"b":"open","d":"variable","e":"showRerunAutomationErrorToast"},{"b":"onClose","d":"function","e":"() => dispatch(hideRerunAutomationErrorToast())"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"open","d":"variable","e":"showToast"},{"b":"onClose","d":"function","e":"() => setShowToast(false)"},{"b":"message","d":"variable","e":"toastMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx","c":[{"b":"message","d":"variable","e":"errorMessage"},{"b":"severity","d":"string","e":"error"},{"b":"open","d":"variable","e":"showErrorToast"},{"b":"onClose","d":"function","e":"() => dispatch(closeErrorToast())"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToasts/totalUsages.json b/mrc-usage-report-data/per-component/SolaceToasts/totalUsages.json new file mode 100644 index 000000000..62f945751 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToasts/totalUsages.json @@ -0,0 +1 @@ +6 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToasts/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceToasts/usagesByMfe.json new file mode 100644 index 000000000..238e12cf1 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToasts/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":1,"intg":1,"infra":1,"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggle/commonProps.json b/mrc-usage-report-data/per-component/SolaceToggle/commonProps.json new file mode 100644 index 000000000..68c4505f9 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggle/commonProps.json @@ -0,0 +1 @@ +[{"name":"name","count":35},{"name":"onChange","count":35},{"name":"isOn","count":34},{"name":"id","count":24},{"name":"label","count":22},{"name":"dataQa","count":20},{"name":"helperText","count":6},{"name":"disabled","count":4},{"name":"...","count":3},{"name":"title","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggle/customization.json b/mrc-usage-report-data/per-component/SolaceToggle/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggle/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggle/files.json b/mrc-usage-report-data/per-component/SolaceToggle/files.json new file mode 100644 index 000000000..a0cca590c --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggle/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggle/instances.json b/mrc-usage-report-data/per-component/SolaceToggle/instances.json new file mode 100644 index 000000000..8ec70e4fa --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggle/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","c":[{"b":"id","d":"string","e":"showWarnings"},{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","c":[{"b":"name","d":"string","e":"disableMultiSelect"},{"b":"label","d":"expression","e":"\"Disable Multi Select\""},{"b":"isOn","d":"variable","e":"disableMultiSelect"},{"b":"onChange","d":"function","e":"(event) => setDisableMultiSelect(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx","c":[{"b":"name","d":"string","e":"disableMoveNodes"},{"b":"label","d":"expression","e":"\"Disable Move Nodes\""},{"b":"isOn","d":"variable","e":"disableMoveNodes"},{"b":"onChange","d":"function","e":"(event) => setDisableMoveNodes(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx","c":[{"b":"id","d":"string","e":"showWarnings"},{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx","c":[{"b":"id","d":"string","e":"showWarnings"},{"b":"name","d":"string","e":"showWarnings"},{"b":"label","d":"expression","e":"\"Show Warnings\""},{"b":"isOn","d":"variable","e":"showWarnings"},{"b":"onChange","d":"function","e":"(event) => handleShowWarningsChange(event.value)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges\""},{"b":"name","d":"expression","e":"\"shouldGroupEdges\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`"},{"b":"onChange","d":"function","e":"(event) => setShouldGroupEdges?.(event.value)"},{"b":"isOn","d":"variable","e":"shouldGroupEdges"},{"b":"disabled","d":"variable","e":"disableActionToChangeGraph"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings\""},{"b":"name","d":"expression","e":"\"showWarnings\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`"},{"b":"onChange","d":"function","e":"(event) => setShowWarnings?.(event.value)"},{"b":"isOn","d":"variable","e":"showWarnings"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showFullName\""},{"b":"name","d":"expression","e":"\"showFullName\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showFullName`"},{"b":"onChange","d":"function","e":"(event) => setShowFullNames?.(event.value)"},{"b":"isOn","d":"variable","e":"showFullNames"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"showNewEventVersionIndicator\""},{"b":"name","d":"expression","e":"\"showNewEventVersionIndicator\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showNewEventVersionIndicator`"},{"b":"onChange","d":"function","e":"(event) => setShowNewEventVersionIndicator?.(event.value)"},{"b":"isOn","d":"variable","e":"showNewEventVersionIndicator"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx","c":[{"b":"id","d":"expression","e":"\"snapNodeToGrid\""},{"b":"name","d":"expression","e":"\"snapNodeToGrid\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}snapNodeToGrid`"},{"b":"onChange","d":"function","e":"(event) => setSnapNodeToGrid?.(event.value)"},{"b":"isOn","d":"variable","e":"snapNodeToGrid"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"shouldGroupEdges\""},{"b":"name","d":"expression","e":"\"shouldGroupEdges\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`"},{"b":"onChange","d":"function","e":"(event) => setShouldGroupEdges?.(event.value)"},{"b":"isOn","d":"variable","e":"shouldGroupEdges"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings\""},{"b":"name","d":"expression","e":"\"showWarnings\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`"},{"b":"onChange","d":"function","e":"(event) => setShowWarnings?.(event.value)"},{"b":"isOn","d":"variable","e":"showWarnings"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx","c":[{"b":"id","d":"expression","e":"\"showFullName\""},{"b":"name","d":"expression","e":"\"showFullName\""},{"b":"dataQa","d":"expression","e":"`${dataQa ? dataQa + \"-\" : \"\"}showFullName`"},{"b":"onChange","d":"function","e":"(event) => setShowFullNames?.(event.value)"},{"b":"isOn","d":"variable","e":"showFullNames"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","c":[{"b":"id","d":"expression","e":"\"showAdvancedProperties\""},{"b":"name","d":"expression","e":"\"showAdvancedProperties\""},{"b":"label","d":"expression","e":"\"Show Advanced Properties\""},{"b":"dataQa","d":"expression","e":"\"showAdvancedPropertiesToggle\""},{"b":"onChange","d":"function","e":"() => setShowAdvancedProperties((prevValue) => !prevValue)"},{"b":"isOn","d":"variable","e":"showAdvancedProperties"},{"b":"disabled","d":"expression","e":"!restDeliveryPoint?.restConsumerConfiguration"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx","c":[{"b":"id","d":"expression","e":"\"showAdvancedProperties\""},{"b":"name","d":"expression","e":"\"showAdvancedProperties\""},{"b":"label","d":"expression","e":"en.application.configuration.restDeliveryPoint.showAdvancedProperties"},{"b":"dataQa","d":"expression","e":"`showAdvancedProperties`"},{"b":"onChange","d":"function","e":"() => setShowAdvancedProperties((prevValue) => !prevValue)"},{"b":"isOn","d":"variable","e":"showAdvancedProperties"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showWarnings\""},{"b":"name","d":"expression","e":"\"showWarnings\""},{"b":"dataQa","d":"expression","e":"\"showWarnings\""},{"b":"onChange","d":"function","e":"(event) => setShowWarnings?.(event.value)"},{"b":"isOn","d":"variable","e":"showWarnings"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showFullNames\""},{"b":"name","d":"expression","e":"\"showFullNames\""},{"b":"dataQa","d":"expression","e":"\"showFullNames\""},{"b":"onChange","d":"function","e":"(event) => setShowFullNames?.(event.value)"},{"b":"isOn","d":"variable","e":"showFullNames"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx","c":[{"b":"id","d":"expression","e":"\"showSchema\""},{"b":"name","d":"expression","e":"\"showSchema\""},{"b":"dataQa","d":"expression","e":"\"showSchema\""},{"b":"onChange","d":"function","e":"(event) => setShowSchema?.(event.value)"},{"b":"isOn","d":"variable","e":"showSchema"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx","c":[{"b":"id","d":"string","e":"show_all_resources"},{"b":"isOn","d":"expression","e":"selectedEnvironment?.showAllResources"},{"b":"onChange","d":"function","e":"({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"messages.header.showAllResources"},{"b":"helperText","d":"expression","e":"messages.header.helperText"},{"b":"dataQa","d":"string","e":"REMHeaderShowAllResources"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx","c":[{"b":"isOn","d":"variable","e":"hideMatches"},{"b":"name","d":"string","e":"hide-match"},{"b":"label","d":"string","e":"Hide Matches"},{"b":"onChange","d":"variable","e":"handleHideMatch"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"isOn","d":"variable","e":"hideSubRelationshipsMatches"},{"b":"name","d":"string","e":"hide-match"},{"b":"label","d":"string","e":"Hide Matches"},{"b":"onChange","d":"variable","e":"handleSubjectRelationshipHideMatch"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx","c":[{"b":"name","d":"string","e":"showPropertyNames"},{"b":"label","d":"expression","e":"application.configuration.showPropertyNames"},{"b":"isOn","d":"variable","e":"showPropertyNames"},{"b":"onChange","d":"function","e":"() => setShowPropertyNames(!showPropertyNames)"},{"b":"dataQa","d":"string","e":"showPropertyNamesToggle"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx","c":[{"b":"id","d":"string","e":"show_all"},{"b":"isOn","d":"expression","e":"selectedEnvironment.showAllResources"},{"b":"onChange","d":"variable","e":"handleShowAllEnvs"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })"},{"b":"helperText","d":"expression","e":"t({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx","c":[{"b":"id","d":"string","e":"show_all"},{"b":"isOn","d":"expression","e":"selectedEnvironment.showAllResources"},{"b":"onChange","d":"variable","e":"handleShowAllEnvs"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })"},{"b":"helperText","d":"expression","e":"t({\n\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx","c":[{"b":"...","d":"spread","e":"props"},{"b":"id","d":"variable","e":"name"},{"b":"name","d":"variable","e":"name"},{"b":"dataQa","d":"variable","e":"name"},{"b":"hasErrors","d":"variable","e":"hasErrors"},{"b":"helperText","d":"expression","e":"errorText || helperText"},{"b":"isOn","d":"variable","e":"value"},{"b":"onChange","d":"variable","e":"handleChange"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx","c":[{"b":"id","d":"string","e":"delete_protection"},{"b":"name","d":"string","e":"delete_protection"},{"b":"dataQa","d":"string","e":"delete-protection"},{"b":"isOn","d":"variable","e":"isLocked"},{"b":"disabled","d":"expression","e":"!canConfigure"},{"b":"onChange","d":"variable","e":"handleDeleteProtection"},{"b":"stateText","d":"boolean","e":"true"},{"b":"label","d":"expression","e":"t({ id: \"id_delete_protection\", message: \"Delete Protection\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"id","d":"string","e":"show_all"},{"b":"isOn","d":"expression","e":"selectedEnvironment.showAllResources"},{"b":"onChange","d":"variable","e":"handleShowAllEnvs"},{"b":"name","d":"string","e":"show_all_envs"},{"b":"label","d":"expression","e":"t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })"},{"b":"helperText","d":"expression","e":"t({ id: \"id_show_all_environments_help\", message: \"Enable to manage resources across environments\" })"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"helperText","d":"expression","e":"en.notifications[showUnreadNotifications ? \"showingUnreadNotifications\" : \"showingAllNotifications\"]"},{"b":"id","d":"string","e":"showUnreadNotifications"},{"b":"dataQa","d":"string","e":"showUnreadNotifications"},{"b":"label","d":"expression","e":"en.notifications.showUnreadNotifications"},{"b":"name","d":"string","e":"showUnreadNotifications"},{"b":"onChange","d":"function","e":"(e) => setShowUnreadNotifications(e.value)"},{"b":"title","d":"expression","e":"en.notifications.showUnreadNotifications"},{"b":"isOn","d":"variable","e":"showUnreadNotifications"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"id","d":"string","e":"securitySettingsPreAuth"},{"b":"label","d":"expression","e":"brandableTextValueConverter(\"PubSub+\", \"string\") + \" \" + en.accountSettings.preAuthText"},{"b":"name","d":"string","e":"securitySettingsPreAuth"},{"b":"onChange","d":"function","e":"(value) => togglePreAuth(value.value)"},{"b":"title","d":"string","e":"Security Settings Pre Auth"},{"b":"isOn","d":"expression","e":"!preOrgConfigResponse?.data.useAuthWebUILinks"},{"b":"disabled","d":"expression","e":"preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig"},{"b":"dataQa","d":"string","e":"preAuthText"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"name","d":"string","e":"profileToggle"},{"b":"isOn","d":"expression","e":"resource.enabled"},{"b":"onChange","d":"function","e":"() => handleResourceToggle(resource.profile)"},{"b":"dataQa","d":"expression","e":"`${resource.profile}_toggle`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"isOn","d":"expression","e":"rest.value"},{"b":"name","d":"string","e":"datacenterVisibility"},{"b":"onChange","d":"function","e":"(event) => rest.onChange(event.value)"},{"b":"label","d":"string","e":"Visible"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx","c":[{"b":"...","d":"spread","e":"rest"},{"b":"name","d":"string","e":"datacenterAvailability"},{"b":"onChange","d":"function","e":"(event) => rest.onChange(event.value)"},{"b":"label","d":"string","e":"Available"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggle/totalUsages.json b/mrc-usage-report-data/per-component/SolaceToggle/totalUsages.json new file mode 100644 index 000000000..597975b41 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggle/totalUsages.json @@ -0,0 +1 @@ +35 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggle/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceToggle/usagesByMfe.json new file mode 100644 index 000000000..65241458b --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggle/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":25,"intg":2,"mc":3,"saas":2,"maas-ops-react":3} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/commonProps.json b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/commonProps.json new file mode 100644 index 000000000..6282c4d56 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/commonProps.json @@ -0,0 +1 @@ +[{"name":"options","count":10},{"name":"activeValue","count":10},{"name":"onChange","count":10},{"name":"dataQa","count":2}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/customization.json b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/files.json b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/files.json new file mode 100644 index 000000000..12b568b88 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/instances.json b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/instances.json new file mode 100644 index 000000000..e04a03da3 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx","c":[{"b":"options","d":"expression","e":"getFilterOptions()"},{"b":"activeValue","d":"variable","e":"activeTab"},{"b":"onChange","d":"variable","e":"onChangeTabHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx","c":[{"b":"options","d":"variable","e":"getFilterOptions"},{"b":"activeValue","d":"variable","e":"activeTab"},{"b":"onChange","d":"variable","e":"onChangeTabHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx","c":[{"b":"options","d":"variable","e":"FILTER_OPTIONS"},{"b":"activeValue","d":"variable","e":"filter"},{"b":"onChange","d":"variable","e":"onChangeHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx","c":[{"b":"options","d":"variable","e":"getFilterOptions"},{"b":"activeValue","d":"variable","e":"activeTabInApplicationFlow"},{"b":"onChange","d":"variable","e":"handleApplicationFlowTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx","c":[{"b":"options","d":"variable","e":"getFilterOptions"},{"b":"activeValue","d":"variable","e":"activeTabInApplicationFlow"},{"b":"onChange","d":"variable","e":"handleApplicationFlowTabClick"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"options","d":"variable","e":"filterOptions"},{"b":"activeValue","d":"variable","e":"filter"},{"b":"onChange","d":"variable","e":"onChangeHandler"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx","c":[{"b":"options","d":"array","e":"[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Docker\",\n\t\t\t\t\tvalue: EmaInstallationTypes.docker,\n\t\t\t\t\tdataQa: \"ema-installation-type-docker\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Java\",\n\t\t\t\t\tvalue: EmaInstallationTypes.java,\n\t\t\t\t\tdataQa: \"ema-installation-type-java\"\n\t\t\t\t}\n\t\t\t]"},{"b":"onChange","d":"variable","e":"onChange"},{"b":"activeValue","d":"variable","e":"activeValue"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"options","d":"variable","e":"viewOptions"},{"b":"onChange","d":"variable","e":"handleToggleView"},{"b":"activeValue","d":"variable","e":"selectedView"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx","c":[{"b":"dataQa","d":"string","e":"userManagementToggle"},{"b":"options","d":"variable","e":"TAB_OPTIONS"},{"b":"onChange","d":"variable","e":"onToggleChangeHandler"},{"b":"activeValue","d":"variable","e":"filter"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"dataQa","d":"string","e":"filterTriggerType"},{"b":"activeValue","d":"variable","e":"activeValue"},{"b":"onChange","d":"variable","e":"handleFilterByTriggerType"},{"b":"options","d":"array","e":"[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"All\",\n\t\t\t\t\t\t\t\t\tvalue: \"all\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Customer\",\n\t\t\t\t\t\t\t\t\tvalue: \"customer\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"System\",\n\t\t\t\t\t\t\t\t\tvalue: \"system\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/totalUsages.json b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/totalUsages.json new file mode 100644 index 000000000..9a037142a --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/totalUsages.json @@ -0,0 +1 @@ +10 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/usagesByMfe.json new file mode 100644 index 000000000..f292cfb92 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceToggleButtonGroup/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":7,"mc":1,"saas":1,"maas-ops-react":1} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTooltip/commonProps.json b/mrc-usage-report-data/per-component/SolaceTooltip/commonProps.json new file mode 100644 index 000000000..e015190d0 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTooltip/commonProps.json @@ -0,0 +1 @@ +[{"name":"title","count":379},{"name":"variant","count":312},{"name":"placement","count":151},{"name":"maxWidth","count":87},{"name":"dataQa","count":29},{"name":"key","count":20},{"name":"open","count":10},{"name":"onOpen","count":9},{"name":"onClose","count":9},{"name":"disableHoverListener","count":6}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTooltip/customization.json b/mrc-usage-report-data/per-component/SolaceTooltip/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTooltip/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTooltip/files.json b/mrc-usage-report-data/per-component/SolaceTooltip/files.json new file mode 100644 index 000000000..20cb01249 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTooltip/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","../../../maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx","../../../maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx","../../../maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx","../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTooltip/instances.json b/mrc-usage-report-data/per-component/SolaceTooltip/instances.json new file mode 100644 index 000000000..0cbef9748 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTooltip/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"title ?? \"Configuring\""},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"getTitle(title, description)"},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"string","e":"Update event broker to configure recent changes to this application"},{"b":"placement","d":"string","e":"top-start"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"title","d":"variable","e":"tooltipTitle"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"eventVersion?.displayName || eventVersion?.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"subscriptions[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"subscriptions[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"key","d":"expression","e":"`${id}-subscriptions`"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{subscriptions.slice(1).map((sub, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{sub}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"discrepancies[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"discrepancies[0]"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"key","d":"expression","e":"`${id}-discrepancies`"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t{discrepancies.slice(1).map((discrepancy, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{discrepancy}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"getHelpTooltipContent()"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"messages.preview.aclProfile"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"string","e":"aclProfileConfig"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"messages.credentials.clientCredentials"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"string","e":"clientCredentialConfig"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"identifier"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"expression","e":"`queueConfig-${identifier}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"queueBindingTitle"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"expression","e":"`queueBindingConfig-${queueBindingTitle}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"identifier"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"dataQa","d":"expression","e":"`rdpConfig-${identifier}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"POPOVER_CONTENT"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}\n\t\t\t\t\t\t\t"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"{messages.add.applicationVersionRemovalWarning}"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"{messages.add.noConfigurationWarning}"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"{messages.add.noConfigurationWarning}"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"userName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"resourceName"},{"b":"data-qa","d":"string","e":"resourceNameTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx","c":[{"b":"title","d":"expression","e":"role.title"},{"b":"placement","d":"variable","e":"placement"},{"b":"dataQa","d":"expression","e":"`roleIcon-${resourceRole || \"none\"}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"disableHoverListener","d":"expression","e":"addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"enterDelay","d":"number","e":"800"},{"b":"enterNextDelay","d":"number","e":"800"},{"b":"disableFocusListener","d":"boolean","e":"true"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\tLink applications to show an organizational relationship in the graph view.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about linked applications\n\t\t\t\t\t\t\n\t\t\t\t\t"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"right-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx","c":[{"b":"key","d":"string","e":"graphViewToggle"},{"b":"title","d":"string","e":"Graph View"},{"b":"placement","d":"string","e":"bottom-start"},{"b":"disableHoverListener","d":"expression","e":"selected === \"graph\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx","c":[{"b":"key","d":"string","e":"listViewToggle"},{"b":"disableHoverListener","d":"variable","e":"disableHoverOnListView"},{"b":"title","d":"expression","e":"entityName ? : \"Components\""},{"b":"variant","d":"expression","e":"entityName ? \"html\" : \"text\""},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"title","d":"expression","e":"selectedDetails.accessDenied && selectedDetails?.tooltip"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttribute.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttributeValue?.value"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"getStringValuesTooltipContent(customAttributeValue?.stringValues)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"getCustomAttributesHelpTooltipContent()"},{"b":"placement","d":"expression","e":"\"right\""},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"caName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttribute.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"title","d":"expression","e":"\"Add the custom attribute to All application domains or only the Current application domain.\""},{"b":"variant","d":"string","e":"html"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"customAttributeScopeTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"selectedEntity.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"entityName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.displayName || version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"isSubscribeReadOnly ? \"Already subscribing to event\" : \"\""},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"isPublishReadOnly ? \"Already publishing event\" : \"\""},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t{searchText && {`Matching text for '${searchText}'`}}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"entityName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.displayName || version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"title","d":"expression","e":"environmentOption.label"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx","c":[{"b":"title","d":"string","e":"Remove"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx","c":[{"b":"title","d":"expression","e":"`Remove`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"eventManagementAgent?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody(memName)"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"eventApiProductName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"itemName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.displayName || item.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"},{"b":"dataQa","d":"expression","e":"`domainIcon-${applicationDomainName}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"},{"b":"dataQa","d":"expression","e":"`domainChip-${applicationDomainName}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"messages.configuration.description"},{"b":"placement","d":"string","e":"top"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"renderProtocolPopover(messagingService.supportedProtocols ?? [])"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"title","d":"expression","e":"item.parent?.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"title","d":"expression","e":"item.displayName || item.version"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx","c":[{"b":"title","d":"string","e":"Zoom Out"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx","c":[{"b":"title","d":"string","e":"Zoom In"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"removedNode.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"removedNode.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx","c":[{"b":"title","d":"string","e":"Zoom Out"},{"b":"disableHoverListener","d":"variable","e":"disabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx","c":[{"b":"title","d":"string","e":"Zoom In"},{"b":"disableHoverListener","d":"variable","e":"disabled"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.parentName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.versionName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx","c":[{"b":"title","d":"expression","e":"item.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"customAttributeName"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"\"Filters relevant only to other object types\""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":" 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />"},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"onVersionHover ? onVersionHover(version.id) : \"\""},{"b":"placement","d":"string","e":"left-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"key","d":"expression","e":"`${version.id}-${index}`"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`Matching text for '${searchText}'`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"handleVersionListHover()"},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.latestVersion"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx","c":[{"b":"title","d":"variable","e":"children"},{"b":"open","d":"variable","e":"open"},{"b":"onOpen","d":"variable","e":"handleOnOpen"},{"b":"onClose","d":"variable","e":"handleOnClose"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx","c":[{"b":"title","d":"expression","e":"value.label"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx","c":[{"b":"title","d":"expression","e":"value.label"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx","c":[{"b":"title","d":"expression","e":"value.label"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"string","e":"Unable to edit when custom attributes have unsaved changes"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx","c":[{"b":"dataQa","d":"string","e":"version"},{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionInfo?.displayName || versionInfo?.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"title","d":"expression","e":"getVersionValues()?.[versionObjectName][\"version\"]"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx","c":[{"b":"title","d":"expression","e":"getVersionValues()?.[versionObjectName][\"displayName\"]"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"customAttributeValue.customAttributeDefinitionName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"getCustomAttributesHelpTooltipContent()"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-end\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"`Unable to edit when ${entityType} has unsaved changes`"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"variable","e":"unsavedChangesWarningMsg"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltip"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"node.displayName || node.versionSemver"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"title","d":"expression","e":"nodeWarningTypeDescription[warnings?.[0]]"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"SecondaryTextHoverContent()"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"topicName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\tEvent version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.\n\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"title","d":"variable","e":"warning"},{"b":"placement","d":"string","e":"right"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx","c":[{"b":"title","d":"expression","e":"consumer.name"},{"b":"placement","d":"string","e":"top"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx","c":[{"b":"title","d":"expression","e":"eventMesh.environmentName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"domain.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"item.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltipContent"},{"b":"maxWidth","d":"expression","e":"\"small\""},{"b":"placement","d":"expression","e":"\"top-start\""},{"b":"dataQa","d":"expression","e":"\"approvalTypes-Tooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltipContent"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"top-start\""},{"b":"dataQa","d":"expression","e":"\"availability-Tooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-end\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"key","d":"expression","e":"`tooltip-${name}`"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"applicatonDomainPopoverContent(name)"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tAll object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn about downloading AsyncAPI documents\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tPrepend Application Domain Name\n\t\t\t\t\t\t\tUse this option when the file contains objects with the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tAppend Major Version Number\n\t\t\t\t\t\t\tUse this option when the file contains more than one version of the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t
"},{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"namingStrategyTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.parent?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionData.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"level.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"level.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"title","d":"expression","e":"getTooltipContent()"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"right"},{"b":"dataQa","d":"string","e":"queueBindingHelpTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"bottom-end\""},{"b":"maxWidth","d":"expression","e":"\"full\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityConfigSidePanelProps.title"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"displayName ? displayName : version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"viewedSchema.name"},{"b":"placement","d":"string","e":"bottom-end"},{"b":"dataQa","d":"string","e":"viewedSchemaName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"sharedSchema ? \"This event is shared. Only shared schemas can be created\" : \"\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"applicationDomainsMap[schemaParent.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${schemaVersionSelectedMap[row.id].length} Added`"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"\"Selected\""},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"\"Application Domain\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltip"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"expression","e":"\"full\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"consumerName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"handleVersionListHover()"},{"b":"placement","d":"string","e":"right-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"eventName ? \"Event is not shared across application domains\" : \"You do not have access to view this event because it is not shared\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"request.subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx","c":[{"b":"title","d":"expression","e":"item.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltip"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"\"searchEventsTooltip\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.approved"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.pending"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.declined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"RequestStatusLabel.toBeRequested"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"consumerName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"variable","e":"subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"\"Event Access Requests\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"jsx","e":""},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"messages.configuration.description"},{"b":"placement","d":"string","e":"top"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"title","d":"expression","e":"messages.action.addApplication"},{"b":"placement","d":"string","e":"top"},{"b":"disableHoverListener","d":"expression","e":"!!applicationVersion?.id"},{"b":"disableFocusListener","d":"expression","e":"!!applicationVersion?.id"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap?.[row.applicationDomainId]?.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionData.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"versionData.displayName"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"id","d":"expression","e":"item.id"},{"b":"title","d":"expression","e":"\"Event is not the latest version\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"ADDITIONAL_CONSUMED_EVENTS_INFO"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"applicationName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"version.displayName || version.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"request.eventName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationDomainsMap[request.applicationDomainId]?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"request.subscription"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.requestor"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"formatISOTimeFromNow(row.createdTime)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"messages.info"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"title","d":"expression","e":"secondaryAction?.tooltip"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"title","d":"expression","e":"selectedDetails.accessDenied && selectedDetails?.tooltip"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"eventApi.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"eventApiProduct.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"application.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"en.application.applicationType[application.applicationType]"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(application.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"event.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"title","d":"expression","e":"\"You do not have access to this Application Domain\""},{"b":"placement","d":"expression","e":"\"left\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(event.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"enumEntity.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"title","d":"expression","e":"\"You do not have access to this Application Domain\""},{"b":"placement","d":"expression","e":"\"left\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"schema.name"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"title","d":"expression","e":"\"You do not have access to this Application Domain\""},{"b":"placement","d":"expression","e":"\"left\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"(runtimeAgent as EventManagementAgent)?.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"getSempUrlFromEPCore(messagingService)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"getMsgVpnFromEPCore(messagingService)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"bottom"},{"b":"title","d":"jsx","e":"{renderUnavailableMessagingServices()}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"timeMsg"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx","c":[{"b":"title","d":"expression","e":"STATUS_DESC_DISPLAY_MAP[status]"},{"b":"placement","d":"expression","e":"\"right\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityVersion.parent.name"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityVersion.displayName || entityVersion.version"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"entityVersion.displayName || entityVersion.version"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"variant","d":"expression","e":"getTooltipVariant(item)"},{"b":"title","d":"expression","e":"item.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"left-start"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverContent"},{"b":"dataQa","d":"expression","e":"`appVersionSummaryPopover-${application.id}`"},{"b":"placement","d":"string","e":"left-start"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx","c":[{"b":"key","d":"expression","e":"`domainName-${domain.id}`"},{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"expression","e":"domain.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverTitle"},{"b":"placement","d":"string","e":"left"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverTitle"},{"b":"placement","d":"string","e":"left"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"rowIdentifierValue"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"parentName"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${row.designObjects.parentName}`"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"`${row.designObjects.parentName} ${numAdditionalParents}`"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"title","d":"expression","e":"`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\t\t\t\tAUDIT_ENTITY_TYPE_MAP[auditEntityType]\n\t\t\t\t\t\t\t)}.`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverContent"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"dataQa","d":"expression","e":"`auditImportPopover-${jobId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"variable","e":"popoverContent"},{"b":"dataQa","d":"expression","e":"`auditImportPopover-${createdTime}`"},{"b":"placement","d":"string","e":"bottom-end"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx","c":[{"b":"variant","d":"expression","e":"\"text\""},{"b":"title","d":"jsx","e":"
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"entityName"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"tooltipBody"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"name"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx","c":[{"b":"variant","d":"expression","e":"\"overflow\""},{"b":"title","d":"variable","e":"topicAddress"},{"b":"maxWidth","d":"expression","e":"\"medium\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"applicationVersion.displayName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx","c":[{"b":"title","d":"expression","e":"applicationVersion.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"secondaryPanelTitle"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"getSidePanelTitle()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"title","d":"expression","e":"renderSubjectRelationshipHelp()"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"renderTooltipBody()"},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"key","d":"expression","e":"tag.id"},{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"getTooltipMessage(tag)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"getTooltipMessage(hideAuditTag)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"\"The event broker must be in a modeled event mesh to receive runtime data or send configuration data.\""},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"title","d":"variable","e":"brokerType"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"title","d":"expression","e":"row.modeledEventMesh.name"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"title","d":"expression","e":"item.name"},{"b":"variant","d":"expression","e":"TooltipVariant.overflow"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"variant","d":"expression","e":"TooltipVariant.rich"},{"b":"placement","d":"string","e":"left-start"},{"b":"title","d":"jsx","e":""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"dataQa","d":"string","e":"reuseIndexTooltip"},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t÷\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","c":[{"b":"title","d":"variable","e":"label"},{"b":"variant","d":"expression","e":"TooltipVariant.overflow"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx","c":[{"b":"title","d":"expression","e":"en.connectors.labels.nonDroppableTooltip"},{"b":"open","d":"expression","e":"isActive && !canDrop"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"item.source"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"variant","d":"expression","e":"TooltipVariant.overflow"},{"b":"title","d":"expression","e":"item.target"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.source"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.target"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.source"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"title","d":"expression","e":"connectors.labels.target"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx","c":[{"b":"variant","d":"expression","e":"\"html\""},{"b":"title","d":"jsx","e":""},{"b":"open","d":"variable","e":"tooltipOpen"},{"b":"onOpen","d":"variable","e":"handleTooltipOpen"},{"b":"onClose","d":"variable","e":"handleTooltipClose"},{"b":"maxWidth","d":"expression","e":"\"medium\""},{"b":"placement","d":"expression","e":"\"bottom-start\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx","c":[{"b":"title","d":"expression","e":"role.title"},{"b":"dataQa","d":"expression","e":"`roleIcon-${resourceRole || \"none\"}`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"userName"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{helpMessage}\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","c":[{"b":"variant","d":"string","e":"html"},{"b":"title","d":"variable","e":"maxQueueMsgsInfo"},{"b":"placement","d":"expression","e":"\"bottom-start\""},{"b":"maxWidth","d":"string","e":"small"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx","c":[{"b":"dataQa","d":"expression","e":"\"service-auth-tooltip\""},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":""},{"b":"placement","d":"expression","e":"\"right\""},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"t({ id: \"id_view_tiles\", message: \"Grid View\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"t({ id: \"id_view_list\", message: \"List View\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"variable","e":"email"},{"b":"placement","d":"string","e":"top-start"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"servicesInMeshes.get(service.id as string)?.name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"userAccessInfo.userAccessText"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx","c":[{"b":"title","d":"expression","e":"environment.label || \"n/a\""}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"servicesInMeshes.get(serviceId)?.name"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"userAccessInfo.userAccessText"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx","c":[{"b":"title","d":"expression","e":"organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"userName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx","c":[{"b":"title","d":"expression","e":"chipProps.tooltip"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"textValue"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"variant","d":"string","e":"html"},{"b":"dataQa","d":"string","e":"pcuCalculationTooltip"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (\n\t\t\t\t\t\t\t\t\t\t{mappedRolesData[item].name}\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"rowData.claimValues"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"variable","e":"name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t{rowData.userGroups\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)\n\t\t\t\t\t\t\t\t\t\t.map(({ name, value }) => (\n\t\t\t\t\t\t\t\t\t\t\t{name}\n\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"getStatusLabel(c.status)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"getStatusLabel(mc.status)"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"title","d":"expression","e":"`The environment type cannot be changed.`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"title","d":"expression","e":"`The environment type cannot be changed.`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"environment.name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx","c":[{"b":"key","d":"expression","e":"`${testItem.id}-${testItem.name}-template-warning`"},{"b":"title","d":"expression","e":"environmentsStr.configurationTemplates.warning"},{"b":"dataQa","d":"string","e":"runtimeTemplatesWarning"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"key","d":"expression","e":"user.email"},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t"},{"b":"placement","d":"string","e":"bottom"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.notReadyTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.readyTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.notReadyTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.inMaintenanceTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.dcOperational"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"en.privateRegions.labels.dcNotoperational"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx","c":[{"b":"title","d":"expression","e":"row?.epCapabilities == Status.ERROR ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.eventManagementAgentErrorText}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) : undefined"},{"b":"variant","d":"string","e":"rich"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"placement","d":"string","e":"bottom-start"},{"b":"variant","d":"string","e":"html"},{"b":"title","d":"expression","e":"tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"title","d":"expression","e":"tracingDestinationLimitReached\n\t\t\t\t\t\t\t\t\t? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)\n\t\t\t\t\t\t\t\t\t: undefined"},{"b":"variant","d":"string","e":"html"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx","c":[{"b":"title","d":"variable","e":"tooltip"},{"b":"variant","d":"string","e":"html"},{"b":"maxWidth","d":"string","e":"medium"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"en.overview.eventPortalSection[\n\t\t\t\t\t\t\t\t\t\t\tuser?.eventPortal2AccessEnabled ? \"totalObjectsTooltip1\" : \"totalObjectsTooltip2\"\n\t\t\t\t\t\t\t\t\t\t]"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.totalObjectsCountText}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.objectsCountLearnLinkText}\n\t\t\t\t\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t{roleIdNameMap &&\n\t\t\t\t\t\t\t\t\tuser.roles\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)\n\t\t\t\t\t\t\t\t\t\t.map((role) => {roleIdNameMap[role]})}\n\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx","c":[{"b":"key","d":"expression","e":"`${item.name}-key4`"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx","c":[{"b":"title","d":"variable","e":"dateStr"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"title"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"path.title"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"path.title"},{"b":"maxWidth","d":"string","e":"medium"},{"b":"placement","d":"string","e":"bottom-end"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"version"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"string","e":"N/A"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"string","e":"N/A"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.deploymentId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.infrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.requestAction"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.deploymentStatus"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.updatedOn"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"variable","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"typedRow.org_id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.organizationId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"expression","e":"datadogSubOrgAttributes().variant"},{"b":"title","d":"expression","e":"datadogSubOrgAttributes().tooltip"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.monitoring"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"datadogArtifactAttributes().tooltip"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"expression","e":"row?.aup === \"N/A\" ? \"html\" : \"overflow\""},{"b":"title","d":"expression","e":"row?.aup === \"N/A\" ? \"Not Applicable\" : row?.aup"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"row.distributedTracingEnabled == undefined ? \"Use the refresh button to fetch this info\" : \"\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"time"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.[key]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx","c":[{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx","c":[{"b":"title","d":"variable","e":"displayName"},{"b":"placement","d":"string","e":"top"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"title","d":"expression","e":"secondary.toString()"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"String(row[key])"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx","c":[{"b":"title","d":"variable","e":"tenantId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"title","d":"variable","e":"customerId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx","c":[{"b":"title","d":"variable","e":"accountName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx","c":[{"b":"dataQa","d":"string","e":"serviceNameTooltip"},{"b":"title","d":"expression","e":"name.name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx","c":[{"b":"title","d":"expression","e":"`${item}`"},{"b":"key","d":"variable","e":"key"},{"b":"data-qa","d":"expression","e":"`tooltip${key}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"title","d":"expression","e":"organizationDetails.notificationContacts.tooltips.copyEmail"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t{hiddenEmails.map((email, index) => (\n\t\t\t\t\t\t\t\t{email}\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"variable","e":"textValue"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"maxWidth","d":"string","e":"medium"},{"b":"variant","d":"string","e":"html"},{"b":"dataQa","d":"string","e":"pcuCalculationTooltip"},{"b":"title","d":"jsx","e":"\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`podName-${index}`"},{"b":"title","d":"expression","e":"row.podName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`attachedNode-${index}`"},{"b":"title","d":"expression","e":"row.attachedNode"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`pod-${index}-${idx}`"},{"b":"title","d":"variable","e":"item"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`messageBrokerPod-${index}`"},{"b":"title","d":"variable","e":"messageBrokerPod"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx","c":[{"b":"key","d":"expression","e":"`events-${index}`"},{"b":"title","d":"expression","e":"row.events?.join()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx","c":[{"b":"title","d":"variable","e":"tooltip"},{"b":"variant","d":"string","e":"html"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"variable","e":"configRequest"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"variable","e":"configRequest"},{"b":"placement","d":"string","e":"bottom-start"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.infrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.monitoringMode"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceClassId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.servicePackageId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.solaceDatadogAgentImage"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.solaceDatadogAgentVersion"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"`TLS verification skipped. This creates an insecure connection to event brokers with custom certificates.`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"`Latest Image Tag: ${latestVersion}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"rich"},{"b":"title","d":"expression","e":"popoverContent(row as ManagedEventManagementAgent)"},{"b":"maxWidth","d":"string","e":"full"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx","c":[{"b":"title","d":"variable","e":"value"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"text"},{"b":"title","d":"expression","e":"row?.released ? \"Released\" : \"Not Released\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"expression","e":"value ? \"text\" : \"overflow\""},{"b":"title","d":"expression","e":"value ? time : \"Not Released\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.[key]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.[key]"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx","c":[{"b":"title","d":"variable","e":"label"},{"b":"variant","d":"string","e":"overflow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"txt"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"txt"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"txt"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"variable","e":"dateStr"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"expression","e":"`Expired ${-daysUntilExpiry} day${-daysUntilExpiry !== 1 ? 's' : ''} ago`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"title","d":"expression","e":"`Expiring in ${daysUntilExpiry} day${daysUntilExpiry !== 1 ? 's' : ''}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.id"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.displayName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.provider.toUpperCase()"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serverCertificateId ?? \"Default Global\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.accessType"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"_.isEmpty(row?.cloudAgentVersion) ? \"Not Configured\" : row?.cloudAgentVersion"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.datacenterType"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.displayName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.serviceId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.datacenterId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.infrastructureId"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.displayName"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx","c":[{"b":"variant","d":"string","e":"overflow"},{"b":"title","d":"expression","e":"row?.tracingBackendType"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx","c":[{"b":"title","d":"variable","e":"tooltip"},{"b":"variant","d":"string","e":"html"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTooltip/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTooltip/totalUsages.json new file mode 100644 index 000000000..1380537bf --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTooltip/totalUsages.json @@ -0,0 +1 @@ +385 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTooltip/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTooltip/usagesByMfe.json new file mode 100644 index 000000000..af7cd85af --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTooltip/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":245,"intg":10,"mc":14,"saas":29,"infra":2,"maas-ops-react":85} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTruncatableLink/commonProps.json b/mrc-usage-report-data/per-component/SolaceTruncatableLink/commonProps.json new file mode 100644 index 000000000..1080bf384 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTruncatableLink/commonProps.json @@ -0,0 +1 @@ +[{"name":"id","count":48},{"name":"text","count":48},{"name":"onClick","count":31},{"name":"dataQa","count":8},{"name":"href","count":2},{"name":"key","count":1}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTruncatableLink/customization.json b/mrc-usage-report-data/per-component/SolaceTruncatableLink/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTruncatableLink/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTruncatableLink/files.json b/mrc-usage-report-data/per-component/SolaceTruncatableLink/files.json new file mode 100644 index 000000000..ae570b43f --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTruncatableLink/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTruncatableLink/instances.json b/mrc-usage-report-data/per-component/SolaceTruncatableLink/instances.json new file mode 100644 index 000000000..161ac290e --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTruncatableLink/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"id","d":"expression","e":"`${entityType}NameValue`"},{"b":"text","d":"expression","e":"entity.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"eventBrokerNameValue"},{"b":"text","d":"expression","e":"selectedEventBroker.name"},{"b":"onClick","d":"function","e":"() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"applicationNameValue"},{"b":"text","d":"expression","e":"selectedApplication.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"authenticationTypeValue"},{"b":"text","d":"expression","e":"getCredentialsLabel(credentials)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"authenticationTypeAValue"},{"b":"text","d":"expression","e":"getCredentialsFieldValue(credentials, \"inputA\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"authenticationTypeBValue"},{"b":"text","d":"expression","e":"getCredentialsFieldValue(credentials, \"inputB\")"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"clientProfile"},{"b":"text","d":"expression","e":"selectedClientProfileName ?? \"default\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"restDeliveryPointNameValue"},{"b":"text","d":"variable","e":"rdpName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"id","d":"string","e":"clientProfileValue"},{"b":"text","d":"expression","e":"selectedClientProfileName ?? \"default\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx","c":[{"b":"id","d":"expression","e":"applicationVersion.id"},{"b":"text","d":"jsx","e":"{`${applicationVersion.parent.name} `}"},{"b":"onClick","d":"function","e":"(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx","c":[{"b":"id","d":"expression","e":"applicationVersion.id"},{"b":"text","d":"jsx","e":"{applicationVersion.displayName || applicationVersion.version}"},{"b":"onClick","d":"function","e":"(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx","c":[{"b":"id","d":"expression","e":"eventApiProductVersion.id"},{"b":"text","d":"variable","e":"eventApiProductName"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"id","d":"expression","e":"item.id"},{"b":"text","d":"variable","e":"itemName"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"id","d":"expression","e":"version.id"},{"b":"text","d":"jsx","e":"<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx","c":[{"b":"id","d":"expression","e":"version.id"},{"b":"text","d":"expression","e":"onVersionNameClick ? version.display || version.semver : {version.display || version.semver}"},{"b":"onClick","d":"expression","e":"onVersionNameClick ? () => onVersionNameClick(version) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx","c":[{"b":"id","d":"expression","e":"event.id"},{"b":"text","d":"expression","e":"event.name"},{"b":"onClick","d":"function","e":"() => eventSelectionCallback(event)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx","c":[{"b":"id","d":"expression","e":"node.versionId"},{"b":"text","d":"expression","e":"node.name"},{"b":"onClick","d":"expression","e":"handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx","c":[{"b":"id","d":"expression","e":"item.id"},{"b":"text","d":"expression","e":"item.name"},{"b":"onClick","d":"expression","e":"canOpen ? () => onOpen(item) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"id","d":"expression","e":"\"contextSelector-title\""},{"b":"text","d":"expression","e":"`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx","c":[{"b":"id","d":"expression","e":"`${schemaVersion.id}-link`"},{"b":"text","d":"expression","e":"schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version"},{"b":"onClick","d":"function","e":"() => onViewSchemaVersionDetails(schema, schemaVersion)"},{"b":"dataQa","d":"expression","e":"`${schemaVersion.id}-viewDetails`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"onClick","d":"expression","e":"environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined"},{"b":"id","d":"expression","e":"eventBroker.id"},{"b":"text","d":"expression","e":"eventBroker.name"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"dataQa","d":"expression","e":"`${applicationVersion.id}-applicationVersion-link`"},{"b":"href","d":"expression","e":"`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`"},{"b":"id","d":"expression","e":"applicationVersion.id"},{"b":"text","d":"expression","e":"applicationVersion.displayName || applicationVersion.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"onClick","d":"function","e":"() => handleEdit(row)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx","c":[{"b":"id","d":"expression","e":"request.applicationId"},{"b":"text","d":"expression","e":"request.application.name"},{"b":"onClick","d":"expression","e":"applicationDomainLocked ? null : () => onApplicationClick(request.application)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"id","d":"expression","e":"row.eventId"},{"b":"text","d":"expression","e":"row.eventName"},{"b":"onClick","d":"function","e":"(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx","c":[{"b":"id","d":"expression","e":"row.applicationId"},{"b":"text","d":"expression","e":"row.application?.name ?? \"-\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx","c":[{"b":"id","d":"expression","e":"`${entityVersion.parent.id}-${entityVersion.id}`"},{"b":"text","d":"expression","e":"entityVersion.parent.name"},{"b":"onClick","d":"expression","e":"handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx","c":[{"b":"id","d":"expression","e":"row.id + \"_name\""},{"b":"text","d":"expression","e":"row.eventMeshName"},{"b":"onClick","d":"expression","e":"hasAccess ? () => handleViewDetail(row) : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"`appVersionSummaryPopoverText=${applicationVersion.id}`"},{"b":"text","d":"expression","e":"applicationVersion.displayName || applicationVersion.version"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"`appVersionName-${applicationVersion.id}`"},{"b":"text","d":"expression","e":"applicationVersion.displayName || applicationVersion.version"},{"b":"onClick","d":"function","e":"() => openApplicationDetails(applicationVersion.parent, applicationVersion)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx","c":[{"b":"id","d":"expression","e":"`appName-${application.id}`"},{"b":"text","d":"expression","e":"application.name"},{"b":"onClick","d":"function","e":"() => openApplicationDetails(application)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx","c":[{"b":"key","d":"variable","e":"index"},{"b":"id","d":"expression","e":"event?.name"},{"b":"text","d":"expression","e":"event?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(event)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx","c":[{"b":"id","d":"expression","e":"associatedEventParents?.[0]?.name"},{"b":"text","d":"expression","e":"associatedEventParents?.[0]?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(associatedEventParents?.[0])"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx","c":[{"b":"id","d":"expression","e":"`${versionNumber}`"},{"b":"text","d":"expression","e":"`Version ${versionNumber}`"},{"b":"onClick","d":"function","e":"() => handleVersionLinkClick(relation)"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"id","d":"expression","e":"`${associatedEvents?.[0]?.id}`"},{"b":"text","d":"expression","e":"associatedEvents?.[0]?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(associatedEvents?.[0])"},{"b":"dataQa","d":"expression","e":"`${associatedEvents?.[0]?.name}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"id","d":"expression","e":"`${schemaDetail?.name}`"},{"b":"text","d":"expression","e":"schemaDetail?.name ?? \"\""},{"b":"onClick","d":"function","e":"() => handleDetailDialogOpen(null)"},{"b":"dataQa","d":"expression","e":"`${schemaDetail?.name}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"id","d":"expression","e":"`${applicationDetail?.parent?.name}-${applicationDetail?.version}`"},{"b":"text","d":"expression","e":"applicationDetail?.parent?.name ?? \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx","c":[{"b":"id","d":"expression","e":"`${eventDetail?.parent?.name}-${eventDetail?.version}`"},{"b":"text","d":"expression","e":"eventDetail?.parent?.name ?? \"\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"href","d":"expression","e":"`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx","c":[{"b":"id","d":"expression","e":"messagingService.id"},{"b":"text","d":"expression","e":"messagingService.name"},{"b":"onClick","d":"function","e":"() => onTitleLinkClick(messagingService)"},{"b":"dataQa","d":"string","e":"messagingService[Accordion][Title]"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx","c":[{"b":"dataQa","d":"expression","e":"`${row.id}-templateLink`"},{"b":"onClick","d":"function","e":"() => handleSelectTemplate(row.id)"},{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.templateName"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"limitString(row.name, 35)"},{"b":"dataQa","d":"expression","e":"`${camelCase(row.name)}_button`"},{"b":"onClick","d":"function","e":"() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx","c":[{"b":"id","d":"expression","e":"row.id"},{"b":"text","d":"expression","e":"row.name"},{"b":"dataQa","d":"expression","e":"`row.name_button`"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTruncatableLink/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTruncatableLink/totalUsages.json new file mode 100644 index 000000000..31ff414b7 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTruncatableLink/totalUsages.json @@ -0,0 +1 @@ +48 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTruncatableLink/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTruncatableLink/usagesByMfe.json new file mode 100644 index 000000000..97f0f06f9 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTruncatableLink/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":46,"intg":2} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTypography/commonProps.json b/mrc-usage-report-data/per-component/SolaceTypography/commonProps.json new file mode 100644 index 000000000..2b8b408f6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTypography/commonProps.json @@ -0,0 +1 @@ +[{"name":"variant","count":426},{"name":"sx","count":100},{"name":"fontWeight","count":43},{"name":"mt","count":38},{"name":"data-qa","count":29},{"name":"mb","count":28},{"name":"id","count":23},{"name":"ml","count":18},{"name":"key","count":18},{"name":"component","count":18}] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTypography/customization.json b/mrc-usage-report-data/per-component/SolaceTypography/customization.json new file mode 100644 index 000000000..2892fa7ab --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTypography/customization.json @@ -0,0 +1 @@ +{"styledComponentCount":0,"customStylesCount":0,"overriddenPropertiesCounts":{}} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTypography/files.json b/mrc-usage-report-data/per-component/SolaceTypography/files.json new file mode 100644 index 000000000..bb8a43298 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTypography/files.json @@ -0,0 +1 @@ +["../../../maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","../../../maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx","../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","../../../broker-manager/src/pages/help/learning-centre/react-components/section.js"] \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTypography/instances.json b/mrc-usage-report-data/per-component/SolaceTypography/instances.json new file mode 100644 index 000000000..8bf95c602 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTypography/instances.json @@ -0,0 +1 @@ +{"keyMap":{"filePath":"a","name":"b","props":"c","type":"d","value":"e"},"data":[{"a":"../../../maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx","c":[{"b":"align","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"expression","e":"\"h3\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"expression","e":"\"h5\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx","c":[{"b":"variant","d":"expression","e":"\"h5\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx","c":[{"b":"ml","d":"number","e":"1"},{"b":"color","d":"expression","e":"bulkMoveLimitExceeded ? \"error\" : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"marginTop","d":"number","e":"0.5"},{"b":"marginBottom","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"string","e":"role"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"component","d":"string","e":"span"},{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"expression","e":"`roles-${label}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[{"b":"id","d":"string","e":"clientProfileNameValue"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontSize","d":"number","e":"12"},{"b":"paddingTop","d":"number","e":"1"},{"b":"paddingLeft","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"paddingBottom","d":"number","e":"1.5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx","c":[{"b":"pl","d":"number","e":"3"},{"b":"fontWeight","d":"number","e":"400"},{"b":"fontSize","d":"number","e":"14"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ color: \"primary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: \"primary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontSize","d":"number","e":"12"},{"b":"paddingTop","d":"number","e":"1"},{"b":"paddingLeft","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"mb","d":"number","e":"2"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx","c":[{"b":"mb","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"sx","d":"expression","e":"fromGraphView ? { color: \"text.secondary\" } : undefined"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"color","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx","c":[{"b":"variant","d":"expression","e":"\"h3\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx","c":[{"b":"variant","d":"expression","e":"\"body1\""},{"b":"sx","d":"object","e":"{ marginBottom: 1, color: ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"width","d":"expression","e":"\"max-content\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx","c":[{"b":"key","d":"string","e":"messageDetailsAddEvents"},{"b":"width","d":"expression","e":"\"max-content\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"style","d":"object","e":"{ marginBottom: \"16px\" }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx","c":[{"b":"id","d":"expression","e":"`${consumer.name}-template`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx","c":[{"b":"align","d":"string","e":"left"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx","c":[{"b":"key","d":"expression","e":"`filtername-${index}`"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"color","d":"expression","e":"\"warning\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"variant","d":"expression","e":"\"body1\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"id","d":"string","e":"applicationDomainName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"id","d":"string","e":"applicationDomainName"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.deprecated.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx","c":[{"b":"fontWeight","d":"expression","e":"selected && 500"},{"b":"pl","d":"expression","e":"imageComponent ? 2 : 5.25"},{"b":"pr","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx","c":[{"b":"mr","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"sx","d":"object","e":"{ fontSize: \"1.5rem\", color: `${theme.palette.ux.primary.text.w10}` }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"sx","d":"object","e":"{ color: `${theme.palette.ux.primary.text.w10}` }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"fontWeight","d":"number","e":"600"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.brand.w30 }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"width","d":"number","e":"600"},{"b":"sx","d":"object","e":"{ fontSize: \"1.5rem\", color: invertTextColor }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"width","d":"expression","e":"showGraphic ? 500 : \"100%\""},{"b":"sx","d":"object","e":"{ color: invertTextColor }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"variant","d":"expression","e":"\"h3\""}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[{"b":"id","d":"string","e":"topicAddress"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx","c":[{"b":"id","d":"expression","e":"\"updateLabel\""},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"fontSize","d":"expression","e":"`24px`"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"data-qa","d":"string","e":"reuseIndexPurposeQuestionTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"data-qa","d":"string","e":"reuseIndexPurposeDescriptionTooltip"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"data-qa","d":"string","e":"reuseIndexPurposeQuestionPopup"}]},{"a":"../../../maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx","c":[{"b":"data-qa","d":"string","e":"reuseIndexPurposeDescriptionPopup"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"fontWeight","d":"string","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx","c":[{"b":"display","d":"string","e":"inline-block"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"string","e":"auto"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"ml","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\t\t\tWebkitLineClamp: \"3\",\n\t\t\t\t\t\t\t\tWebkitBoxOrient: \"vertical\"\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"mr","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"color","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"color","d":"expression","e":"\"error\""},{"b":"sx","d":"object","e":"{ width: \"90%\", wordWrap: \"break-word\" }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx","c":[{"b":"color","d":"expression","e":"\"error\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"},{"b":"ml","d":"string","e":"auto"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx","c":[{"b":"ml","d":"number","e":"1"},{"b":"mt","d":"expression","e":"\"6px\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx","c":[{"b":"id","d":"variable","e":"id"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx","c":[{"b":"display","d":"string","e":"inline-block"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx","c":[{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx","c":[{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx","c":[{"b":"m","d":"number","e":"1"},{"b":"id","d":"expression","e":"`${convertedId}_wrapper_fieldName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx","c":[{"b":"m","d":"number","e":"1"},{"b":"id","d":"expression","e":"`${convertedId}_wrapper_fieldType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_header_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_header_propertyType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_header_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_header_propertyType`"},{"b":"pr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx","c":[{"b":"paddingY","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ ml: 1 }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_payload_fieldName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_payload_propertyType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"paddingY","d":"number","e":"1"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"display","d":"expression","e":"\"flex\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"color","d":"string","e":"success"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx","c":[{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx","c":[{"b":"pl","d":"number","e":"2"},{"b":"pb","d":"number","e":"2"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"pl","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_header_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_header_propertyType`"},{"b":"pr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"id","d":"expression","e":"`${convertedId}_constant_propertyName`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"},{"b":"id","d":"expression","e":"`${convertedId}_constant_propertyType`"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx","c":[{"b":"paddingY","d":"number","e":"1"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: theme.palette.grey[500] }"},{"b":"id","d":"string","e":"conn_flow"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"id","d":"string","e":"connector_marketing_title"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"id","d":"string","e":"connector_marketing_description"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx","c":[{"b":"display","d":"expression","e":"\"flex\""},{"b":"fontWeight","d":"number","e":"500"},{"b":"mr","d":"number","e":"4"},{"b":"id","d":"string","e":"connector_marketing_help"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"variant","d":"expression","e":"variant ?? \"body1\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx","c":[{"b":"variant","d":"expression","e":"\"caption\""},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mb","d":"number","e":"3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx","c":[{"b":"pl","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx","c":[{"b":"pl","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"config.key"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"apiErrorResponse\""},{"b":"display","d":"string","e":"inline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"generalErrorPrefix\""},{"b":"display","d":"string","e":"inline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"errorMessages\""},{"b":"display","d":"string","e":"inline"},{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx","c":[{"b":"key","d":"expression","e":"\"generalErrorSuffix\""},{"b":"display","d":"string","e":"inline"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx","c":[{"b":"variant","d":"expression","e":"textVariant ? textVariant : \"body1\""}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[{"b":"onClick","d":"function","e":"() =>\n\t\t\t\t\t\t\t\thistory.push({\n\t\t\t\t\t\t\t\t\tpathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`\n\t\t\t\t\t\t\t\t})"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"string","e":"role"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"component","d":"string","e":"span"},{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"expression","e":"`roles-${label}`"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx","c":[{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"marginTop","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"component","d":"string","e":"div"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","c":[{"b":"minWidth","d":"string","e":"634px"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx","c":[{"b":"minWidth","d":"string","e":"634px"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"ml","d":"string","e":"-0.5rem"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"mt","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"mt","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"mt","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx","c":[{"b":"pt","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ color: theme.palette.ux.secondary.text.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"string","e":"role"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"key","d":"expression","e":"`roles-${label}`"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"className","d":"string","e":"detailsLabel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"className","d":"string","e":"detailsLabel"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx","c":[{"b":"className","d":"string","e":"capitalize"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"className","d":"string","e":"name"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx","c":[{"b":"sx","d":"object","e":"{ whiteSpace: \"initial\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"className","d":"string","e":"title"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx","c":[{"b":"className","d":"string","e":"subTitle"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"14px\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"16px\", fontWeight: \"500\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"14px\" }"},{"b":"marginTop","d":"number","e":"2"},{"b":"marginBottom","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"marginTop","d":"number","e":"2"},{"b":"marginBottom","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"fontSize","d":"string","e":"24px"},{"b":"fontWeight","d":"string","e":"500"},{"b":"textAlign","d":"string","e":"right"},{"b":"data-qa","d":"string","e":"pcuCostValue"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","c":[{"b":"key","d":"variable","e":"item"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"mt","d":"number","e":"0.5"},{"b":"mb","d":"number","e":"0.5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"1.33rem\", marginBottom: \".3rem\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[{"b":"key","d":"variable","e":"value"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx","c":[{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx","c":[{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx","c":[{"b":"sx","d":"object","e":"{ fontWeight: \"bolder\", color: \"inherit\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx","c":[{"b":"mt","d":"number","e":"4"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"fontWeight","d":"number","e":"400"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx","c":[{"b":"fontSize","d":"number","e":"14"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"display","d":"expression","e":"\"block\""},{"b":"data-qa","d":"string","e":"supportModalSuccessMessage"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"display","d":"expression","e":"\"contents\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"display","d":"expression","e":"\"block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontWeight","d":"number","e":"400"},{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"className","d":"string","e":"message"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"pt","d":"number","e":"2"},{"b":"pb","d":"number","e":"4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pb","d":"number","e":"3"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pb","d":"number","e":"2"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"pb","d":"number","e":"2"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"component","d":"string","e":"div"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"className","d":"variable","e":"attachReadStateClassName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"className","d":"variable","e":"attachReadStateClassName"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"className","d":"string","e":"messageHeading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"className","d":"string","e":"messageHeading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[{"b":"className","d":"string","e":"messageHeading"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx","c":[{"b":"data-qa","d":"string","e":"noProblemText"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"style","d":"object","e":"{ alignContent: \"center\" }"},{"b":"fontSize","d":"number","e":"24"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"style","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx","c":[{"b":"mt","d":"number","e":"4"},{"b":"fontWeight","d":"number","e":"500"},{"b":"style","d":"object","e":"{ color: theme.palette.ux.secondary.wMain }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"16"},{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"14"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontSize","d":"number","e":"14"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"14"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"mt","d":"number","e":"3"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","c":[{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"display","d":"expression","e":"\"inline-block\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"mt","d":"number","e":"3"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"mt","d":"number","e":"3.3"},{"b":"ml","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[{"b":"mt","d":"string","e":"1rem"},{"b":"sx","d":"object","e":"{ opacity: 0.8 }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"data-qa","d":"string","e":"securitySettingsWarning"},{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[{"b":"mt","d":"number","e":"1"},{"b":"mb","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[{"b":"className","d":"string","e":"desc"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"style","d":"object","e":"{ paddingLeft: \"0\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx","c":[{"b":"style","d":"object","e":"{ paddingLeft: \"0\" }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"ml","d":"number","e":"2"},{"b":"key","d":"variable","e":"index"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"sx","d":"object","e":"{ wordBreak: \"break-all\", whiteSpace: \"normal\" }"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h2"},{"b":"sx","d":"object","e":"{ wordBreak: \"break-all\", whiteSpace: \"normal\" }"},{"b":"textAlign","d":"expression","e":"\"center\""}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ paddingRight: theme.spacing() }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: theme.palette.text.secondary }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"sx","d":"object","e":"{ paddingRight: theme.spacing() }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx","c":[]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"16"},{"b":"mr","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"14"},{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx","c":[{"b":"key","d":"variable","e":"role"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"data-qa","d":"string","e":"exportClustersTitle"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"exportClustersLoadingMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"exportClustersSuccessMessage"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx","c":[{"b":"variant","d":"string","e":"caption"},{"b":"sx","d":"object","e":"{ color: \"text.secondary\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx","c":[{"b":"data-qa","d":"variable","e":"dataQa"},{"b":"variant","d":"string","e":"body1"},{"b":"minHeight","d":"expression","e":"theme.spacing(4)"},{"b":"alignItems","d":"string","e":"center"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"padding","d":"expression","e":"theme.spacing(1)"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"paddingTop","d":"expression","e":"theme.spacing(1)"},{"b":"paddingBottom","d":"expression","e":"theme.spacing()"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"left"},{"b":"variant","d":"string","e":"h3"},{"b":"fontWeight","d":"string","e":"bold"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"right"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"marginTop","d":"string","e":"auto"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"right"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx","c":[{"b":"align","d":"string","e":"right"},{"b":"noWrap","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.grey[600] }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeColumnQa"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx","c":[{"b":"fontWeight","d":"number","e":"500"},{"b":"style","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeColumnQa"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeNameQa"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productHeaderQa"},{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"fontWeight","d":"number","e":"400"},{"b":"paddingRight","d":"number","e":"3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeColumnQa"},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"textAlign","d":"expression","e":"\"right\""},{"b":"fontWeight","d":"number","e":"500"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productCodeNameQa"},{"b":"fontWeight","d":"number","e":"400"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx","c":[{"b":"sx","d":"object","e":"{ float: \"right\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"fontSize","d":"number","e":"16"},{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"data-qa","d":"string","e":"orgDetailHeaderQa"},{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"data-qa","d":"string","e":"accountHeaderQa"},{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"mt","d":"number","e":"5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"paddingBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"paddingBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[{"b":"paddingBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"data-qa","d":"string","e":"productHeaderQa"},{"b":"variant","d":"string","e":"h3"},{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"mt","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"fontSize","d":"expression","e":"\"14px\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"pr","d":"number","e":"0.5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[{"b":"className","d":"string","e":"label"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"mt","d":"number","e":"2"},{"b":"sx","d":"object","e":"{ color: theme.palette.grey[700] }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"mt","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"mt","d":"number","e":"2"},{"b":"sx","d":"object","e":"{ color: theme.palette.grey[700], display: \"flex\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx","c":[{"b":"sx","d":"object","e":"{ color: theme.palette.primary.main }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"mt","d":"expression","e":"theme.spacing(6)"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[{"b":"mb","d":"expression","e":"theme.spacing(3)"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx","c":[{"b":"...","d":"spread","e":"row.level === \"HIGH\" && { fontWeight: 900 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx","c":[{"b":"...","d":"spread","e":"row.result === \"Fail\" && { color: \"error\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx","c":[{"b":"...","d":"spread","e":"row.result === \"Fail\" && { color: \"error\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx","c":[{"b":"mb","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"sx","d":"object","e":"{ fontWeight: \"500\" }"},{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"px","d":"number","e":"2"},{"b":"py","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[{"b":"mr","d":"number","e":"6"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"pb","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx","c":[{"b":"p","d":"number","e":"1"},{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx","c":[{"b":"data-qa","d":"string","e":"aggregationDetailsDescription"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ mb: 2 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"sx","d":"object","e":"{ marginBottom: 2 }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: \"14px\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"paddingTop","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"marginTop","d":"number","e":"2"},{"b":"marginBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx","c":[{"b":"fontSize","d":"string","e":"24px"},{"b":"fontWeight","d":"string","e":"500"},{"b":"textAlign","d":"string","e":"right"},{"b":"data-qa","d":"string","e":"pcuCostValue"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx","c":[{"b":"data-qa","d":"string","e":"noSearchResultsToShow"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx","c":[{"b":"sx","d":"object","e":"{ display: \"flex\", alignItems: \"center\" }"},{"b":"mb","d":"number","e":"2"},{"b":"fontWeight","d":"number","e":"500"},{"b":"fontSize","d":"number","e":"16"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"h1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"caption"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"sx","d":"object","e":"{ alignContent: \"right\" }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx","c":[{"b":"variant","d":"string","e":"h4"},{"b":"color","d":"expression","e":"result.healthy ? \"success\" : \"error\""}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h3"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[{"b":"variant","d":"string","e":"h4"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{ paddingTop: theme.spacing(3.6) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\tpaddingTop: ddOrgData?.subOrgName ? theme.spacing(1) : theme.spacing(3.6),\n\t\t\t\t\t\t\t\twhiteSpace: \"nowrap\",\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\tflexDirection: \"column\"\n\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ whiteSpace: \"nowrap\" }"},{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h1"},{"b":"sx","d":"object","e":"{ paddingBottom: theme.spacing(3), paddingTop: theme.spacing(3) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ paddingTop: theme.spacing(1) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{\n\t\t\t\t\t\t\t\t\t\t\tpaddingTop: theme.spacing(3.6),\n\t\t\t\t\t\t\t\t\t\t\tmarginLeft: theme.spacing(7),\n\t\t\t\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\t\t\t\tflexDirection: \"row\"\n\t\t\t\t\t\t\t\t\t\t}"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ width: theme.spacing(10), marginRight: theme.spacing(4) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ width: theme.spacing(10), marginRight: theme.spacing(4.5) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ width: theme.spacing(10), marginRight: theme.spacing(2.5) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ marginRight: theme.spacing(4), width: theme.spacing(10) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ marginRight: theme.spacing(4.5), width: theme.spacing(10) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx","c":[{"b":"sx","d":"object","e":"{ marginRight: theme.spacing(2.5), width: theme.spacing(10) }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"h3"},{"b":"gutterBottom","d":"boolean","e":"true"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"ref","d":"variable","e":"ref"},{"b":"variant","d":"string","e":"body1"},{"b":"noWrap","d":"boolean","e":"true"},{"b":"sx","d":"object","e":"{\n\t\t\t\tmaxWidth: \"100%\",\n\t\t\t\toverflow: \"hidden\",\n\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\twhiteSpace: \"nowrap\"\n\t\t\t}"},{"b":"title","d":"variable","e":"name"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"p","d":"number","e":"3"},{"b":"sx","d":"object","e":"{ fontWeight: \"500\" }"},{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"no-features"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"color","d":"string","e":"error"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx","c":[{"b":"variant","d":"string","e":"body1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"loading-message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"string","e":"no-results-message"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"fontWeight","d":"string","e":"500"},{"b":"data-qa","d":"expression","e":"`state-group-${state.toLowerCase()}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx","c":[{"b":"key","d":"variable","e":"type"},{"b":"variant","d":"string","e":"body1"},{"b":"data-qa","d":"expression","e":"`type-count-${state.toLowerCase()}-${type}`"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"variant","d":"string","e":"h5"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx","c":[{"b":"sx","d":"object","e":"{ fontSize: theme.typography.caption, color: theme.palette.grey[700] }"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"marginLeft","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"marginLeft","d":"number","e":"1"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"variant","d":"string","e":"h2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx","c":[{"b":"marginTop","d":"number","e":"1"},{"b":"marginBottom","d":"number","e":"2"}]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[]},{"a":"../../../maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx","c":[{"b":"variant","d":"string","e":"h5"},{"b":"paddingLeft","d":"number","e":"3"},{"b":"paddingTop","d":"number","e":"3"}]},{"a":"../../../broker-manager/src/pages/help/learning-centre/react-components/section.js","c":[{"b":"variant","d":"string","e":"body1"}]}]} \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTypography/totalUsages.json b/mrc-usage-report-data/per-component/SolaceTypography/totalUsages.json new file mode 100644 index 000000000..354d30ba6 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTypography/totalUsages.json @@ -0,0 +1 @@ +869 \ No newline at end of file diff --git a/mrc-usage-report-data/per-component/SolaceTypography/usagesByMfe.json b/mrc-usage-report-data/per-component/SolaceTypography/usagesByMfe.json new file mode 100644 index 000000000..a7f01b438 --- /dev/null +++ b/mrc-usage-report-data/per-component/SolaceTypography/usagesByMfe.json @@ -0,0 +1 @@ +{"ep":273,"intg":129,"mc":74,"saas":191,"infra":19,"maas-ops-react":182,"broker-manager":1} \ No newline at end of file diff --git a/prompts/new-components-report/new-components-report-prompt.md b/prompts/new-components-report/new-components-report-prompt.md new file mode 100644 index 000000000..b23aee245 --- /dev/null +++ b/prompts/new-components-report/new-components-report-prompt.md @@ -0,0 +1,49 @@ +# New Components Report Generator + +## Prompt for LLM + +Use this prompt with your preferred LLM to automatically generate a report of all new components added to the maas-react-components repository in the last quarter. + +``` +I need a report on all new React components added to the maas-react-components repository during the last quarter (past 3 months). The report should be generated in two formats: a markdown file and a corresponding HTML page. + +Please follow these steps: + +1. **Gather Data:** + * Use the GitHub MCP to get a list of commits from the last quarter for the `SolaceDev/maas-react-components` repository. + * Filter for commits since `[DATE 3 MONTHS AGO]`. + +2. **Analyze Commits:** + * For each commit, get the pull request details using the `get_pull_request` tool. + * Examine the commit message and the changed files to identify the addition of **brand new components**. + * Look for keywords like "add", "create", or "introduce" in the commit message, even if they have prefixes like "SOLACEMINOR". + * Pay special attention to the creation of new `.tsx` files within the `src/components` directory and its subdirectories, as this is a strong indicator of a new component. + * Enhancements or modifications to existing components should be ignored. + * For each new component, get the file contents to understand its purpose and props. + * If the file for a new component is not available locally, gather the necessary information from the pull request details and commit history. + +3. **Generate Markdown Report:** + * Compile a markdown report with the following sections: + * **New Components:** For each new component, list its name, file path, purpose, props (and their types), and the PR that introduced it. + * **Summary:** A count of the total number of new components. + * If no new components were found, the report should state: "No new components were created in the last quarter." + +4. **Generate HTML Report:** + * Create a corresponding HTML page that is well-styled and presents the data in a clear, easy-to-read format. + * The HTML should mirror the content of the markdown report. + * Use tables to present the component details (name, path, purpose, props, PR). + * Include CSS within a ` + + + +

New Components Report

+ +

Summary

+

Total New Components: 1

+ +

New Components

+ +

SolaceChipTextArea

+ + + + + + + + + + + + + + + + + +
File Pathsrc/components/form/SolaceChipTextArea/SolaceChipTextArea.tsx
PurposeAdd chip textarea component. It is designed with email in mind, but can be extended. It supports typing values separated by comma, semicolon, space, and enter, as well as pasting from the clipboard. It also has an optional validation function property.
PR#1041
Props +
    +
  • id?: string
  • +
  • name: string
  • +
  • label?: string | JSX.Element
  • +
  • value?: string
  • +
  • helperText?: string | JSX.Element
  • +
  • maxLength?: number
  • +
  • title?: string
  • +
  • autoFocus?: boolean
  • +
  • hasErrors?: boolean
  • +
  • required?: boolean
  • +
  • inlineLabel?: boolean
  • +
  • onChange?: (event: SolaceChipTextAreaChangeEvent) => void
  • +
  • onBlur?: (event: React.FocusEvent) => void
  • +
  • onKeyDown?: (event: React.KeyboardEvent) => void
  • +
  • onKeyUp?: (event: React.KeyboardEvent) => void
  • +
  • onFocus?: (event: React.FocusEvent) => void
  • +
  • width?: string
  • +
  • validateChip?: (text: string) => string | undefined
  • +
+
+ + + \ No newline at end of file diff --git a/prompts/new-components-report/new-components-report.md b/prompts/new-components-report/new-components-report.md new file mode 100644 index 000000000..e69de29bb diff --git a/src/resources/theme.ts b/src/resources/theme.ts index 6a77e22e3..9244cbb69 100644 --- a/src/resources/theme.ts +++ b/src/resources/theme.ts @@ -1038,13 +1038,60 @@ const getThemeOptions = (themeName: SupportedThemes) => { ".MuiFormHelperText-root": { marginLeft: "0" }, - ".MuiSvgIcon-root .SolaceRadioContainer": { - fill: themeMapping.palette.background.w10, - stroke: themeMapping.palette.secondary.w40 - }, - "&:hover": { - ".MuiSvgIcon-root .SolaceRadioContainer": { - stroke: themeMapping.palette.deprecated.secondary.wMain + "&.MuiRadio-root": { + // Enabled state - Outer circle + color: themeMapping.palette.secondary.w40, // Stroke (border) + "& .MuiSvgIcon-root:first-of-type circle": { + fill: themeMapping.palette.background.w10, // Fill (background) + strokeWidth: "1px" // Set border width to 1px + }, + + // Hover state - Outer circle + "&:hover": { + color: themeMapping.palette.secondary.wMain // Stroke (border) on hover + }, + + // Read-only state - must come before checked state to establish base styles + "&.readOnly": { + color: themeMapping.palette.secondary.w40, // Outer circle stroke + "& .MuiSvgIcon-root:first-of-type circle": { + fill: themeMapping.palette.background.w20 // Outer circle fill + } + }, + + // Checked state - Inner circle (indicator) + "&.Mui-checked": { + // Keep outer circle styling + color: themeMapping.palette.secondary.w40, + + // Inner circle styling for enabled/hover + "& .MuiSvgIcon-root:last-of-type": { + color: themeMapping.palette.accent.n2.wMain // Indicator color + }, + + // Hover when checked - outer circle + "&:hover": { + color: themeMapping.palette.secondary.wMain + }, + + // Read-only checked - ensure inner circle is secondary.wMain + // This must be inside the checked state to override the default checked color + "&.readOnly .MuiSvgIcon-root:last-of-type": { + color: `${themeMapping.palette.secondary.wMain} !important` // Force grey indicator for read-only + } + }, + + // Disabled state + "&.Mui-disabled": { + color: themeMapping.palette.secondary.w20, // Outer circle stroke + "& .MuiSvgIcon-root:first-of-type circle": { + fill: themeMapping.palette.background.w10 // Outer circle fill + }, + + // Disabled and checked + "&.Mui-checked .MuiSvgIcon-root:last-of-type": { + color: themeMapping.palette.accent.n2.w30 // Indicator color for disabled + } } }, "&.Mui-focusVisible": { @@ -1052,28 +1099,6 @@ const getThemeOptions = (themeName: SupportedThemes) => { outlineOffset: "-1px", borderRadius: "50%" }, - "&.Mui-checked": { - ".SolaceRadioSelection": { - fill: themeMapping.palette.deprecated.accent.n2.wMain - } - }, - "&.Mui-disabled .MuiSvgIcon-root": { - ".SolaceRadioContainer": { - stroke: themeMapping.palette.secondary.w20 - }, - ".SolaceRadioSelection": { - fill: themeMapping.palette.accent.n2.w30 - } - }, - "&.readOnly .MuiSvgIcon-root": { - ".SolaceRadioContainer": { - fill: themeMapping.palette.background.w20, - stroke: themeMapping.palette.secondary.w40 - }, - ".SolaceRadioSelection": { - fill: themeMapping.palette.deprecated.secondary.wMain - } - }, // Style added to overide Aurelia custom styling, to be removed once Aurelia code is phased out. input: { left: "auto !important" diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/README.md b/tools/archived-tools/mrc-usage-report-broker-manager/README.md new file mode 100644 index 000000000..28b562f28 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/README.md @@ -0,0 +1,212 @@ +# MRC Usage Report + +A tool to analyze and report on the usage of MRC (maas-react-components) components across different micro-frontends. + +## Features + +- Scans TypeScript/JavaScript files for MRC component usage +- Analyzes how components are used (props, customization, etc.) +- Identifies unused components (globally and per MFE) +- Detects components that are imported but not directly used as JSX elements +- Generates detailed HTML reports with interactive charts +- Configurable to analyze specific MFEs +- Supports different output formats (HTML, JSON, YAML) +- Includes trend analysis to track component usage changes over time +- Can be run as a GitHub Action with automatic GitHub Pages deployment + +## Installation + +1. Navigate to the tool directory: + +```bash +cd tools/mrc-usage-report +``` + +2. Install dependencies: + +```bash +npm install +``` + +3. Build the tool: + +```bash +npm run build +``` + +## Usage + +Run the tool with default settings: + +```bash +npm start +``` + +This will analyze all MFEs (except api-products) and generate an HTML report in the `./reports` directory. + +### Command Line Options + +You can customize the behavior with the following options: + +``` +Options: + -o, --output Output directory for the report (default: "./reports") + -f, --format Output format (html, json, yaml, csv) (default: "html") + -m, --mfes Comma-separated list of MFEs to analyze (default: "ep,intg,mc,saas") + --mfe-paths JSON string mapping MFE names to their repository paths (default: "{}") + -r, --mrc-path Path to the MRC repository (default: "../../maas-react-components") + -b, --base-path Base path for the project (default: current working directory) + -s, --source Source type for MRC components (local or github) (default: "local") + -g, --github Use GitHub as the source for MRC components (shorthand for -s github) + --github-url GitHub repository URL for MRC components (default: "https://github.com/SolaceDev/maas-react-components") + --github-branch Branch name for GitHub repository (default: "main") + -h, --help Display help for command + -V, --version Output the version number +``` + +### Examples + +Analyze only the 'ep' and 'saas' MFEs: + +```bash +npm start -- -m ep,saas +``` + +Generate a JSON or YAML report: + +```bash +# JSON format +npm start -- -f json + +# YAML format +npm start -- -f yaml +``` + +Specify custom paths: + +```bash +npm start -- -b /path/to/project -r /path/to/mrc -o /path/to/output +``` + +Use GitHub as the source for MRC components: + +```bash +# Using the -g flag (shorthand) +GITHUB_TOKEN=your_github_token npm start -- -g + +# Or using the --source option +GITHUB_TOKEN=your_github_token npm start -- -s github + +# Optionally specify a different GitHub repository URL +GITHUB_TOKEN=your_github_token npm start -- -g --github-url https://github.com/your-org/your-repo + +# Optionally specify a different branch name +GITHUB_TOKEN=your_github_token npm start -- -g --github-branch develop +``` + +This is particularly useful in CI/CD environments or GitHub Actions where you don't want to clone the repository manually. + +**Note:** If the MRC repository is private, you need to provide a GitHub personal access token with the `repo` scope via the `GITHUB_TOKEN` environment variable. This token is used to authenticate with the GitHub API. + +## Report Structure + +The HTML report includes: + +- Summary statistics (total usages, MFEs analyzed, unique components, unused components) +- Interactive charts showing component usage distribution +- Detailed breakdown of each component's usage +- Analysis of props used with each component +- Information about customization and styling overrides +- File references where components are used +- List of unused components (not used in any MFE) +- Per-MFE analysis of unused components (components used in some MFEs but not others) +- MRC version information for each MFE + +## Component Usage Detection + +The tool detects component usage in two ways: + +1. **Direct JSX Usage:** When a component is used directly in JSX elements within a file. +2. **Import-Only Usage:** When a component is imported from the MRC library but not directly used as a JSX element in the same file. This accounts for components that might be: + - Used conditionally in code paths + - Passed as props to other components + - Imported for future use or as a precaution + - Used in ways other than direct JSX elements + +## Development + +### Project Structure + +- `src/index.ts` - Main entry point +- `src/types.ts` - TypeScript interfaces +- `src/scanner/` - File scanning functionality +- `src/parser/` - Code parsing and analysis +- `src/aggregator/` - Data aggregation and statistics +- `src/reporter/` - Report generation + +### Adding New Features + +To add support for a new output format: + +1. Update the `outputFormat` type in `src/types.ts` +2. Add a new reporter class in `src/reporter/` +3. Update the report generation logic in `src/index.ts` + +### GitHub Action Integration + +This tool can be run automatically as a GitHub Action. A workflow file is included at `.github/workflows/mrc-usage-report.yml` that: + +1. Runs on every push to the main branch (and can be triggered manually) +2. Generates both HTML and JSON reports +3. Creates a trend analysis comparing the current report with previous ones +4. Publishes the reports to GitHub Pages + +### Setting Up GitHub Pages Deployment + +To enable the GitHub Pages deployment: + +1. Go to your repository settings +2. Navigate to "Pages" in the sidebar +3. Under "Build and deployment", select "GitHub Actions" as the source +4. The reports will be available at `https://[username].github.io/[repo-name]/mrc-usage-report/` + +### Testing Locally + +To test the report generation and trend analysis locally: + +```bash +# Navigate to the tool directory +cd tools/mrc-usage-report + +# Build the tool +npm run build + +# Generate the HTML report with correct base path +npm start -- -g -f html -o ./reports -b /path/to/repository/root + +# Generate the JSON report with correct base path +npm start -- -g -f json -o ./reports -b /path/to/repository/root + +# Run the trend analysis script +node ./scripts/trend-analyzer.js +``` + +Note: The `-b` parameter is crucial as it tells the tool where to look for the MFEs to analyze. Without it, the tool will use the current directory as the base path, which may not contain any MFEs to analyze. + +### Trend Analysis + +The trend analysis feature tracks changes in component usage over time: + +- On the first run, it creates a baseline report +- On subsequent runs, it compares the current report with the previous one +- The analysis shows: + - New components added + - Components removed + - Components with significant usage changes + - Overall statistics changes + +The trend report is set as the landing page, with a link to the detailed component usage report. + +## License + +ISC diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/build/aggregator/dataAggregator.js b/tools/archived-tools/mrc-usage-report-broker-manager/build/aggregator/dataAggregator.js new file mode 100644 index 000000000..187741de9 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/build/aggregator/dataAggregator.js @@ -0,0 +1,167 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DataAggregator = void 0; +/** + * Aggregates component usage data into statistics + */ +class DataAggregator { + /** + * Aggregates component usage data into statistics + * @param usages Array of component usages + * @param config Analysis configuration + * @param allComponents All available MRC components + * @param mrcVersions MRC version information by MFE + * @returns Report data + */ + aggregate(usages, config, allComponents, mrcVersions) { + var _a, _b, _c; + // Group usages by component name + const usagesByComponent = new Map(); + for (const usage of usages) { + const { componentName } = usage; + if (!usagesByComponent.has(componentName)) { + usagesByComponent.set(componentName, []); + } + usagesByComponent.get(componentName).push(usage); + } + // Generate component stats + const componentStats = []; + const aggregatedUsages = []; + for (const [componentName, componentUsages] of usagesByComponent.entries()) { + const instances = componentUsages.map((usage) => ({ + filePath: usage.filePath, + line: usage.line, + props: usage.props + })); + aggregatedUsages.push({ + component: componentName, + count: instances.length, + instances + }); + // Count usages by MFE + const usagesByMfe = {}; + for (const usage of componentUsages) { + usagesByMfe[usage.mfe] = (usagesByMfe[usage.mfe] || 0) + 1; + } + // Count prop usage + const propCounts = new Map(); + for (const usage of componentUsages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + // Get most common props + const commonProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + // Get files where the component is used + const files = Array.from(new Set(componentUsages.map((usage) => usage.filePath))); + // Count customization stats + let styledComponentCount = 0; + let customStylesCount = 0; + const overriddenPropertiesCounts = {}; + for (const usage of componentUsages) { + if ((_a = usage.customization) === null || _a === void 0 ? void 0 : _a.styledComponent) { + styledComponentCount++; + } + if ((_b = usage.customization) === null || _b === void 0 ? void 0 : _b.customStyles) { + customStylesCount++; + } + if ((_c = usage.customization) === null || _c === void 0 ? void 0 : _c.overriddenProperties) { + for (const prop of usage.customization.overriddenProperties) { + overriddenPropertiesCounts[prop] = (overriddenPropertiesCounts[prop] || 0) + 1; + } + } + } + // Add component stats + componentStats.push({ + componentName, + totalUsages: componentUsages.length, + usagesByMfe, + commonProps, + files, + customization: { + styledComponentCount, + customStylesCount, + overriddenPropertiesCounts + }, + instances + }); + } + // Sort component stats by total usages + componentStats.sort((a, b) => b.totalUsages - a.totalUsages); + // Generate overall stats + const totalUsages = usages.length; + // Most used components + const mostUsedComponents = componentStats.slice(0, 10).map((stats) => ({ + name: stats.componentName, + count: stats.totalUsages + })); + // Most used props + const allPropCounts = new Map(); + for (const usage of usages) { + for (const prop of usage.props) { + allPropCounts.set(prop.name, (allPropCounts.get(prop.name) || 0) + 1); + } + } + const mostUsedProps = Array.from(allPropCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + // MFE usage counts + const mfeUsages = {}; + for (const usage of usages) { + mfeUsages[usage.mfe] = (mfeUsages[usage.mfe] || 0) + 1; + } + // Find unused components + const usedComponentNames = new Set(componentStats.map((s) => s.componentName)); + const unusedComponents = allComponents.filter((comp) => !usedComponentNames.has(comp.name)); + // Find unused components by MFE + const unusedComponentsByMfe = {}; + // Initialize with all MFEs + const mfeList = config.mfes.length > 0 ? config.mfes : ["broker-manager"]; + for (const mfe of mfeList) { + unusedComponentsByMfe[mfe] = []; + } + // For each component, check which MFEs don't use it + for (const component of allComponents) { + const stat = componentStats.find((s) => s.componentName === component.name); + if (!stat) { + // If component is not used at all, add to all MFEs + for (const mfe of mfeList) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + else { + // If component is used in some MFEs but not others + for (const mfe of mfeList) { + if (!stat.usagesByMfe[mfe]) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + } + } + // Generate report data + const reportData = { + generatedAt: new Date().toISOString(), + config, + mrcVersions, + componentStats, + unusedComponents, + unusedComponentsByMfe, + overallStats: { + totalUsages, + mostUsedComponents, + mostUsedProps, + mfeUsages, + totalUnusedComponents: unusedComponents.length + }, + rawData: { + componentUsages: aggregatedUsages + } + }; + return reportData; + } +} +exports.DataAggregator = DataAggregator; diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/build/index.js b/tools/archived-tools/mrc-usage-report-broker-manager/build/index.js new file mode 100644 index 000000000..2581f371d --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/build/index.js @@ -0,0 +1,227 @@ +#!/usr/bin/env node +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const commander_1 = require("commander"); +const path_1 = __importDefault(require("path")); +const chalk_1 = __importDefault(require("chalk")); +const fs_1 = __importDefault(require("fs")); +const fileScanner_1 = require("./scanner/fileScanner"); +const componentParser_1 = require("./parser/componentParser"); +const dataAggregator_1 = require("./aggregator/dataAggregator"); +const htmlReporter_1 = require("./reporter/htmlReporter"); +// Define the program +const program = new commander_1.Command(); +program + .name("mrc-usage-report") + .description("Generate a report on MRC component usage across MFEs") + .version("1.0.0") + .option("-o, --output ", "Output directory for the report", "./reports") + .option("-f, --format ", "Output format (html, json, csv)", "html") + .option("-r, --mrc-path ", "Path to the MRC repository", "/Users/ishanphadte/Desktop/maas-react-components") + .option("-b, --base-path ", "Base path for the project", process.cwd()) + .option("-s, --source ", "Source type for MRC components (local or github)", "local") + .option("-g, --github", "Use GitHub as the source for MRC components (shorthand for -s github)") + .option("--github-url ", "GitHub repository URL for MRC components", "https://github.com/SolaceDev/maas-react-components") + .option("--github-branch ", "Branch name for GitHub repository", "main"); +program.parse(process.argv); +const options = program.opts(); +// If -g flag is used, set source type to github +if (options.github) { + options.source = "github"; +} +// Main function +function main() { + return __awaiter(this, void 0, void 0, function* () { + try { + console.log(chalk_1.default.blue("MRC Component Usage Report Generator")); + console.log(chalk_1.default.gray("------------------------------------")); + // Parse options + const mfes = []; + const basePath = path_1.default.resolve(options.basePath); + const mrcPath = path_1.default.resolve(basePath, options.mrcPath); + const outputDir = path_1.default.resolve(options.output); + const outputFormats = options.format + .split(",") + .map((f) => f.trim()); + const mrcSourceType = options.source; + const mrcGithubUrl = options.githubUrl; + const mrcGithubBranch = options.githubBranch; + // If no MFEs are specified, default to "broker-manager" + if (mfes.length === 0) { + mfes.push("broker-manager"); + } + // Create config + const config = { + mfes, + mrcPath, + outputDir, + outputFormats, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch, + }; + console.log(chalk_1.default.yellow("Configuration:")); + console.log(` Base Path: ${basePath}`); + console.log(` MRC Path: ${mrcPath}`); + console.log(` MFEs: ${mfes.length > 0 ? mfes.join(", ") : "broker-manager"}`); + console.log(` Output Directory: ${outputDir}`); + console.log(` Output Format: ${outputFormats.join(", ")}`); + console.log(` MRC Source Type: ${mrcSourceType}`); + if (mrcSourceType === "github") { + console.log(` MRC GitHub URL: ${mrcGithubUrl}`); + console.log(` MRC GitHub Branch: ${mrcGithubBranch}`); + } + console.log(""); + // Step 1: Scan for files + console.log(chalk_1.default.yellow("Step 1: Scanning for files...")); + const fileScanner = new fileScanner_1.FileScanner(basePath, mfes, mrcSourceType, mrcGithubUrl, mrcGithubBranch); + const files = yield fileScanner.scanForFiles(); + console.log(`Found ${files.length} files to analyze`); + // Step 2: Scan for MRC components + console.log(chalk_1.default.yellow("Step 2: Scanning for MRC components...")); + const allComponents = yield fileScanner.scanForMrcComponents(mrcPath); + console.log(`Found ${allComponents.length} MRC component files`); + // Step 3: Parse files for component usage + console.log(chalk_1.default.yellow("Step 3: Parsing files for component usage...")); + const componentParser = new componentParser_1.ComponentParser(mrcPath, mrcSourceType); + yield componentParser.initialize(allComponents); + let totalUsages = 0; + const allUsages = []; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + const mfe = mfes.length > 0 + ? file.split(path_1.default.sep).find((part) => mfes.includes(part)) || "" + : "broker-manager"; + try { + const usages = yield componentParser.parseFile(file, mfe); + totalUsages += usages.length; + allUsages.push(...usages); + // Log progress every 100 files + if ((i + 1) % 100 === 0 || i === files.length - 1) { + console.log(` Processed ${i + 1}/${files.length} files, found ${totalUsages} component usages so far`); + } + } + catch (error) { + console.error(`Error parsing file ${file}:`, error); + } + } + console.log(`Found ${totalUsages} total component usages`); + // Step 4: Detect MRC versions for each MFE + console.log(chalk_1.default.yellow("Step 4: Detecting MRC versions...")); + const mrcVersions = {}; + if (mfes.length > 0) { + for (const mfe of mfes) { + try { + const mfePath = path_1.default.join(basePath, "micro-frontends", mfe); + const packageJsonPath = path_1.default.join(mfePath, "package.json"); + if (fs_1.default.existsSync(packageJsonPath)) { + const packageJson = JSON.parse(fs_1.default.readFileSync(packageJsonPath, "utf8")); + // Check dependencies and devDependencies + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + const mrcPackageName = "@SolaceDev/maas-react-components"; + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${dependencies[mrcPackageName]}`); + } + else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${devDependencies[mrcPackageName]}`); + } + else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } + else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } + catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + } + else { + // Handle the case where no MFEs are specified + const mfe = "broker-manager"; + try { + const packageJsonPath = path_1.default.join(basePath, "package.json"); + if (fs_1.default.existsSync(packageJsonPath)) { + const packageJson = JSON.parse(fs_1.default.readFileSync(packageJsonPath, "utf8")); + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + const mrcPackageName = "@SolaceDev/maas-react-components"; + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${dependencies[mrcPackageName]}`); + } + else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${devDependencies[mrcPackageName]}`); + } + else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } + else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } + catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + // Step 5: Aggregate data + console.log(chalk_1.default.yellow("Step 5: Aggregating data...")); + const dataAggregator = new dataAggregator_1.DataAggregator(); + const reportData = dataAggregator.aggregate(allUsages, config, allComponents, mrcVersions); + console.log(`Generated report data with ${reportData.componentStats.length} component statistics`); + console.log(`Found ${reportData.unusedComponents.length} unused components`); + // Step 5: Generate report + console.log(chalk_1.default.yellow("Step 5: Generating report...")); + for (const format of outputFormats) { + const outputPath = path_1.default.join(outputDir, `mrc-broker-manager-usage-report.${format}`); + if (format === "html") { + console.log(chalk_1.default.blue("Generating HTML report...")); + const htmlReporter = new htmlReporter_1.HtmlReporter(); + yield htmlReporter.generateReport(reportData, outputPath); + console.log(chalk_1.default.green("HTML report generation complete.")); + } + else if (format === "json") { + console.log(chalk_1.default.blue("Generating JSON report...")); + const jsonOutput = JSON.stringify(reportData, null, 2); + fs_1.default.writeFileSync(outputPath, jsonOutput); + console.log(chalk_1.default.green(`JSON report generated at ${outputPath}`)); + } + else if (format === "csv") { + console.error("CSV format not yet implemented"); + } + } + console.log(chalk_1.default.green("Report generation completed successfully!")); + } + catch (error) { + console.error(chalk_1.default.red("Error generating report:"), error); + process.exit(1); + } + }); +} +// Run the main function +main(); diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/build/parser/componentParser.js b/tools/archived-tools/mrc-usage-report-broker-manager/build/parser/componentParser.js new file mode 100644 index 000000000..b97c42237 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/build/parser/componentParser.js @@ -0,0 +1,282 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ComponentParser = void 0; +const parser = __importStar(require("@babel/parser")); +const traverse_1 = __importDefault(require("@babel/traverse")); +const t = __importStar(require("@babel/types")); +const fs_1 = __importDefault(require("fs")); +const path_1 = __importDefault(require("path")); +/** + * Parses files for MRC component usage + */ +class ComponentParser { + constructor(mrcPath, mrcSourceType = "local") { + this.mrcPath = mrcPath; + this.mrcSourceType = mrcSourceType; + this.mrcComponentNames = new Set(); + this.mrcFileNames = new Set(); + this.exportNameToFileNameToExportName = new Map(); + this.fileNameToExportName = new Map(); + } + /** + * Initializes the parser by loading all MRC component names + * @param componentInfo Array of MRC component information with exported names + */ + initialize(componentInfo) { + return __awaiter(this, void 0, void 0, function* () { + for (const component of componentInfo) { + // Get both the exported name and the file name + const exportedName = component.name; + const fileName = path_1.default.basename(component.path); + const fileNameWithoutExt = path_1.default.parse(fileName).name; + // Add both to our sets + this.mrcComponentNames.add(exportedName); + this.mrcFileNames.add(fileNameWithoutExt); + // Create mappings between them + this.exportNameToFileNameToExportName.set(exportedName, fileNameWithoutExt); + this.fileNameToExportName.set(fileNameWithoutExt, exportedName); + } + console.log(`Loaded ${this.mrcComponentNames.size} MRC component names and ${this.mrcFileNames.size} file names`); + // Log some examples of the mappings for debugging + let count = 0; + for (const [exportedName, fileName] of this.exportNameToFileNameToExportName.entries()) { + if (exportedName !== fileName) { + console.log(`Export mapping: ${exportedName} -> ${fileName}`); + count++; + if (count >= 5) + break; // Just log a few examples + } + } + }); + } + /** + * Parses a file for MRC component usage + * @param filePath Path to the file to parse + * @param mfe The MFE the file belongs to + * @returns Array of component usages found in the file + */ + parseFile(filePath, mfe) { + return __awaiter(this, void 0, void 0, function* () { + try { + const content = fs_1.default.readFileSync(filePath, "utf-8"); + const usages = []; + // Parse the file + const ast = parser.parse(content, { + sourceType: "module", + plugins: ["jsx", "typescript", "decorators-legacy"] + }); + // Track imported MRC components + const importedComponents = new Map(); + // Track imported components that are considered used just by being imported + const importedComponentUsages = new Map(); + // Traverse the AST + (0, traverse_1.default)(ast, { + // Find imports from @SolaceDev/maas-react-components + ImportDeclaration: (path) => { + var _a; + const source = path.node.source.value; + if (source === "@SolaceDev/maas-react-components") { + // Get the line number of the import declaration + const lineNumber = ((_a = path.node.loc) === null || _a === void 0 ? void 0 : _a.start.line) || 0; + path.node.specifiers.forEach((specifier) => { + if (t.isImportSpecifier(specifier) && t.isIdentifier(specifier.imported)) { + const importedName = specifier.imported.name; + const localName = specifier.local.name; + let componentName = importedName; + let isComponent = false; + // First check if it's a direct match with an exported name + if (this.mrcComponentNames.has(importedName)) { + isComponent = true; + } + // Then check if it matches a file name and get the corresponding exported name + else if (this.mrcFileNames.has(importedName) && this.fileNameToExportName.has(importedName)) { + componentName = this.fileNameToExportName.get(importedName); + isComponent = true; + // console.log(`Found component by file name: ${importedName} -> ${componentName}`); + } + if (isComponent) { + importedComponents.set(localName, componentName); + // Consider the component as used just by being imported + // This handles cases where components are imported but not used as JSX elements + importedComponentUsages.set(componentName, { + componentName: componentName, + filePath: filePath, + mfe: mfe, + lineNumber: lineNumber, + props: [] + }); + } + } + }); + } + }, + // Find JSX elements that use MRC components + JSXOpeningElement: (path) => { + var _a; + let elementName = null; + if (t.isJSXIdentifier(path.node.name)) { + elementName = path.node.name.name; + } + else if (t.isJSXMemberExpression(path.node.name)) { + // Handle cases like + elementName = `${path.node.name.object.name}.${path.node.name.property.name}`; + } + if (elementName) { + let componentName = null; + // Check if the element name is an imported MRC component + if (importedComponents.has(elementName)) { + componentName = importedComponents.get(elementName); + } + else if (this.mrcComponentNames.has(elementName)) { + // Direct usage of an MRC component not necessarily imported with a local name + componentName = elementName; + } + else if (this.mrcFileNames.has(elementName) && this.fileNameToExportName.has(elementName)) { + // Usage by file name + componentName = this.fileNameToExportName.get(elementName); + } + if (componentName) { + const props = []; + // Extract props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name)) { + const propName = attr.name.name; + let propType = "unknown"; + let propValue = ""; // value is always a string now + if (attr.value) { + if (t.isStringLiteral(attr.value)) { + propType = "string"; + propValue = attr.value.value; + } + else if (t.isJSXExpressionContainer(attr.value) && + !t.isJSXEmptyExpression(attr.value.expression)) { + const expression = attr.value.expression; + if (t.isNumericLiteral(expression)) { + propType = "number"; + propValue = String(expression.value); + } + else if (t.isBooleanLiteral(expression)) { + propType = "boolean"; + propValue = String(expression.value); + } + else if (t.isNullLiteral(expression)) { + propType = "null"; + propValue = "null"; + } + else if (t.isIdentifier(expression)) { + propType = "variable"; + propValue = expression.name; + } + else { + if (t.isObjectExpression(expression)) { + propType = "object"; + } + else if (t.isArrayExpression(expression)) { + propType = "array"; + } + else if (t.isArrowFunctionExpression(expression) || t.isFunctionExpression(expression)) { + propType = "function"; + } + else if (t.isJSXElement(expression) || t.isJSXFragment(expression)) { + propType = "jsx"; + } + else { + propType = "expression"; + } + propValue = content.substring(expression.start, expression.end); + } + } + } + else { + // Boolean prop without value + propType = "boolean"; + propValue = "true"; + } + props.push({ + name: propName, + type: propType, + value: propValue + }); + } + else if (t.isJSXSpreadAttribute(attr)) { + const argument = attr.argument; + props.push({ + name: "...", + type: "spread", + value: content.substring(argument.start, argument.end) + }); + } + }); + // Get line number + const lineNumber = ((_a = path.node.loc) === null || _a === void 0 ? void 0 : _a.start.line) || 0; + // Add the usage + usages.push({ + componentName, + filePath, + mfe, + lineNumber, + props + }); + // Remove from importedComponentUsages since we've found an actual JSX usage + importedComponentUsages.delete(componentName); + } + } + } + }); + // Add all imported components that weren't used as JSX elements + usages.push(...Array.from(importedComponentUsages.values())); + return usages; + } + catch (error) { + console.error(`Error parsing file ${filePath}:`, error); + return []; + } + }); + } +} +exports.ComponentParser = ComponentParser; diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/build/reporter/htmlReporter.js b/tools/archived-tools/mrc-usage-report-broker-manager/build/reporter/htmlReporter.js new file mode 100644 index 000000000..8294dd50f --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/build/reporter/htmlReporter.js @@ -0,0 +1,677 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.HtmlReporter = void 0; +const fs_1 = __importDefault(require("fs")); +const path_1 = __importDefault(require("path")); +/** + * Generates an HTML report from the component usage data + */ +class HtmlReporter { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + generateReport(reportData, outputPath) { + return __awaiter(this, void 0, void 0, function* () { + const html = this.generateHtml(reportData); + // Create the output directory if it doesn't exist + const outputDir = path_1.default.dirname(outputPath); + if (!fs_1.default.existsSync(outputDir)) { + fs_1.default.mkdirSync(outputDir, { recursive: true }); + } + // Write the HTML to the output file + fs_1.default.writeFileSync(outputPath, html); + console.log(`HTML report generated at ${outputPath}`); + }); + } + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + generateHtml(reportData) { + const { componentStats, overallStats, generatedAt, config } = reportData; + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

1

+

broker-manager

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ ${componentStats + .map((stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map(([mfe, count]) => ` + + + + + `) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map((prop) => ` + + + + + `) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map(([prop, count]) => ` + + + + + `) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : ""} + +

Instances (${stats.instances.length})

+ ${stats.instances + .map((instance) => ` +
+

File: ${instance.filePath}:${instance.line}

+ + + + + + + + + ${instance.props + .map((prop) => ` + + + + + `) + .join("")} + +
Prop NameValue
${prop.name}
${prop.value}
+
+ `) + .join("")} +
+
+ `) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map(([mfe, count]) => ` + + + + + + `) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map((comp) => ` + + + + + `) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map(([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map((comp) => ` + + + + `) + .join("")} + +
Component Name
${comp}
+
+
+ `) + .join("")} +
+ + +
+ + + + + `; + } +} +exports.HtmlReporter = HtmlReporter; diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/build/scanner/fileScanner.js b/tools/archived-tools/mrc-usage-report-broker-manager/build/scanner/fileScanner.js new file mode 100644 index 000000000..0e705ed7f --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/build/scanner/fileScanner.js @@ -0,0 +1,280 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.FileScanner = void 0; +const path_1 = __importDefault(require("path")); +const fs_1 = __importDefault(require("fs")); +const util_1 = require("util"); +const child_process_1 = require("child_process"); +const axios_1 = __importDefault(require("axios")); +const execPromise = (0, util_1.promisify)(child_process_1.exec); +// Regular expression to match export statements like: +// export { default as ComponentName } from "./path/to/Component"; +const EXPORT_REGEX = /export\s*{\s*default\s*as\s*([A-Za-z0-9_]+)\s*}\s*from\s*["'](.*?)["'];?/g; +/** + * Scans for files in the specified MFEs + */ +class FileScanner { + constructor(basePath, mfes, mrcSourceType = "local", mrcGithubUrl, mrcGithubBranch = "main") { + this.basePath = basePath; + this.mfes = mfes; + this.mrcSourceType = mrcSourceType; + this.mrcGithubUrl = mrcGithubUrl; + this.mrcGithubBranch = mrcGithubBranch; + } + /** + * Scans for all TypeScript and JavaScript files in the specified MFEs + * @returns Array of file paths + */ + scanForFiles() { + return __awaiter(this, void 0, void 0, function* () { + const allFiles = []; + if (this.mfes.length === 0) { + // No specific MFEs, scan the entire base path + const mfePath = this.basePath; + if (!fs_1.default.existsSync(mfePath)) { + console.warn(`Base path not found: ${mfePath}`); + return []; + } + try { + const { stdout } = yield execPromise(`find ${mfePath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/build/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"`); + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } + catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + else { + // Scan specified MFEs + for (const mfe of this.mfes) { + const mfePath = mfe === "broker-manager" + ? this.basePath + : path_1.default.join(this.basePath, mfe); + if (!fs_1.default.existsSync(mfePath)) { + console.warn(`MFE directory not found: ${mfePath}`); + continue; + } + try { + const { stdout } = yield execPromise(`find ${mfePath}/src -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"`); + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } + catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + } + return allFiles; + }); + } + /** + * Extracts owner and repo from GitHub URL + * @param githubUrl GitHub repository URL + * @returns Object containing owner and repo + */ + parseGithubUrl(githubUrl) { + // Handle URLs like https://github.com/owner/repo or git@github.com:owner/repo.git + const urlMatch = githubUrl.match(/github\.com[/:]([^/]+)\/([^/]+?)(\.git)?$/); + if (urlMatch) { + return { + owner: urlMatch[1], + repo: urlMatch[2].replace(/\.git$/, ""), // Remove .git if present + }; + } + throw new Error(`Invalid GitHub URL: ${githubUrl}`); + } + /** + * Gets GitHub authentication token from environment variable + * @returns GitHub authentication token or undefined if not available + */ + getGithubToken() { + return process.env.GITHUB_TOKEN; + } + /** + * Fetches a file from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path File path within the repository + * @param branch Branch name (default: main) + * @returns File content as string + */ + fetchFileFromGithub(owner, repo, path, branch) { + return __awaiter(this, void 0, void 0, function* () { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; + console.log(`Fetching file from GitHub: ${url}`); + const headers = {}; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + const response = yield axios_1.default.get(url, { headers }); + return response.data; + } + catch (error) { + console.error(`Error fetching file from GitHub:`, error); + throw new Error(`Failed to fetch file from GitHub: ${path}`); + } + }); + } + /** + * Fetches directory contents from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path Directory path within the repository + * @param branch Branch name (default: main) + * @returns Array of file paths + */ + fetchDirectoryFromGithub(owner, repo, path, branch) { + return __awaiter(this, void 0, void 0, function* () { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${path}?ref=${branch}`; + console.log(`Fetching directory from GitHub API: ${url}`); + const headers = { + Accept: "application/vnd.github.v3+json", + }; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + const response = yield axios_1.default.get(url, { headers }); + // Process the response to extract file paths + const files = []; + const processItems = (items) => __awaiter(this, void 0, void 0, function* () { + for (const item of items) { + if (item.type === "file") { + files.push(item.path); + } + else if (item.type === "dir") { + // Recursively fetch subdirectory contents + const subDirUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${item.path}?ref=${branch}`; + const subDirResponse = yield axios_1.default.get(subDirUrl, { headers }); + yield processItems(subDirResponse.data); + } + } + }); + yield processItems(response.data); + return files; + } + catch (error) { + console.error(`Error fetching directory from GitHub:`, error); + throw new Error(`Failed to fetch directory from GitHub: ${path}`); + } + }); + } + /** + * Prepares the MRC path based on the source type. + * If source type is local, returns the provided path. + * If source type is github, returns null to indicate GitHub API usage. + */ + prepareMrcPath(mrcPath) { + return __awaiter(this, void 0, void 0, function* () { + // If source type is local, use the provided path + if (this.mrcSourceType === "local") { + return mrcPath; + } + // If source type is github, we'll use the GitHub API directly + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + console.log(`Using GitHub API for ${this.mrcGithubUrl}`); + return null; // Return null to indicate we're using GitHub API + } + throw new Error("Invalid MRC source configuration"); + }); + } + /** + * Scans for all MRC components in the MRC repository + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component paths + */ + scanForMrcComponents(mrcPath) { + return __awaiter(this, void 0, void 0, function* () { + const allComponents = []; + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Scanning for MRC components in GitHub repository: ${owner}/${repo}`); + // Fetch all files in the components directory to find index.ts/tsx files + const files = yield this.fetchDirectoryFromGithub(owner, repo, "src/components"); + for (const file of files) { + // Only process index.ts or index.tsx files + if (file.endsWith("index.ts") || file.endsWith("index.tsx")) { + const fileContent = yield this.fetchFileFromGithub(owner, repo, file, this.mrcGithubBranch); + // Reset regex lastIndex for each file + EXPORT_REGEX.lastIndex = 0; + const match = EXPORT_REGEX.exec(fileContent); + if (match && match[1] && match[2]) { + const componentName = match[1]; + const relativePath = match[2]; + // Construct the full path to the actual component file + // The relativePath is relative to the index.ts file's directory + const componentDir = path_1.default.dirname(file); + const fullComponentPath = path_1.default.join(componentDir, relativePath); + // Assuming .tsx or .ts extension for the actual component file + let finalComponentPath = fullComponentPath; + if (!finalComponentPath.endsWith(".ts") && + !finalComponentPath.endsWith(".tsx")) { + // Try .tsx first, then .ts + // Note: For GitHub, we can't check fs.existsSync directly. + // We'll assume .tsx for now or rely on the parser to handle it. + // For a more robust solution, we'd need to list files in the componentDir on GitHub. + finalComponentPath += ".tsx"; // Default to .tsx for GitHub + } + allComponents.push({ + name: componentName, + path: finalComponentPath, + }); + } + } + } + console.log(`Found ${allComponents.length} component files in GitHub repository`); + return allComponents; + } + catch (error) { + console.error(`Error scanning MRC components from GitHub:`, error); + return []; + } + } + // If using local path + const actualMrcPath = yield this.prepareMrcPath(mrcPath); + if (actualMrcPath) { + const componentsPath = path_1.default.join(actualMrcPath, "src", "components"); + // Check if the components directory exists + if (!fs_1.default.existsSync(componentsPath)) { + throw new Error(`MRC components directory not found: ${componentsPath}`); + } + try { + // Use find command to locate all index.ts/tsx files within component subdirectories + const { stdout } = yield execPromise(`find ${componentsPath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/build/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"`); + const componentFiles = stdout.trim().split("\n").filter(Boolean); + for (const file of componentFiles) { + const componentName = path_1.default.basename(file, path_1.default.extname(file)); + allComponents.push({ name: componentName, path: file }); + } + console.log(`Found ${allComponents.length} MRC components from local path`); + return allComponents; + } + catch (error) { + console.error(`Error scanning MRC components:`, error); + return []; + } + } + throw new Error("Invalid MRC source configuration"); + }); + } +} +exports.FileScanner = FileScanner; diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/build/types.js b/tools/archived-tools/mrc-usage-report-broker-manager/build/types.js new file mode 100644 index 000000000..c8ad2e549 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/build/types.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/package-lock.json b/tools/archived-tools/mrc-usage-report-broker-manager/package-lock.json new file mode 100644 index 000000000..41ae538f7 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/package-lock.json @@ -0,0 +1,595 @@ +{ + "name": "mrc-usage-report-tool", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "mrc-usage-report-tool", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@types/node": "^20.14.9", + "axios": "^1.7.2", + "chalk": "^5.3.0", + "commander": "^11.1.0", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.20.7", + "typescript": "^5.8.3" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz", + "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.5", + "@babel/types": "^7.27.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.7.tgz", + "integrity": "sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.7.tgz", + "integrity": "sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.5", + "@babel/parser": "^7.27.7", + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.7", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.7.tgz", + "integrity": "sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", + "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/node": { + "version": "20.19.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.1.tgz", + "integrity": "sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "license": "MIT" + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/package.json b/tools/archived-tools/mrc-usage-report-broker-manager/package.json new file mode 100644 index 000000000..199e33405 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/package.json @@ -0,0 +1,26 @@ +{ + "name": "mrc-usage-report-tool", + "version": "1.0.0", + "description": "A tool to analyze and report on MRC component usage.", + "main": "build/index.js", + "scripts": { + "build": "tsc", + "start": "node build/index.js" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@types/node": "^20.14.9", + "axios": "^1.7.2", + "chalk": "^5.3.0", + "commander": "^11.1.0", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.20.7", + "typescript": "^5.8.3" + } +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/reports/mrc-broker-manager-usage-report.html b/tools/archived-tools/mrc-usage-report-broker-manager/reports/mrc-broker-manager-usage-report.html new file mode 100644 index 000000000..5cab614fc --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/reports/mrc-broker-manager-usage-report.html @@ -0,0 +1,1836 @@ + + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on 7/8/2025, 5:00:21 PM

+
+ +
+
+

Total Component Usages

+

7

+
+
+

MFEs Analyzed

+

1

+

broker-manager

+
+
+

Unique Components Used

+

4

+
+
+

Unused Components

+

87

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ +
+
+
+ SolaceButton + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
broker-manager3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant3
href2
target1
onClick1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (3)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
sublink.url
variant
link
target
_blank
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleTutorialClick
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
footer.url
+
+ +
+
+ +
+
+
+ SolaceCard + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
broker-manager2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
dataQa2
width2
minWidth1
readOnly1
cardHeaderProps1
height1
padding1
onClick1
cardContent1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
standard-card
minWidth
371px
width
475px
readOnly
true
cardHeaderProps
{
+        title: title,
+        subTitle: description,
+        icon: (
+          
+        ),
+        actionElements: (
+          
+ + Tutorials + + , + title: 'Actions', + variant: 'icon', + }} + items={generateMenuItems()} + numOfMenuItemDisplayed={3} + /> +
+ ), + }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
top-level-card
height
300px
width
300px
padding
0px
onClick
() => window.open(url, "_blank")
cardContent
+ {image && } +
+
{title}
+

{description}

+
+
+
+ +
+
+ +
+
+
+ SolaceMenu + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
broker-manager1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
buttonProps1
items1
numOfMenuItemDisplayed1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (1)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+                'aria-label': 'Actions menu',
+                children: ,
+                title: 'Actions',
+                variant: 'icon',
+              }
items
generateMenuItems()
numOfMenuItemDisplayed
3
+
+ +
+
+ +
+
+
+ SolaceTypography + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
broker-manager1
+ +

Common Props

+ + + + + + + + + + + + + + + +
Prop NameOccurrences
variant1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (1)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+
+ +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + + + + + + + + +
MFEComponent UsagesMRC Version
broker-manager7package.json not found
+
+ + +
+

Unused Components (87)

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component NamePath
SolaceToasts/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceToasts.tsx
SolaceLinearProgress/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceLinearProgress.tsx
SolaceTextDiff/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTextDiff.tsx
jsonSchemaFormUtils/Users/ishanphadte/Documents/Github/maas-react-components/src/components/jsonschemaform/jsonSchemaFormUtils.tsx
SolaceJsonSchemaForm/Users/ishanphadte/Documents/Github/maas-react-components/src/components/jsonschemaform/SolaceJsonSchemaForm.tsx
SolacePagination/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolacePagination.tsx
SolaceAttributeBadge/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceAttributeBadge.tsx
SolaceCheckBox/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceCheckBox.tsx
SolaceTextArea/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceTextArea.tsx
WarningText/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/WarningText.tsx
SolaceStackLabel/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStackLabel.tsx
SolaceTextField/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceTextField.tsx
HelperText/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/HelperText.tsx
SolaceSelectAutocompleteItem/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocompleteItem.tsx
SolaceStepper/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepper.tsx
SolaceStepperFooter/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx
SolaceStepIcon/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepIcon.tsx
SolaceSelectAutocomplete/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocomplete.tsx
FormChildBase/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/FormChildBase.tsx
SolaceAttributeValuePair/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx
SolaceAttributeValuePairForm/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePairForm.tsx
SolaceLearningButton/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/Button/SolaceLearningButton.tsx
SolacePicker/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolacePicker.tsx
SolaceRadio/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceRadio.tsx
ErrorText/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/ErrorText.tsx
SolaceToggleButtonGroup/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceToggleButtonGroup.tsx
SolaceToggle/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceToggle.tsx
SolaceSelectAutocompleteResponsiveTags/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocompleteResponsiveTags.tsx
SolaceAutoCompleteTextField/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx
SolaceCodeEditor/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceCodeEditor.tsx
SolaceRadioGroup/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceRadioGroup.tsx
SolaceLabel/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceLabel.tsx
SolaceSelect/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelect.tsx
SolaceTree/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTree.tsx
SolaceDatePicker/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDatePicker.tsx
SolaceNotificationCounter/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceNotificationCounter.tsx
NoAccess/Users/ishanphadte/Documents/Github/maas-react-components/src/components/NoAccess.tsx
SolaceTruncatableLink/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTruncatableLink.tsx
SolaceMenuItem/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceMenuItem.tsx
SolaceListItem/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceListItem.tsx
SolaceStack/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceStack.tsx
SolacePageHeader/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolacePageHeader.tsx
SolaceSidePanelLayout/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceSidePanelLayout.tsx
SolaceSplitPane/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceSplitPane.tsx
SolaceTabs/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceTabs.tsx
SolaceGridListMultiSelect/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGridListMultiSelect.tsx
SolaceListItemButton/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceListItemButton.tsx
SolaceGridList/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGridList.tsx
SolaceIconTabs/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceIconTabs.tsx
SolaceList/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceList.tsx
SolaceGrid/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGrid.tsx
SolaceEnvironmentSelectChip/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentSelectChip.tsx
SolaceEmptyStateBanner/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEmptyStateBanner.tsx
SolaceDrawer/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDrawer.tsx
SolaceTag/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTag.tsx
SolaceConfirmationDialog/Users/ishanphadte/Documents/Github/maas-react-components/src/components/dialog/SolaceConfirmationDialog.tsx
SolaceBreadcrumb/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceBreadcrumb.tsx
SolaceCardHeader/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCardHeader.tsx
SolaceMessageBox/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceMessageBox.tsx
SolaceErrorBox/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceErrorBox.tsx
SolaceHTMLAttributesProps/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceHTMLAttributesProps.ts
SolaceComponentProps/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceComponentProps.ts
SolaceAccordion/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceAccordion.tsx
SolaceBackDrop/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceBackDrop.tsx
SolaceEnvironmentChip/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentChip.tsx
SolaceTable/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/SolaceTable.tsx
ContentControlMenu/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/components/ContentControlMenu.tsx
useClickedOutside/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useClickedOutside.tsx
useExpandableRows/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useExpandableRows.tsx
useTableHeaderRenderHelper/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useTableHeaderRenderHelper.tsx
useTableBodyRenderHelper/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useTableBodyRenderHelper.tsx
useSolaceTable/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useSolaceTable.tsx
table-utils/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/table-utils.tsx
SolaceFeatureTag/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceFeatureTag.tsx
SolaceCategorizedSearch/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCategorizedSearch.tsx
SolaceToolTip/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceToolTip.tsx
SolaceLearningBanner/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceLearningBanner.tsx
SolaceResponsiveItemList/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceResponsiveItemList.tsx
fileUploaderUtils/Users/ishanphadte/Documents/Github/maas-react-components/src/components/fileuploader/fileUploaderUtils.ts
SolaceFileUploader/Users/ishanphadte/Documents/Github/maas-react-components/src/components/fileuploader/SolaceFileUploader.tsx
SolaceDetailMessage/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDetailMessage.tsx
SolaceSearchAndFilter/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceSearchAndFilter.tsx
SolaceDonutChart/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDonutChart.tsx
SolaceCircularProgress/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCircularProgress.tsx
SolaceChip/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceChip.tsx
SolaceEnvironmentLabel/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentLabel.tsx
SolacePopover/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolacePopover.tsx
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + +
+
+
+ broker-manager + 87 unused components +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component Name
SolaceToasts
SolaceLinearProgress
SolaceTextDiff
jsonSchemaFormUtils
SolaceJsonSchemaForm
SolacePagination
SolaceAttributeBadge
SolaceCheckBox
SolaceTextArea
WarningText
SolaceStackLabel
SolaceTextField
HelperText
SolaceSelectAutocompleteItem
SolaceStepper
SolaceStepperFooter
SolaceStepIcon
SolaceSelectAutocomplete
FormChildBase
SolaceAttributeValuePair
SolaceAttributeValuePairForm
SolaceLearningButton
SolacePicker
SolaceRadio
ErrorText
SolaceToggleButtonGroup
SolaceToggle
SolaceSelectAutocompleteResponsiveTags
SolaceAutoCompleteTextField
SolaceCodeEditor
SolaceRadioGroup
SolaceLabel
SolaceSelect
SolaceTree
SolaceDatePicker
SolaceNotificationCounter
NoAccess
SolaceTruncatableLink
SolaceMenuItem
SolaceListItem
SolaceStack
SolacePageHeader
SolaceSidePanelLayout
SolaceSplitPane
SolaceTabs
SolaceGridListMultiSelect
SolaceListItemButton
SolaceGridList
SolaceIconTabs
SolaceList
SolaceGrid
SolaceEnvironmentSelectChip
SolaceEmptyStateBanner
SolaceDrawer
SolaceTag
SolaceConfirmationDialog
SolaceBreadcrumb
SolaceCardHeader
SolaceMessageBox
SolaceErrorBox
SolaceHTMLAttributesProps
SolaceComponentProps
SolaceAccordion
SolaceBackDrop
SolaceEnvironmentChip
SolaceTable
ContentControlMenu
useClickedOutside
useExpandableRows
useTableHeaderRenderHelper
useTableBodyRenderHelper
useSolaceTable
table-utils
SolaceFeatureTag
SolaceCategorizedSearch
SolaceToolTip
SolaceLearningBanner
SolaceResponsiveItemList
fileUploaderUtils
SolaceFileUploader
SolaceDetailMessage
SolaceSearchAndFilter
SolaceDonutChart
SolaceCircularProgress
SolaceChip
SolaceEnvironmentLabel
SolacePopover
+
+
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/reports/mrc-broker-manager-usage-report.json b/tools/archived-tools/mrc-usage-report-broker-manager/reports/mrc-broker-manager-usage-report.json new file mode 100644 index 000000000..d7e6e4bd1 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/reports/mrc-broker-manager-usage-report.json @@ -0,0 +1,993 @@ +{ + "generatedAt": "2025-07-08T21:31:53.155Z", + "config": { + "mfes": [ + "broker-manager" + ], + "mrcPath": "/Users/ishanphadte/Documents/Github/maas-react-components", + "outputDir": "/Users/ishanphadte/Documents/GitHub/maas-react-components/tools/mrc-usage-report-broker-manager/reports", + "outputFormats": [ + "json" + ], + "mrcSourceType": "local", + "mrcGithubUrl": "https://github.com/SolaceDev/maas-react-components", + "mrcGithubBranch": "main" + }, + "mrcVersions": { + "broker-manager": "package.json not found" + }, + "componentStats": [ + { + "componentName": "SolaceButton", + "totalUsages": 3, + "usagesByMfe": { + "broker-manager": 3 + }, + "commonProps": [ + { + "name": "variant", + "count": 3 + }, + { + "name": "href", + "count": 2 + }, + { + "name": "target", + "count": 1 + }, + { + "name": "onClick", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "href", + "type": "expression", + "value": "sublink.url" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "target", + "type": "string", + "value": "_blank" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleTutorialClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "footer.url" + } + ] + } + ] + }, + { + "componentName": "SolaceCard", + "totalUsages": 2, + "usagesByMfe": { + "broker-manager": 2 + }, + "commonProps": [ + { + "name": "dataQa", + "count": 2 + }, + { + "name": "width", + "count": 2 + }, + { + "name": "minWidth", + "count": 1 + }, + { + "name": "readOnly", + "count": 1 + }, + { + "name": "cardHeaderProps", + "count": 1 + }, + { + "name": "height", + "count": 1 + }, + { + "name": "padding", + "count": 1 + }, + { + "name": "onClick", + "count": 1 + }, + { + "name": "cardContent", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "standard-card" + }, + { + "name": "minWidth", + "type": "string", + "value": "371px" + }, + { + "name": "width", + "type": "string", + "value": "475px" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "cardHeaderProps", + "type": "object", + "value": "{\n title: title,\n subTitle: description,\n icon: (\n \n ),\n actionElements: (\n
\n \n Tutorials\n \n ,\n title: 'Actions',\n variant: 'icon',\n }}\n items={generateMenuItems()}\n numOfMenuItemDisplayed={3}\n />\n
\n ),\n }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "top-level-card" + }, + { + "name": "height", + "type": "string", + "value": "300px" + }, + { + "name": "width", + "type": "string", + "value": "300px" + }, + { + "name": "padding", + "type": "string", + "value": "0px" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(url, \"_blank\")" + }, + { + "name": "cardContent", + "type": "jsx", + "value": "
\n {image && }\n
\n
{title}
\n

{description}

\n
\n
" + } + ] + } + ] + }, + { + "componentName": "SolaceMenu", + "totalUsages": 1, + "usagesByMfe": { + "broker-manager": 1 + }, + "commonProps": [ + { + "name": "buttonProps", + "count": 1 + }, + { + "name": "items", + "count": 1 + }, + { + "name": "numOfMenuItemDisplayed", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n 'aria-label': 'Actions menu',\n children: ,\n title: 'Actions',\n variant: 'icon',\n }" + }, + { + "name": "items", + "type": "expression", + "value": "generateMenuItems()" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "3" + } + ] + } + ] + }, + { + "componentName": "SolaceTypography", + "totalUsages": 1, + "usagesByMfe": { + "broker-manager": 1 + }, + "commonProps": [ + { + "name": "variant", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + } + ] + } + ], + "unusedComponents": [ + { + "name": "SolaceToasts", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceToasts.tsx" + }, + { + "name": "SolaceLinearProgress", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceLinearProgress.tsx" + }, + { + "name": "SolaceTextDiff", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTextDiff.tsx" + }, + { + "name": "jsonSchemaFormUtils", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/jsonschemaform/jsonSchemaFormUtils.tsx" + }, + { + "name": "SolaceJsonSchemaForm", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/jsonschemaform/SolaceJsonSchemaForm.tsx" + }, + { + "name": "SolacePagination", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolacePagination.tsx" + }, + { + "name": "SolaceAttributeBadge", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceAttributeBadge.tsx" + }, + { + "name": "SolaceCheckBox", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceCheckBox.tsx" + }, + { + "name": "SolaceTextArea", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceTextArea.tsx" + }, + { + "name": "WarningText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/WarningText.tsx" + }, + { + "name": "SolaceStackLabel", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStackLabel.tsx" + }, + { + "name": "SolaceTextField", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceTextField.tsx" + }, + { + "name": "HelperText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/HelperText.tsx" + }, + { + "name": "SolaceSelectAutocompleteItem", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocompleteItem.tsx" + }, + { + "name": "SolaceStepper", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepper.tsx" + }, + { + "name": "SolaceStepperFooter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx" + }, + { + "name": "SolaceStepIcon", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepIcon.tsx" + }, + { + "name": "SolaceSelectAutocomplete", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocomplete.tsx" + }, + { + "name": "FormChildBase", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/FormChildBase.tsx" + }, + { + "name": "SolaceAttributeValuePair", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx" + }, + { + "name": "SolaceAttributeValuePairForm", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePairForm.tsx" + }, + { + "name": "SolaceLearningButton", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/Button/SolaceLearningButton.tsx" + }, + { + "name": "SolacePicker", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolacePicker.tsx" + }, + { + "name": "SolaceRadio", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceRadio.tsx" + }, + { + "name": "ErrorText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/ErrorText.tsx" + }, + { + "name": "SolaceToggleButtonGroup", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceToggleButtonGroup.tsx" + }, + { + "name": "SolaceToggle", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceToggle.tsx" + }, + { + "name": "SolaceSelectAutocompleteResponsiveTags", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocompleteResponsiveTags.tsx" + }, + { + "name": "SolaceAutoCompleteTextField", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx" + }, + { + "name": "SolaceCodeEditor", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceCodeEditor.tsx" + }, + { + "name": "SolaceRadioGroup", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceRadioGroup.tsx" + }, + { + "name": "SolaceLabel", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceLabel.tsx" + }, + { + "name": "SolaceSelect", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelect.tsx" + }, + { + "name": "SolaceTree", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTree.tsx" + }, + { + "name": "SolaceDatePicker", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDatePicker.tsx" + }, + { + "name": "SolaceNotificationCounter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceNotificationCounter.tsx" + }, + { + "name": "NoAccess", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/NoAccess.tsx" + }, + { + "name": "SolaceTruncatableLink", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTruncatableLink.tsx" + }, + { + "name": "SolaceMenuItem", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceMenuItem.tsx" + }, + { + "name": "SolaceListItem", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceListItem.tsx" + }, + { + "name": "SolaceStack", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceStack.tsx" + }, + { + "name": "SolacePageHeader", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolacePageHeader.tsx" + }, + { + "name": "SolaceSidePanelLayout", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceSidePanelLayout.tsx" + }, + { + "name": "SolaceSplitPane", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceSplitPane.tsx" + }, + { + "name": "SolaceTabs", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceTabs.tsx" + }, + { + "name": "SolaceGridListMultiSelect", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGridListMultiSelect.tsx" + }, + { + "name": "SolaceListItemButton", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceListItemButton.tsx" + }, + { + "name": "SolaceGridList", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGridList.tsx" + }, + { + "name": "SolaceIconTabs", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceIconTabs.tsx" + }, + { + "name": "SolaceList", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceList.tsx" + }, + { + "name": "SolaceGrid", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGrid.tsx" + }, + { + "name": "SolaceEnvironmentSelectChip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentSelectChip.tsx" + }, + { + "name": "SolaceEmptyStateBanner", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEmptyStateBanner.tsx" + }, + { + "name": "SolaceDrawer", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDrawer.tsx" + }, + { + "name": "SolaceTag", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTag.tsx" + }, + { + "name": "SolaceConfirmationDialog", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/dialog/SolaceConfirmationDialog.tsx" + }, + { + "name": "SolaceBreadcrumb", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceBreadcrumb.tsx" + }, + { + "name": "SolaceCardHeader", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCardHeader.tsx" + }, + { + "name": "SolaceMessageBox", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceMessageBox.tsx" + }, + { + "name": "SolaceErrorBox", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceErrorBox.tsx" + }, + { + "name": "SolaceHTMLAttributesProps", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceHTMLAttributesProps.ts" + }, + { + "name": "SolaceComponentProps", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceComponentProps.ts" + }, + { + "name": "SolaceAccordion", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceAccordion.tsx" + }, + { + "name": "SolaceBackDrop", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceBackDrop.tsx" + }, + { + "name": "SolaceEnvironmentChip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentChip.tsx" + }, + { + "name": "SolaceTable", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/SolaceTable.tsx" + }, + { + "name": "ContentControlMenu", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/components/ContentControlMenu.tsx" + }, + { + "name": "useClickedOutside", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useClickedOutside.tsx" + }, + { + "name": "useExpandableRows", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useExpandableRows.tsx" + }, + { + "name": "useTableHeaderRenderHelper", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useTableHeaderRenderHelper.tsx" + }, + { + "name": "useTableBodyRenderHelper", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useTableBodyRenderHelper.tsx" + }, + { + "name": "useSolaceTable", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/hooks/useSolaceTable.tsx" + }, + { + "name": "table-utils", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/table/table-utils.tsx" + }, + { + "name": "SolaceFeatureTag", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceFeatureTag.tsx" + }, + { + "name": "SolaceCategorizedSearch", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCategorizedSearch.tsx" + }, + { + "name": "SolaceToolTip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceToolTip.tsx" + }, + { + "name": "SolaceLearningBanner", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceLearningBanner.tsx" + }, + { + "name": "SolaceResponsiveItemList", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceResponsiveItemList.tsx" + }, + { + "name": "fileUploaderUtils", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/fileuploader/fileUploaderUtils.ts" + }, + { + "name": "SolaceFileUploader", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/fileuploader/SolaceFileUploader.tsx" + }, + { + "name": "SolaceDetailMessage", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDetailMessage.tsx" + }, + { + "name": "SolaceSearchAndFilter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceSearchAndFilter.tsx" + }, + { + "name": "SolaceDonutChart", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDonutChart.tsx" + }, + { + "name": "SolaceCircularProgress", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCircularProgress.tsx" + }, + { + "name": "SolaceChip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceChip.tsx" + }, + { + "name": "SolaceEnvironmentLabel", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentLabel.tsx" + }, + { + "name": "SolacePopover", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolacePopover.tsx" + } + ], + "unusedComponentsByMfe": { + "broker-manager": [ + "SolaceToasts", + "SolaceLinearProgress", + "SolaceTextDiff", + "jsonSchemaFormUtils", + "SolaceJsonSchemaForm", + "SolacePagination", + "SolaceAttributeBadge", + "SolaceCheckBox", + "SolaceTextArea", + "WarningText", + "SolaceStackLabel", + "SolaceTextField", + "HelperText", + "SolaceSelectAutocompleteItem", + "SolaceStepper", + "SolaceStepperFooter", + "SolaceStepIcon", + "SolaceSelectAutocomplete", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceAttributeValuePairForm", + "SolaceLearningButton", + "SolacePicker", + "SolaceRadio", + "ErrorText", + "SolaceToggleButtonGroup", + "SolaceToggle", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceRadioGroup", + "SolaceLabel", + "SolaceSelect", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceListItem", + "SolaceStack", + "SolacePageHeader", + "SolaceSidePanelLayout", + "SolaceSplitPane", + "SolaceTabs", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceGridList", + "SolaceIconTabs", + "SolaceList", + "SolaceGrid", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceTag", + "SolaceConfirmationDialog", + "SolaceBreadcrumb", + "SolaceCardHeader", + "SolaceMessageBox", + "SolaceErrorBox", + "SolaceHTMLAttributesProps", + "SolaceComponentProps", + "SolaceAccordion", + "SolaceBackDrop", + "SolaceEnvironmentChip", + "SolaceTable", + "ContentControlMenu", + "useClickedOutside", + "useExpandableRows", + "useTableHeaderRenderHelper", + "useTableBodyRenderHelper", + "useSolaceTable", + "table-utils", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceToolTip", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "fileUploaderUtils", + "SolaceFileUploader", + "SolaceDetailMessage", + "SolaceSearchAndFilter", + "SolaceDonutChart", + "SolaceCircularProgress", + "SolaceChip", + "SolaceEnvironmentLabel", + "SolacePopover" + ] + }, + "overallStats": { + "totalUsages": 7, + "mostUsedComponents": [ + { + "name": "SolaceButton", + "count": 3 + }, + { + "name": "SolaceCard", + "count": 2 + }, + { + "name": "SolaceMenu", + "count": 1 + }, + { + "name": "SolaceTypography", + "count": 1 + } + ], + "mostUsedProps": [ + { + "name": "variant", + "count": 4 + }, + { + "name": "href", + "count": 2 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "width", + "count": 2 + }, + { + "name": "onClick", + "count": 2 + }, + { + "name": "target", + "count": 1 + }, + { + "name": "minWidth", + "count": 1 + }, + { + "name": "readOnly", + "count": 1 + }, + { + "name": "cardHeaderProps", + "count": 1 + }, + { + "name": "buttonProps", + "count": 1 + } + ], + "mfeUsages": { + "broker-manager": 7 + }, + "totalUnusedComponents": 87 + }, + "rawData": { + "componentUsages": [ + { + "component": "SolaceButton", + "count": 3, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "href", + "type": "expression", + "value": "sublink.url" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "target", + "type": "string", + "value": "_blank" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleTutorialClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "footer.url" + } + ] + } + ] + }, + { + "component": "SolaceCard", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "standard-card" + }, + { + "name": "minWidth", + "type": "string", + "value": "371px" + }, + { + "name": "width", + "type": "string", + "value": "475px" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "cardHeaderProps", + "type": "object", + "value": "{\n title: title,\n subTitle: description,\n icon: (\n \n ),\n actionElements: (\n
\n \n Tutorials\n \n ,\n title: 'Actions',\n variant: 'icon',\n }}\n items={generateMenuItems()}\n numOfMenuItemDisplayed={3}\n />\n
\n ),\n }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/top-level-card.js", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "top-level-card" + }, + { + "name": "height", + "type": "string", + "value": "300px" + }, + { + "name": "width", + "type": "string", + "value": "300px" + }, + { + "name": "padding", + "type": "string", + "value": "0px" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(url, \"_blank\")" + }, + { + "name": "cardContent", + "type": "jsx", + "value": "
\n {image && }\n
\n
{title}
\n

{description}

\n
\n
" + } + ] + } + ] + }, + { + "component": "SolaceMenu", + "count": 1, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/standard-card.js", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n 'aria-label': 'Actions menu',\n children: ,\n title: 'Actions',\n variant: 'icon',\n }" + }, + { + "name": "items", + "type": "expression", + "value": "generateMenuItems()" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "3" + } + ] + } + ] + }, + { + "component": "SolaceTypography", + "count": 1, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/broker-manager/src/pages/help/learning-centre/react-components/section.js", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/src/aggregator/dataAggregator.ts b/tools/archived-tools/mrc-usage-report-broker-manager/src/aggregator/dataAggregator.ts new file mode 100644 index 000000000..1d4c0cd82 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/src/aggregator/dataAggregator.ts @@ -0,0 +1,190 @@ +import { ComponentUsage, ComponentStats, ReportData, AnalysisConfig, ComponentInstance } from "../types"; + +/** + * Aggregates component usage data into statistics + */ +export class DataAggregator { + /** + * Aggregates component usage data into statistics + * @param usages Array of component usages + * @param config Analysis configuration + * @param allComponents All available MRC components + * @param mrcVersions MRC version information by MFE + * @returns Report data + */ + aggregate( + usages: any[], + config: AnalysisConfig, + allComponents: { name: string; path: string }[], + mrcVersions: Record + ): ReportData { + // Group usages by component name + const usagesByComponent = new Map(); + + for (const usage of usages) { + const { componentName } = usage; + if (!usagesByComponent.has(componentName)) { + usagesByComponent.set(componentName, []); + } + usagesByComponent.get(componentName)!.push(usage); + } + + // Generate component stats + const componentStats: ComponentStats[] = []; + const aggregatedUsages: ComponentUsage[] = []; + + for (const [componentName, componentUsages] of usagesByComponent.entries()) { + const instances: ComponentInstance[] = componentUsages.map((usage) => ({ + filePath: usage.filePath, + line: usage.line, + props: usage.props + })); + + aggregatedUsages.push({ + component: componentName, + count: instances.length, + instances + }); + // Count usages by MFE + const usagesByMfe: Record = {}; + for (const usage of componentUsages) { + usagesByMfe[usage.mfe] = (usagesByMfe[usage.mfe] || 0) + 1; + } + + // Count prop usage + const propCounts = new Map(); + for (const usage of componentUsages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + + // Get most common props + const commonProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // Get files where the component is used + const files = Array.from(new Set(componentUsages.map((usage) => usage.filePath))); + + // Count customization stats + let styledComponentCount = 0; + let customStylesCount = 0; + const overriddenPropertiesCounts: Record = {}; + + for (const usage of componentUsages) { + if (usage.customization?.styledComponent) { + styledComponentCount++; + } + if (usage.customization?.customStyles) { + customStylesCount++; + } + if (usage.customization?.overriddenProperties) { + for (const prop of usage.customization.overriddenProperties) { + overriddenPropertiesCounts[prop] = (overriddenPropertiesCounts[prop] || 0) + 1; + } + } + } + + // Add component stats + componentStats.push({ + componentName, + totalUsages: componentUsages.length, + usagesByMfe, + commonProps, + files, + customization: { + styledComponentCount, + customStylesCount, + overriddenPropertiesCounts + }, + instances + }); + } + + // Sort component stats by total usages + componentStats.sort((a, b) => b.totalUsages - a.totalUsages); + + // Generate overall stats + const totalUsages = usages.length; + + // Most used components + const mostUsedComponents = componentStats.slice(0, 10).map((stats) => ({ + name: stats.componentName, + count: stats.totalUsages + })); + + // Most used props + const allPropCounts = new Map(); + for (const usage of usages) { + for (const prop of usage.props) { + allPropCounts.set(prop.name, (allPropCounts.get(prop.name) || 0) + 1); + } + } + + const mostUsedProps = Array.from(allPropCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // MFE usage counts + const mfeUsages: Record = {}; + for (const usage of usages) { + mfeUsages[usage.mfe] = (mfeUsages[usage.mfe] || 0) + 1; + } + + // Find unused components + const usedComponentNames = new Set(componentStats.map((s) => s.componentName)); + const unusedComponents = allComponents.filter((comp) => !usedComponentNames.has(comp.name)); + + // Find unused components by MFE + const unusedComponentsByMfe: Record = {}; + // Initialize with all MFEs + const mfeList = config.mfes.length > 0 ? config.mfes : ["broker-manager"]; + for (const mfe of mfeList) { + unusedComponentsByMfe[mfe] = []; + } + + // For each component, check which MFEs don't use it + for (const component of allComponents) { + const stat = componentStats.find((s) => s.componentName === component.name); + + if (!stat) { + // If component is not used at all, add to all MFEs + for (const mfe of mfeList) { + unusedComponentsByMfe[mfe].push(component.name); + } + } else { + // If component is used in some MFEs but not others + for (const mfe of mfeList) { + if (!stat.usagesByMfe[mfe]) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + } + } + + // Generate report data + const reportData: ReportData = { + generatedAt: new Date().toISOString(), + config, + mrcVersions, + componentStats, + unusedComponents, + unusedComponentsByMfe, + overallStats: { + totalUsages, + mostUsedComponents, + mostUsedProps, + mfeUsages, + totalUnusedComponents: unusedComponents.length + }, + rawData: { + componentUsages: aggregatedUsages + } + }; + + return reportData; + } +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/src/index.ts b/tools/archived-tools/mrc-usage-report-broker-manager/src/index.ts new file mode 100644 index 000000000..0b7fe11a7 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/src/index.ts @@ -0,0 +1,285 @@ +#!/usr/bin/env node + +import { Command } from "commander"; +import path from "path"; +import chalk from "chalk"; +import fs from "fs"; +import { FileScanner } from "./scanner/fileScanner"; +import { ComponentParser } from "./parser/componentParser"; +import { DataAggregator } from "./aggregator/dataAggregator"; +import { HtmlReporter } from "./reporter/htmlReporter"; +import { AnalysisConfig, MrcSourceType } from "./types"; + +// Define the program +const program = new Command(); + +program + .name("mrc-usage-report") + .description("Generate a report on MRC component usage across MFEs") + .version("1.0.0") + .option("-o, --output ", "Output directory for the report", "./reports") + .option("-f, --format ", "Output format (html, json, csv)", "html") + .option( + "-r, --mrc-path ", + "Path to the MRC repository", + "/Users/ishanphadte/Desktop/maas-react-components" + ) + .option("-b, --base-path ", "Base path for the project", process.cwd()) + .option( + "-s, --source ", + "Source type for MRC components (local or github)", + "local" + ) + .option( + "-g, --github", + "Use GitHub as the source for MRC components (shorthand for -s github)" + ) + .option( + "--github-url ", + "GitHub repository URL for MRC components", + "https://github.com/SolaceDev/maas-react-components" + ) + .option( + "--github-branch ", + "Branch name for GitHub repository", + "main" + ); + +program.parse(process.argv); + +const options = program.opts(); + +// If -g flag is used, set source type to github +if (options.github) { + options.source = "github"; +} + +// Main function +async function main() { + try { + console.log(chalk.blue("MRC Component Usage Report Generator")); + console.log(chalk.gray("------------------------------------")); + + // Parse options + const mfes: string[] = []; + const basePath = path.resolve(options.basePath); + const mrcPath = path.resolve(basePath, options.mrcPath); + const outputDir = path.resolve(options.output); + const outputFormats = options.format + .split(",") + .map((f: string) => f.trim()); + const mrcSourceType = options.source as MrcSourceType; + const mrcGithubUrl = options.githubUrl; + const mrcGithubBranch = options.githubBranch; + + // If no MFEs are specified, default to "broker-manager" + if (mfes.length === 0) { + mfes.push("broker-manager"); + } + + // Create config + const config: AnalysisConfig = { + mfes, + mrcPath, + outputDir, + outputFormats, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch, + }; + + console.log(chalk.yellow("Configuration:")); + console.log(` Base Path: ${basePath}`); + console.log(` MRC Path: ${mrcPath}`); + console.log( + ` MFEs: ${mfes.length > 0 ? mfes.join(", ") : "broker-manager"}` + ); + console.log(` Output Directory: ${outputDir}`); + console.log(` Output Format: ${outputFormats.join(", ")}`); + console.log(` MRC Source Type: ${mrcSourceType}`); + if (mrcSourceType === "github") { + console.log(` MRC GitHub URL: ${mrcGithubUrl}`); + console.log(` MRC GitHub Branch: ${mrcGithubBranch}`); + } + console.log(""); + + // Step 1: Scan for files + console.log(chalk.yellow("Step 1: Scanning for files...")); + const fileScanner = new FileScanner( + basePath, + mfes, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch + ); + const files = await fileScanner.scanForFiles(); + console.log(`Found ${files.length} files to analyze`); + + // Step 2: Scan for MRC components + console.log(chalk.yellow("Step 2: Scanning for MRC components...")); + const allComponents = await fileScanner.scanForMrcComponents(mrcPath); + console.log(`Found ${allComponents.length} MRC component files`); + + // Step 3: Parse files for component usage + console.log(chalk.yellow("Step 3: Parsing files for component usage...")); + const componentParser = new ComponentParser(mrcPath, mrcSourceType); + await componentParser.initialize(allComponents); + + let totalUsages = 0; + const allUsages: any[] = []; + + for (let i = 0; i < files.length; i++) { + const file = files[i]; + const mfe = + mfes.length > 0 + ? file.split(path.sep).find((part) => mfes.includes(part)) || "" + : "broker-manager"; + + try { + const usages = await componentParser.parseFile(file, mfe); + totalUsages += usages.length; + allUsages.push(...usages); + + // Log progress every 100 files + if ((i + 1) % 100 === 0 || i === files.length - 1) { + console.log( + ` Processed ${i + 1}/${ + files.length + } files, found ${totalUsages} component usages so far` + ); + } + } catch (error) { + console.error(`Error parsing file ${file}:`, error); + } + } + + console.log(`Found ${totalUsages} total component usages`); + + // Step 4: Detect MRC versions for each MFE + console.log(chalk.yellow("Step 4: Detecting MRC versions...")); + const mrcVersions: Record = {}; + + if (mfes.length > 0) { + for (const mfe of mfes) { + try { + const mfePath = path.join(basePath, "micro-frontends", mfe); + const packageJsonPath = path.join(mfePath, "package.json"); + + if (fs.existsSync(packageJsonPath)) { + const packageJson = JSON.parse( + fs.readFileSync(packageJsonPath, "utf8") + ); + + // Check dependencies and devDependencies + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + + const mrcPackageName = "@SolaceDev/maas-react-components"; + + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log( + ` ${mfe}: MRC version ${dependencies[mrcPackageName]}` + ); + } else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log( + ` ${mfe}: MRC version ${devDependencies[mrcPackageName]}` + ); + } else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + } else { + // Handle the case where no MFEs are specified + const mfe = "broker-manager"; + try { + const packageJsonPath = path.join(basePath, "package.json"); + if (fs.existsSync(packageJsonPath)) { + const packageJson = JSON.parse( + fs.readFileSync(packageJsonPath, "utf8") + ); + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + const mrcPackageName = "@SolaceDev/maas-react-components"; + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log( + ` ${mfe}: MRC version ${dependencies[mrcPackageName]}` + ); + } else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log( + ` ${mfe}: MRC version ${devDependencies[mrcPackageName]}` + ); + } else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + + // Step 5: Aggregate data + console.log(chalk.yellow("Step 5: Aggregating data...")); + const dataAggregator = new DataAggregator(); + const reportData = dataAggregator.aggregate( + allUsages, + config, + allComponents, + mrcVersions + ); + console.log( + `Generated report data with ${reportData.componentStats.length} component statistics` + ); + console.log( + `Found ${reportData.unusedComponents.length} unused components` + ); + + // Step 5: Generate report + console.log(chalk.yellow("Step 5: Generating report...")); + for (const format of outputFormats) { + const outputPath = path.join( + outputDir, + `mrc-broker-manager-usage-report.${format}` + ); + + if (format === "html") { + console.log(chalk.blue("Generating HTML report...")); + const htmlReporter = new HtmlReporter(); + await htmlReporter.generateReport(reportData, outputPath); + console.log(chalk.green("HTML report generation complete.")); + } else if (format === "json") { + console.log(chalk.blue("Generating JSON report...")); + const jsonOutput = JSON.stringify(reportData, null, 2); + fs.writeFileSync(outputPath, jsonOutput); + console.log(chalk.green(`JSON report generated at ${outputPath}`)); + } else if (format === "csv") { + console.error("CSV format not yet implemented"); + } + } + + console.log(chalk.green("Report generation completed successfully!")); + } catch (error) { + console.error(chalk.red("Error generating report:"), error); + process.exit(1); + } +} + +// Run the main function +main(); diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/src/parser/componentParser.ts b/tools/archived-tools/mrc-usage-report-broker-manager/src/parser/componentParser.ts new file mode 100644 index 000000000..3e066a1a4 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/src/parser/componentParser.ts @@ -0,0 +1,260 @@ +import * as parser from "@babel/parser"; +import traverse from "@babel/traverse"; +import * as t from "@babel/types"; +import fs from "fs"; +import path from "path"; +import { ComponentProp } from "../types"; +import { MrcSourceType } from "../types"; + +// Represents a single found instance of a component +export interface FoundComponentInstance { + componentName: string; + filePath: string; + mfe: string; + lineNumber: number; + props: ComponentProp[]; +} + +/** + * Parses files for MRC component usage + */ +export class ComponentParser { + private mrcComponentNames: Set; + private mrcFileNames: Set; + private mrcPath: string; + private mrcSourceType: MrcSourceType; + private exportNameToFileNameToExportName: Map; // Map + private fileNameToExportName: Map; // Map + + constructor(mrcPath: string, mrcSourceType: MrcSourceType = "local") { + this.mrcPath = mrcPath; + this.mrcSourceType = mrcSourceType; + this.mrcComponentNames = new Set(); + this.mrcFileNames = new Set(); + this.exportNameToFileNameToExportName = new Map(); + this.fileNameToExportName = new Map(); + } + + /** + * Initializes the parser by loading all MRC component names + * @param componentInfo Array of MRC component information with exported names + */ + async initialize(componentInfo: { name: string; path: string }[]): Promise { + for (const component of componentInfo) { + // Get both the exported name and the file name + const exportedName = component.name; + const fileName = path.basename(component.path); + const fileNameWithoutExt = path.parse(fileName).name; + + // Add both to our sets + this.mrcComponentNames.add(exportedName); + this.mrcFileNames.add(fileNameWithoutExt); + + // Create mappings between them + this.exportNameToFileNameToExportName.set(exportedName, fileNameWithoutExt); + this.fileNameToExportName.set(fileNameWithoutExt, exportedName); + } + + console.log(`Loaded ${this.mrcComponentNames.size} MRC component names and ${this.mrcFileNames.size} file names`); + + // Log some examples of the mappings for debugging + let count = 0; + for (const [exportedName, fileName] of this.exportNameToFileNameToExportName.entries()) { + if (exportedName !== fileName) { + console.log(`Export mapping: ${exportedName} -> ${fileName}`); + count++; + if (count >= 5) break; // Just log a few examples + } + } + } + + /** + * Parses a file for MRC component usage + * @param filePath Path to the file to parse + * @param mfe The MFE the file belongs to + * @returns Array of component usages found in the file + */ + async parseFile(filePath: string, mfe: string): Promise { + try { + const content = fs.readFileSync(filePath, "utf-8"); + const usages: FoundComponentInstance[] = []; + + // Parse the file + const ast = parser.parse(content, { + sourceType: "module", + plugins: ["jsx", "typescript", "decorators-legacy"] + }); + + // Track imported MRC components + const importedComponents = new Map(); + // Track imported components that are considered used just by being imported + const importedComponentUsages = new Map(); + + // Traverse the AST + traverse(ast, { + // Find imports from @SolaceDev/maas-react-components + ImportDeclaration: (path) => { + const source = path.node.source.value; + if (source === "@SolaceDev/maas-react-components") { + // Get the line number of the import declaration + const lineNumber = path.node.loc?.start.line || 0; + + path.node.specifiers.forEach((specifier) => { + if (t.isImportSpecifier(specifier) && t.isIdentifier(specifier.imported)) { + const importedName = specifier.imported.name; + const localName = specifier.local.name; + + let componentName = importedName; + let isComponent = false; + + // First check if it's a direct match with an exported name + if (this.mrcComponentNames.has(importedName)) { + isComponent = true; + } + // Then check if it matches a file name and get the corresponding exported name + else if (this.mrcFileNames.has(importedName) && this.fileNameToExportName.has(importedName)) { + componentName = this.fileNameToExportName.get(importedName)!; + isComponent = true; + // console.log(`Found component by file name: ${importedName} -> ${componentName}`); + } + + if (isComponent) { + importedComponents.set(localName, componentName); + + // Consider the component as used just by being imported + // This handles cases where components are imported but not used as JSX elements + importedComponentUsages.set(componentName, { + componentName: componentName, + filePath: filePath, + mfe: mfe, + lineNumber: lineNumber, + props: [] + }); + } + } + }); + } + }, + + // Find JSX elements that use MRC components + JSXOpeningElement: (path) => { + let elementName: string | null = null; + + if (t.isJSXIdentifier(path.node.name)) { + elementName = path.node.name.name; + } else if (t.isJSXMemberExpression(path.node.name)) { + // Handle cases like + elementName = `${(path.node.name.object as t.JSXIdentifier).name}.${ + (path.node.name.property as t.JSXIdentifier).name + }`; + } + + if (elementName) { + let componentName: string | null = null; + // Check if the element name is an imported MRC component + if (importedComponents.has(elementName)) { + componentName = importedComponents.get(elementName)!; + } else if (this.mrcComponentNames.has(elementName)) { + // Direct usage of an MRC component not necessarily imported with a local name + componentName = elementName; + } else if (this.mrcFileNames.has(elementName) && this.fileNameToExportName.has(elementName)) { + // Usage by file name + componentName = this.fileNameToExportName.get(elementName)!; + } + + if (componentName) { + const props: ComponentProp[] = []; + + // Extract props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name)) { + const propName = attr.name.name; + let propType = "unknown"; + let propValue = ""; // value is always a string now + + if (attr.value) { + if (t.isStringLiteral(attr.value)) { + propType = "string"; + propValue = attr.value.value; + } else if ( + t.isJSXExpressionContainer(attr.value) && + !t.isJSXEmptyExpression(attr.value.expression) + ) { + const expression = attr.value.expression; + if (t.isNumericLiteral(expression)) { + propType = "number"; + propValue = String(expression.value); + } else if (t.isBooleanLiteral(expression)) { + propType = "boolean"; + propValue = String(expression.value); + } else if (t.isNullLiteral(expression)) { + propType = "null"; + propValue = "null"; + } else if (t.isIdentifier(expression)) { + propType = "variable"; + propValue = expression.name; + } else { + if (t.isObjectExpression(expression)) { + propType = "object"; + } else if (t.isArrayExpression(expression)) { + propType = "array"; + } else if (t.isArrowFunctionExpression(expression) || t.isFunctionExpression(expression)) { + propType = "function"; + } else if (t.isJSXElement(expression) || t.isJSXFragment(expression)) { + propType = "jsx"; + } else { + propType = "expression"; + } + propValue = content.substring(expression.start!, expression.end!); + } + } + } else { + // Boolean prop without value + propType = "boolean"; + propValue = "true"; + } + + props.push({ + name: propName, + type: propType, + value: propValue + }); + } else if (t.isJSXSpreadAttribute(attr)) { + const argument = attr.argument; + props.push({ + name: "...", + type: "spread", + value: content.substring(argument.start!, argument.end!) + }); + } + }); + + // Get line number + const lineNumber = path.node.loc?.start.line || 0; + + // Add the usage + usages.push({ + componentName, + filePath, + mfe, + lineNumber, + props + }); + + // Remove from importedComponentUsages since we've found an actual JSX usage + importedComponentUsages.delete(componentName); + } + } + } + }); + + // Add all imported components that weren't used as JSX elements + usages.push(...Array.from(importedComponentUsages.values())); + + return usages; + } catch (error) { + console.error(`Error parsing file ${filePath}:`, error); + return []; + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/src/reporter/htmlReporter.ts b/tools/archived-tools/mrc-usage-report-broker-manager/src/reporter/htmlReporter.ts new file mode 100644 index 000000000..7e081f6c4 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/src/reporter/htmlReporter.ts @@ -0,0 +1,689 @@ +import fs from "fs"; +import path from "path"; +import { ReportData } from "../types"; + +/** + * Generates an HTML report from the component usage data + */ +export class HtmlReporter { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + async generateReport(reportData: ReportData, outputPath: string): Promise { + const html = this.generateHtml(reportData); + + // Create the output directory if it doesn't exist + const outputDir = path.dirname(outputPath); + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + // Write the HTML to the output file + fs.writeFileSync(outputPath, html); + + console.log(`HTML report generated at ${outputPath}`); + } + + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + private generateHtml(reportData: ReportData): string { + const { componentStats, overallStats, generatedAt, config } = reportData; + + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

1

+

broker-manager

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ ${componentStats + .map( + (stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map( + ([mfe, count]) => ` + + + + + ` + ) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${ + Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map( + ([prop, count]) => ` + + + + + ` + ) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : "" + } + +

Instances (${stats.instances.length})

+ ${stats.instances + .map( + (instance) => ` +
+

File: ${instance.filePath}:${instance.line}

+ + + + + + + + + ${instance.props + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameValue
${prop.name}
${prop.value}
+
+ ` + ) + .join("")} +
+
+ ` + ) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map( + ([mfe, count]) => ` + + + + + + ` + ) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map( + (comp) => ` + + + + + ` + ) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map( + ([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map( + (comp) => ` + + + + ` + ) + .join("")} + +
Component Name
${comp}
+
+
+ ` + ) + .join("")} +
+ + +
+ + + + + `; + } +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/src/scanner/fileScanner.ts b/tools/archived-tools/mrc-usage-report-broker-manager/src/scanner/fileScanner.ts new file mode 100644 index 000000000..39d77ae56 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/src/scanner/fileScanner.ts @@ -0,0 +1,339 @@ +import path from "path"; +import fs from "fs"; +import { promisify } from "util"; +import { exec } from "child_process"; +import os from "os"; +import axios from "axios"; +import { MrcSourceType } from "../types"; + +const execPromise = promisify(exec); + +// Regular expression to match export statements like: +// export { default as ComponentName } from "./path/to/Component"; +const EXPORT_REGEX = + /export\s*{\s*default\s*as\s*([A-Za-z0-9_]+)\s*}\s*from\s*["'](.*?)["'];?/g; + +/** + * Scans for files in the specified MFEs + */ +export class FileScanner { + private basePath: string; + private mfes: string[]; + private mrcSourceType: MrcSourceType; + private mrcGithubUrl?: string; + private mrcGithubBranch: string; + private tempDir?: string; + + constructor( + basePath: string, + mfes: string[], + mrcSourceType: MrcSourceType = "local", + mrcGithubUrl?: string, + mrcGithubBranch: string = "main" + ) { + this.basePath = basePath; + this.mfes = mfes; + this.mrcSourceType = mrcSourceType; + this.mrcGithubUrl = mrcGithubUrl; + this.mrcGithubBranch = mrcGithubBranch; + } + + /** + * Scans for all TypeScript and JavaScript files in the specified MFEs + * @returns Array of file paths + */ + async scanForFiles(): Promise { + const allFiles: string[] = []; + + if (this.mfes.length === 0) { + // No specific MFEs, scan the entire base path + const mfePath = this.basePath; + if (!fs.existsSync(mfePath)) { + console.warn(`Base path not found: ${mfePath}`); + return []; + } + try { + const { stdout } = await execPromise( + `find ${mfePath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/build/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } else { + // Scan specified MFEs + for (const mfe of this.mfes) { + const mfePath = + mfe === "broker-manager" + ? this.basePath + : path.join(this.basePath, mfe); + + if (!fs.existsSync(mfePath)) { + console.warn(`MFE directory not found: ${mfePath}`); + continue; + } + + try { + const { stdout } = await execPromise( + `find ${mfePath}/src -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + } + + return allFiles; + } + + /** + * Extracts owner and repo from GitHub URL + * @param githubUrl GitHub repository URL + * @returns Object containing owner and repo + */ + private parseGithubUrl(githubUrl: string): { owner: string; repo: string } { + // Handle URLs like https://github.com/owner/repo or git@github.com:owner/repo.git + const urlMatch = githubUrl.match( + /github\.com[/:]([^/]+)\/([^/]+?)(\.git)?$/ + ); + if (urlMatch) { + return { + owner: urlMatch[1], + repo: urlMatch[2].replace(/\.git$/, ""), // Remove .git if present + }; + } + throw new Error(`Invalid GitHub URL: ${githubUrl}`); + } + + /** + * Gets GitHub authentication token from environment variable + * @returns GitHub authentication token or undefined if not available + */ + private getGithubToken(): string | undefined { + return process.env.GITHUB_TOKEN; + } + + /** + * Fetches a file from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path File path within the repository + * @param branch Branch name (default: main) + * @returns File content as string + */ + private async fetchFileFromGithub( + owner: string, + repo: string, + path: string, + branch?: string + ): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; + console.log(`Fetching file from GitHub: ${url}`); + + const headers: Record = {}; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + return response.data; + } catch (error) { + console.error(`Error fetching file from GitHub:`, error); + throw new Error(`Failed to fetch file from GitHub: ${path}`); + } + } + + /** + * Fetches directory contents from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path Directory path within the repository + * @param branch Branch name (default: main) + * @returns Array of file paths + */ + private async fetchDirectoryFromGithub( + owner: string, + repo: string, + path: string, + branch?: string + ): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${path}?ref=${branch}`; + console.log(`Fetching directory from GitHub API: ${url}`); + + const headers: Record = { + Accept: "application/vnd.github.v3+json", + }; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + + // Process the response to extract file paths + const files: string[] = []; + const processItems = async (items: any[]) => { + for (const item of items) { + if (item.type === "file") { + files.push(item.path); + } else if (item.type === "dir") { + // Recursively fetch subdirectory contents + const subDirUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${item.path}?ref=${branch}`; + const subDirResponse = await axios.get(subDirUrl, { headers }); + await processItems(subDirResponse.data); + } + } + }; + + await processItems(response.data); + return files; + } catch (error) { + console.error(`Error fetching directory from GitHub:`, error); + throw new Error(`Failed to fetch directory from GitHub: ${path}`); + } + } + + /** + * Prepares the MRC path based on the source type. + * If source type is local, returns the provided path. + * If source type is github, returns null to indicate GitHub API usage. + */ + async prepareMrcPath(mrcPath: string): Promise { + // If source type is local, use the provided path + if (this.mrcSourceType === "local") { + return mrcPath; + } + + // If source type is github, we'll use the GitHub API directly + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + console.log(`Using GitHub API for ${this.mrcGithubUrl}`); + return null; // Return null to indicate we're using GitHub API + } + + throw new Error("Invalid MRC source configuration"); + } + + /** + * Scans for all MRC components in the MRC repository + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component paths + */ + async scanForMrcComponents( + mrcPath: string + ): Promise<{ name: string; path: string }[]> { + const allComponents: { name: string; path: string }[] = []; + + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log( + `Scanning for MRC components in GitHub repository: ${owner}/${repo}` + ); + + // Fetch all files in the components directory to find index.ts/tsx files + const files = await this.fetchDirectoryFromGithub( + owner, + repo, + "src/components" + ); + + for (const file of files) { + // Only process index.ts or index.tsx files + if (file.endsWith("index.ts") || file.endsWith("index.tsx")) { + const fileContent = await this.fetchFileFromGithub( + owner, + repo, + file, + this.mrcGithubBranch + ); + // Reset regex lastIndex for each file + EXPORT_REGEX.lastIndex = 0; + const match = EXPORT_REGEX.exec(fileContent); + if (match && match[1] && match[2]) { + const componentName = match[1]; + const relativePath = match[2]; + // Construct the full path to the actual component file + // The relativePath is relative to the index.ts file's directory + const componentDir = path.dirname(file); + const fullComponentPath = path.join(componentDir, relativePath); + + // Assuming .tsx or .ts extension for the actual component file + let finalComponentPath = fullComponentPath; + if ( + !finalComponentPath.endsWith(".ts") && + !finalComponentPath.endsWith(".tsx") + ) { + // Try .tsx first, then .ts + // Note: For GitHub, we can't check fs.existsSync directly. + // We'll assume .tsx for now or rely on the parser to handle it. + // For a more robust solution, we'd need to list files in the componentDir on GitHub. + finalComponentPath += ".tsx"; // Default to .tsx for GitHub + } + + allComponents.push({ + name: componentName, + path: finalComponentPath, + }); + } + } + } + + console.log( + `Found ${allComponents.length} component files in GitHub repository` + ); + return allComponents; + } catch (error) { + console.error(`Error scanning MRC components from GitHub:`, error); + return []; + } + } + + // If using local path + const actualMrcPath = await this.prepareMrcPath(mrcPath); + + if (actualMrcPath) { + const componentsPath = path.join(actualMrcPath, "src", "components"); + + // Check if the components directory exists + if (!fs.existsSync(componentsPath)) { + throw new Error( + `MRC components directory not found: ${componentsPath}` + ); + } + + try { + // Use find command to locate all index.ts/tsx files within component subdirectories + const { stdout } = await execPromise( + `find ${componentsPath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/build/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + const componentFiles = stdout.trim().split("\n").filter(Boolean); + + for (const file of componentFiles) { + const componentName = path.basename(file, path.extname(file)); + allComponents.push({ name: componentName, path: file }); + } + + console.log( + `Found ${allComponents.length} MRC components from local path` + ); + return allComponents; + } catch (error) { + console.error(`Error scanning MRC components:`, error); + return []; + } + } + + throw new Error("Invalid MRC source configuration"); + } +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/src/types.ts b/tools/archived-tools/mrc-usage-report-broker-manager/src/types.ts new file mode 100644 index 000000000..a709aba51 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/src/types.ts @@ -0,0 +1,74 @@ +export interface AnalysisConfig { + mfes: string[]; + mrcPath: string; + outputDir: string; + outputFormats: string[]; + mrcSourceType: MrcSourceType; + mrcGithubUrl?: string; + mrcGithubBranch?: string; +} + +export type MrcSourceType = "local" | "github"; + +// Represents a prop passed to a component +export interface ComponentProp { + name: string; + value: string; // The value of the prop + type?: string; // This can remain as is +} + +// Represents a single instance of a component being used +export interface ComponentInstance { + filePath: string; + line: number; + props: ComponentProp[]; +} + +// Represents the aggregated usage data for a component +export interface ComponentUsage { + component: string; + count: number; + instances: ComponentInstance[]; +} + +// Aggregated data for a component +export interface ComponentStats { + componentName: string; + totalUsages: number; + usagesByMfe: Record; + commonProps: { name: string; count: number }[]; + files: string[]; + customization: { + styledComponentCount: number; + customStylesCount: number; + overriddenPropertiesCounts: Record; + }; + // All instances of the component + instances: ComponentInstance[]; +} + +export interface ReportData { + generatedAt: string; + config: AnalysisConfig; + mrcVersions: Record; + componentStats: ComponentStats[]; + unusedComponents: { name: string; path: string }[]; + unusedComponentsByMfe: Record; + overallStats: OverallStats; + rawData: { + componentUsages: ComponentUsage[]; + }; +} + +export interface OverallStats { + totalUsages: number; + mostUsedComponents: { name: string; count: number }[]; + mostUsedProps: { name: string; count: number }[]; + mfeUsages: Record; + totalUnusedComponents: number; +} + +export interface MrcComponentInfo { + name: string; + path: string; +} diff --git a/tools/archived-tools/mrc-usage-report-broker-manager/tsconfig.json b/tools/archived-tools/mrc-usage-report-broker-manager/tsconfig.json new file mode 100644 index 000000000..ef068a05b --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-broker-manager/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "es2016", + "module": "commonjs", + "outDir": "./build", + "rootDir": "./src", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true + }, + "include": ["src/**/*.ts", "src/jsonMerger.ts"], + "exclude": ["node_modules"] +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/README.md b/tools/archived-tools/mrc-usage-report-maas-ops-ui/README.md new file mode 100644 index 000000000..c6177a96b --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/README.md @@ -0,0 +1,212 @@ +# MRC Usage Report + +A tool to analyze and report on the usage of MRC (maas-react-components) components across different micro-frontends. + +## Features + +- Scans TypeScript/JavaScript files for MRC component usage +- Analyzes how components are used (props, customization, etc.) +- Identifies unused components (globally and per MFE) +- Detects components that are imported but not directly used as JSX elements +- Generates detailed HTML reports with interactive charts +- Configurable to analyze specific MFEs +- Supports different output formats (HTML, JSON, YAML) +- Includes trend analysis to track component usage changes over time +- Can be run as a GitHub Action with automatic GitHub Pages deployment + +## Installation + +1. Navigate to the tool directory: + +```bash +cd tools/mrc-usage-report +``` + +2. Install dependencies: + +```bash +npm install +``` + +3. Build the tool: + +```bash +npm run build +``` + +## Usage + +Run the tool with default settings: + +```bash +npm start +``` + +This will analyze the `maas-ops-react` and `infra` MFEs and generate an HTML report in the `./reports` directory. + +### Command Line Options + +You can customize the behavior with the following options: + +``` +Options: + -o, --output Output directory for the report (default: "./reports") + -f, --format Output format (html, json, yaml, csv) (default: "html") + -m, --mfes Comma-separated list of MFEs to analyze (default: "maas-ops-react,infra") + --mfe-paths JSON string mapping MFE names to their repository paths (default: "{}") + -r, --mrc-path Path to the MRC repository (default: "../../maas-react-components") + -b, --base-path Base path for the project (default: current working directory) + -s, --source Source type for MRC components (local or github) (default: "local") + -g, --github Use GitHub as the source for MRC components (shorthand for -s github) + --github-url GitHub repository URL for MRC components (default: "https://github.com/SolaceDev/maas-react-components") + --github-branch Branch name for GitHub repository (default: "main") + -h, --help Display help for command + -V, --version Output the version number +``` + +### Examples + +Analyze only the 'ep' and 'saas' MFEs: + +```bash +npm start -- -m ep,saas +``` + +Generate a JSON or YAML report: + +```bash +# JSON format +npm start -- -f json + +# YAML format +npm start -- -f yaml +``` + +Specify custom paths: + +```bash +npm start -- -b /path/to/project -r /path/to/mrc -o /path/to/output +``` + +Use GitHub as the source for MRC components: + +```bash +# Using the -g flag (shorthand) +GITHUB_TOKEN=your_github_token npm start -- -g + +# Or using the --source option +GITHUB_TOKEN=your_github_token npm start -- -s github + +# Optionally specify a different GitHub repository URL +GITHUB_TOKEN=your_github_token npm start -- -g --github-url https://github.com/your-org/your-repo + +# Optionally specify a different branch name +GITHUB_TOKEN=your_github_token npm start -- -g --github-branch develop +``` + +This is particularly useful in CI/CD environments or GitHub Actions where you don't want to clone the repository manually. + +**Note:** If the MRC repository is private, you need to provide a GitHub personal access token with the `repo` scope via the `GITHUB_TOKEN` environment variable. This token is used to authenticate with the GitHub API. + +## Report Structure + +The HTML report includes: + +- Summary statistics (total usages, MFEs analyzed, unique components, unused components) +- Interactive charts showing component usage distribution +- Detailed breakdown of each component's usage +- Analysis of props used with each component +- Information about customization and styling overrides +- File references where components are used +- List of unused components (not used in any MFE) +- Per-MFE analysis of unused components (components used in some MFEs but not others) +- MRC version information for each MFE + +## Component Usage Detection + +The tool detects component usage in two ways: + +1. **Direct JSX Usage:** When a component is used directly in JSX elements within a file. +2. **Import-Only Usage:** When a component is imported from the MRC library but not directly used as a JSX element in the same file. This accounts for components that might be: + - Used conditionally in code paths + - Passed as props to other components + - Imported for future use or as a precaution + - Used in ways other than direct JSX elements + +## Development + +### Project Structure + +- `src/index.ts` - Main entry point +- `src/types.ts` - TypeScript interfaces +- `src/scanner/` - File scanning functionality +- `src/parser/` - Code parsing and analysis +- `src/aggregator/` - Data aggregation and statistics +- `src/reporter/` - Report generation + +### Adding New Features + +To add support for a new output format: + +1. Update the `outputFormat` type in `src/types.ts` +2. Add a new reporter class in `src/reporter/` +3. Update the report generation logic in `src/index.ts` + +### GitHub Action Integration + +This tool can be run automatically as a GitHub Action. A workflow file is included at `.github/workflows/mrc-usage-report.yml` that: + +1. Runs on every push to the main branch (and can be triggered manually) +2. Generates both HTML and JSON reports +3. Creates a trend analysis comparing the current report with previous ones +4. Publishes the reports to GitHub Pages + +### Setting Up GitHub Pages Deployment + +To enable the GitHub Pages deployment: + +1. Go to your repository settings +2. Navigate to "Pages" in the sidebar +3. Under "Build and deployment", select "GitHub Actions" as the source +4. The reports will be available at `https://[username].github.io/[repo-name]/mrc-usage-report/` + +### Testing Locally + +To test the report generation and trend analysis locally: + +```bash +# Navigate to the tool directory +cd tools/mrc-usage-report + +# Build the tool +npm run build + +# Generate the HTML report with correct base path +npm start -- -g -f html -o ./reports -b /path/to/repository/root + +# Generate the JSON report with correct base path +npm start -- -g -f json -o ./reports -b /path/to/repository/root + +# Run the trend analysis script +node ./scripts/trend-analyzer.js +``` + +Note: The `-b` parameter is crucial as it tells the tool where to look for the MFEs to analyze. Without it, the tool will use the current directory as the base path, which may not contain any MFEs to analyze. + +### Trend Analysis + +The trend analysis feature tracks changes in component usage over time: + +- On the first run, it creates a baseline report +- On subsequent runs, it compares the current report with the previous one +- The analysis shows: + - New components added + - Components removed + - Components with significant usage changes + - Overall statistics changes + +The trend report is set as the landing page, with a link to the detailed component usage report. + +## License + +ISC diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/aggregator/dataAggregator.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/aggregator/dataAggregator.js new file mode 100644 index 000000000..c52d220e6 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/aggregator/dataAggregator.js @@ -0,0 +1,154 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.DataAggregator = void 0; +/** + * Aggregates component usage data into statistics + */ +class DataAggregator { + /** + * Aggregates component usage data into statistics + * @param usages Array of component usages + * @param config Analysis configuration + * @param allComponents All available MRC components + * @param mrcVersions MRC version information by MFE + * @returns Report data + */ + aggregate(usages, config, allComponents, mrcVersions) { + var _a, _b, _c; + // Group usages by component name + const usagesByComponent = new Map(); + for (const usage of usages) { + const { componentName } = usage; + if (!usagesByComponent.has(componentName)) { + usagesByComponent.set(componentName, []); + } + usagesByComponent.get(componentName).push(usage); + } + // Generate component stats + const componentStats = []; + for (const [componentName, componentUsages] of usagesByComponent.entries()) { + // Count usages by MFE + const usagesByMfe = {}; + for (const usage of componentUsages) { + usagesByMfe[usage.mfe] = (usagesByMfe[usage.mfe] || 0) + 1; + } + // Count prop usage + const propCounts = new Map(); + for (const usage of componentUsages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + // Get most common props + const commonProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + // Get files where the component is used + const files = Array.from(new Set(componentUsages.map((usage) => usage.filePath))); + // Count customization stats + let styledComponentCount = 0; + let customStylesCount = 0; + const overriddenPropertiesCounts = {}; + for (const usage of componentUsages) { + if ((_a = usage.customization) === null || _a === void 0 ? void 0 : _a.styledComponent) { + styledComponentCount++; + } + if ((_b = usage.customization) === null || _b === void 0 ? void 0 : _b.customStyles) { + customStylesCount++; + } + if ((_c = usage.customization) === null || _c === void 0 ? void 0 : _c.overriddenProperties) { + for (const prop of usage.customization.overriddenProperties) { + overriddenPropertiesCounts[prop] = (overriddenPropertiesCounts[prop] || 0) + 1; + } + } + } + // Add component stats + componentStats.push({ + componentName, + totalUsages: componentUsages.length, + usagesByMfe, + commonProps, + files, + customization: { + styledComponentCount, + customStylesCount, + overriddenPropertiesCounts + } + }); + } + // Sort component stats by total usages + componentStats.sort((a, b) => b.totalUsages - a.totalUsages); + // Generate overall stats + const totalUsages = usages.length; + // Most used components + const mostUsedComponents = componentStats.slice(0, 10).map((stats) => ({ + name: stats.componentName, + count: stats.totalUsages + })); + // Most used props + const allPropCounts = new Map(); + for (const usage of usages) { + for (const prop of usage.props) { + allPropCounts.set(prop.name, (allPropCounts.get(prop.name) || 0) + 1); + } + } + const mostUsedProps = Array.from(allPropCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + // MFE usage counts + const mfeUsages = {}; + for (const usage of usages) { + mfeUsages[usage.mfe] = (mfeUsages[usage.mfe] || 0) + 1; + } + // Find unused components + const usedComponentNames = new Set(componentStats.map((s) => s.componentName)); + const unusedComponents = allComponents.filter((comp) => !usedComponentNames.has(comp.name)); + // Find unused components by MFE + const unusedComponentsByMfe = {}; + // Initialize with all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe] = []; + } + // For each component, check which MFEs don't use it + for (const component of allComponents) { + const stat = componentStats.find((s) => s.componentName === component.name); + if (!stat) { + // If component is not used at all, add to all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + else { + // If component is used in some MFEs but not others + for (const mfe of config.mfes) { + if (!stat.usagesByMfe[mfe]) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + } + } + // Generate report data + const reportData = { + generatedAt: new Date().toISOString(), + config, + mrcVersions, + componentStats, + unusedComponents, + unusedComponentsByMfe, + overallStats: { + totalUsages, + mostUsedComponents, + mostUsedProps, + mfeUsages, + totalUnusedComponents: unusedComponents.length + }, + rawData: { + componentUsages: usages + } + }; + return reportData; + } +} +exports.DataAggregator = DataAggregator; diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/index.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/index.js new file mode 100644 index 000000000..371f12f45 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/index.js @@ -0,0 +1,194 @@ +#!/usr/bin/env node +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const commander_1 = require("commander"); +const path_1 = __importDefault(require("path")); +const chalk_1 = __importDefault(require("chalk")); +const fs_1 = __importDefault(require("fs")); +const fileScanner_1 = require("./scanner/fileScanner"); +const componentParser_1 = require("./parser/componentParser"); +const dataAggregator_1 = require("./aggregator/dataAggregator"); +const htmlReporter_1 = require("./reporter/htmlReporter"); +// Define the program +const program = new commander_1.Command(); +program + .name("mrc-usage-report") + .description("Generate a report on MRC component usage across MFEs") + .version("1.0.0") + .option("-o, --output ", "Output directory for the report", "./reports") + .option("-f, --formats ", "Comma-separated list of output formats (html, json, csv)", "html") + .option("-m, --mfes ", "Comma-separated list of MFEs to analyze", "maas-ops-react,infra") + .option("-r, --mrc-path ", "Path to the MRC repository", "../../maas-react-components") + .option("-b, --base-path ", "Base path for the project", process.cwd()) + .option("-s, --source ", "Source type for MRC components (local or github)", "local") + .option("-g, --github", "Use GitHub as the source for MRC components (shorthand for -s github)") + .option("--github-url ", "GitHub repository URL for MRC components", "https://github.com/SolaceDev/maas-react-components") + .option("--github-branch ", "Branch name for GitHub repository", "main"); +program.parse(process.argv); +const options = program.opts(); +// If -g flag is used, set source type to github +if (options.github) { + options.source = "github"; +} +// Main function +function main() { + return __awaiter(this, void 0, void 0, function* () { + try { + console.log(chalk_1.default.blue("MRC Component Usage Report Generator")); + console.log(chalk_1.default.gray("------------------------------------")); + // Parse options + const mfes = options.mfes + .split(",") + .map((mfe) => mfe.trim()) + .filter(Boolean); + const basePath = path_1.default.resolve(options.basePath); + const mrcPath = path_1.default.resolve(basePath, options.mrcPath); + const outputDir = path_1.default.resolve(options.output); + const outputFormats = options.formats.split(",").map((f) => f.trim()); + const mrcSourceType = options.source; + const mrcGithubUrl = options.githubUrl; + const mrcGithubBranch = options.githubBranch; + // Create config + const config = { + mfes, + mrcPath, + outputDir, + outputFormats, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch + }; + console.log(chalk_1.default.yellow("Configuration:")); + console.log(` Base Path: ${basePath}`); + console.log(` MRC Path: ${mrcPath}`); + console.log(` MFEs: ${mfes.join(", ")}`); + console.log(` Output Directory: ${outputDir}`); + console.log(` Output Formats: ${outputFormats.join(", ")}`); + console.log(` MRC Source Type: ${mrcSourceType}`); + if (mrcSourceType === "github") { + console.log(` MRC GitHub URL: ${mrcGithubUrl}`); + console.log(` MRC GitHub Branch: ${mrcGithubBranch}`); + } + console.log(""); + // Step 1: Scan for files + console.log(chalk_1.default.yellow("Step 1: Scanning for files...")); + const fileScanner = new fileScanner_1.FileScanner(basePath, mfes, mrcSourceType, mrcGithubUrl, mrcGithubBranch); + const files = yield fileScanner.scanForFiles(); + console.log(`Found ${files.length} files to analyze`); + // Step 2: Scan for MRC components + console.log(chalk_1.default.yellow("Step 2: Scanning for MRC components...")); + const allComponents = yield fileScanner.scanForMrcComponents(mrcPath); + console.log(`Found ${allComponents.length} MRC component files`); + // Step 3: Parse files for component usage + console.log(chalk_1.default.yellow("Step 3: Parsing files for component usage...")); + const componentParser = new componentParser_1.ComponentParser(mrcPath, mrcSourceType); + yield componentParser.initialize(allComponents); + let totalUsages = 0; + const allUsages = []; + for (let i = 0; i < files.length; i++) { + const file = files[i]; + const mfe = file.split(path_1.default.sep).find((part) => mfes.includes(part)) || ""; + try { + const usages = yield componentParser.parseFile(file, mfe); + totalUsages += usages.length; + allUsages.push(...usages); + // Log progress every 100 files + if ((i + 1) % 100 === 0 || i === files.length - 1) { + console.log(` Processed ${i + 1}/${files.length} files, found ${totalUsages} component usages so far`); + } + } + catch (error) { + console.error(`Error parsing file ${file}:`, error); + } + } + console.log(`Found ${totalUsages} total component usages`); + // Step 4: Detect MRC versions for each MFE + console.log(chalk_1.default.yellow("Step 4: Detecting MRC versions...")); + const mrcVersions = {}; + for (const mfe of mfes) { + try { + const mfePath = path_1.default.join(basePath, "micro-frontends", mfe); + const packageJsonPath = path_1.default.join(mfePath, "package.json"); + if (fs_1.default.existsSync(packageJsonPath)) { + const packageJson = JSON.parse(fs_1.default.readFileSync(packageJsonPath, "utf8")); + // Check dependencies and devDependencies + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + const mrcPackageName = "@SolaceDev/maas-react-components"; + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${dependencies[mrcPackageName]}`); + } + else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${devDependencies[mrcPackageName]}`); + } + else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } + else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } + catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + // Step 5: Aggregate data + console.log(chalk_1.default.yellow("Step 5: Aggregating data...")); + const dataAggregator = new dataAggregator_1.DataAggregator(); + const reportData = dataAggregator.aggregate(allUsages, config, allComponents, mrcVersions); + console.log(`Generated report data with ${reportData.componentStats.length} component statistics`); + console.log(`Found ${reportData.unusedComponents.length} unused components`); + // Step 5: Generate report + console.log(chalk_1.default.yellow("Step 5: Generating report...")); + // Ensure output directory exists + if (!fs_1.default.existsSync(outputDir)) { + fs_1.default.mkdirSync(outputDir, { recursive: true }); + } + for (const format of outputFormats) { + const outputPath = path_1.default.join(outputDir, `mrc-maas-ops-ui-usage-report.${format}`); + if (format === "html") { + const htmlReporter = new htmlReporter_1.HtmlReporter(); + yield htmlReporter.generateReport(reportData, outputPath); + console.log(`HTML report generated at ${outputPath}`); + } + else if (format === "json") { + const jsonOutput = JSON.stringify(reportData, null, 2); + fs_1.default.writeFileSync(outputPath, jsonOutput); + console.log(`JSON report generated at ${outputPath}`); + } + else if (format === "csv") { + console.error("CSV format not yet implemented"); + // Do not exit, continue with other formats if any + } + else { + console.warn(`Unsupported output format: ${format}. Skipping.`); + } + } + console.log(chalk_1.default.green("Report generation completed successfully!")); + } + catch (error) { + console.error(chalk_1.default.red("Error generating report:"), error); + process.exit(1); + } + }); +} +// Run the main function +main(); diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/jsonMerger.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/jsonMerger.js new file mode 100644 index 000000000..ec22c3601 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/jsonMerger.js @@ -0,0 +1,99 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.JsonMerger = void 0; +class JsonMerger { + /** + * Merges multiple ReportData objects into a single consolidated ReportData object. + * @param reports An array of ReportData objects to merge. + * @returns A new ReportData object containing the merged data. + */ + mergeReports(reports) { + if (reports.length === 0) { + throw new Error("No reports provided for merging."); + } + // Initialize with the first report's structure + const mergedReport = JSON.parse(JSON.stringify(reports[0])); + // Clear dynamic data for aggregation + mergedReport.componentStats = []; + mergedReport.overallStats.totalUsages = 0; + mergedReport.overallStats.mfeUsages = {}; + mergedReport.unusedComponents = []; + mergedReport.unusedComponentsByMfe = {}; + mergedReport.mrcVersions = {}; + const componentMap = new Map(); + const allUnusedComponents = []; + const allUnusedComponentsByMfe = {}; + for (const report of reports) { + // Aggregate componentStats + for (const compStat of report.componentStats) { + if (componentMap.has(compStat.componentName)) { + const existingStat = componentMap.get(compStat.componentName); + existingStat.totalUsages += compStat.totalUsages; + for (const mfe in compStat.usagesByMfe) { + existingStat.usagesByMfe[mfe] = + (existingStat.usagesByMfe[mfe] || 0) + compStat.usagesByMfe[mfe]; + } + existingStat.files.push(...compStat.files); + // Simple concatenation for commonProps, might need more sophisticated merging if props have complex structures + existingStat.commonProps.push(...compStat.commonProps); + existingStat.customization.styledComponentCount += + compStat.customization.styledComponentCount; + existingStat.customization.customStylesCount += compStat.customization.customStylesCount; + for (const prop in compStat.customization.overriddenPropertiesCounts) { + existingStat.customization.overriddenPropertiesCounts[prop] = + (existingStat.customization.overriddenPropertiesCounts[prop] || 0) + + compStat.customization.overriddenPropertiesCounts[prop]; + } + } + else { + componentMap.set(compStat.componentName, JSON.parse(JSON.stringify(compStat))); + } + } + // Aggregate overallStats + mergedReport.overallStats.totalUsages += report.overallStats.totalUsages; + for (const mfe in report.overallStats.mfeUsages) { + mergedReport.overallStats.mfeUsages[mfe] = + (mergedReport.overallStats.mfeUsages[mfe] || 0) + report.overallStats.mfeUsages[mfe]; + } + // Aggregate unusedComponents + allUnusedComponents.push(...report.unusedComponents); + // Aggregate unusedComponentsByMfe + for (const mfe in report.unusedComponentsByMfe) { + if (!allUnusedComponentsByMfe[mfe]) { + allUnusedComponentsByMfe[mfe] = []; + } + allUnusedComponentsByMfe[mfe].push(...report.unusedComponentsByMfe[mfe]); + } + // Aggregate mrcVersions (take the latest or first encountered for each MFE) + for (const mfe in report.mrcVersions) { + mergedReport.mrcVersions[mfe] = report.mrcVersions[mfe]; + } + } + mergedReport.componentStats = Array.from(componentMap.values()); + mergedReport.unusedComponents = this.deduplicateComponents(allUnusedComponents); + mergedReport.unusedComponentsByMfe = + this.deduplicateUnusedComponentsByMfe(allUnusedComponentsByMfe); + // Update generatedAt to current time + mergedReport.generatedAt = new Date().toISOString(); + return mergedReport; + } + deduplicateComponents(components) { + const seen = new Set(); + return components.filter((comp) => { + const key = `${comp.name}-${comp.path}`; + if (seen.has(key)) { + return false; + } + seen.add(key); + return true; + }); + } + deduplicateUnusedComponentsByMfe(unusedByMfe) { + const result = {}; + for (const mfe in unusedByMfe) { + result[mfe] = Array.from(new Set(unusedByMfe[mfe])); + } + return result; + } +} +exports.JsonMerger = JsonMerger; diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/merger/reportMerger.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/merger/reportMerger.js new file mode 100644 index 000000000..620360fd9 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/merger/reportMerger.js @@ -0,0 +1,125 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ReportMerger = void 0; +class ReportMerger { + mergeReports(report1, report2) { + const mergedReport = { + generatedAt: new Date().toISOString(), // Use current time for merged report + config: this.mergeConfigs(report1.config, report2.config), + mrcVersions: Object.assign(Object.assign({}, report1.mrcVersions), report2.mrcVersions), // Desktop versions overwrite maas-ops-ui + componentStats: this.mergeComponentStats(report1.componentStats, report2.componentStats), + unusedComponents: this.mergeUnusedComponents(report1.unusedComponents, report2.unusedComponents), + unusedComponentsByMfe: this.mergeUnusedComponentsByMfe(report1.unusedComponentsByMfe, report2.unusedComponentsByMfe), + overallStats: {}, // Will be recalculated + rawData: { + componentUsages: [...report1.rawData.componentUsages, ...report2.rawData.componentUsages] + } + }; + // Recalculate overallStats based on merged data + mergedReport.overallStats = this.recalculateOverallStats(mergedReport); + return mergedReport; + } + mergeConfigs(config1, config2) { + const mergedMfes = Array.from(new Set([...config1.mfes, ...config2.mfes])); + return Object.assign(Object.assign({}, config1), { mfes: mergedMfes }); + } + mergeComponentStats(stats1, stats2) { + const mergedStatsMap = new Map(); + [...stats1, ...stats2].forEach((stats) => { + if (mergedStatsMap.has(stats.componentName)) { + const existingStats = mergedStatsMap.get(stats.componentName); + existingStats.totalUsages += stats.totalUsages; + // Merge usagesByMfe + for (const mfe in stats.usagesByMfe) { + existingStats.usagesByMfe[mfe] = + (existingStats.usagesByMfe[mfe] || 0) + stats.usagesByMfe[mfe]; + } + // Merge commonProps + stats.commonProps.forEach((prop) => { + const existingProp = existingStats.commonProps.find((p) => p.name === prop.name); + if (existingProp) { + existingProp.count += prop.count; + } + else { + existingStats.commonProps.push(Object.assign({}, prop)); + } + }); + // Merge files and deduplicate + existingStats.files = Array.from(new Set([...existingStats.files, ...stats.files])); + // Merge customization + existingStats.customization.styledComponentCount += + stats.customization.styledComponentCount; + existingStats.customization.customStylesCount += stats.customization.customStylesCount; + for (const prop in stats.customization.overriddenPropertiesCounts) { + existingStats.customization.overriddenPropertiesCounts[prop] = + (existingStats.customization.overriddenPropertiesCounts[prop] || 0) + + stats.customization.overriddenPropertiesCounts[prop]; + } + } + else { + mergedStatsMap.set(stats.componentName, Object.assign({}, stats)); + } + }); + return Array.from(mergedStatsMap.values()); + } + mergeUnusedComponents(unused1, unused2) { + const allUnused = [...unused1, ...unused2]; + const uniqueUnused = new Map(); + allUnused.forEach((comp) => { + const key = `${comp.name}-${comp.path}`; + if (!uniqueUnused.has(key)) { + uniqueUnused.set(key, comp); + } + }); + return Array.from(uniqueUnused.values()); + } + mergeUnusedComponentsByMfe(unusedByMfe1, unusedByMfe2) { + const merged = {}; + // Add all from unusedByMfe1 + for (const mfe in unusedByMfe1) { + merged[mfe] = [...unusedByMfe1[mfe]]; + } + // Merge with unusedByMfe2 + for (const mfe in unusedByMfe2) { + if (merged[mfe]) { + merged[mfe] = Array.from(new Set([...merged[mfe], ...unusedByMfe2[mfe]])); + } + else { + merged[mfe] = [...unusedByMfe2[mfe]]; + } + } + return merged; + } + recalculateOverallStats(reportData) { + let totalUsages = 0; + const mfeUsages = {}; + const componentUsageMap = new Map(); + const propUsageMap = new Map(); + reportData.componentStats.forEach((compStat) => { + totalUsages += compStat.totalUsages; + componentUsageMap.set(compStat.componentName, compStat.totalUsages); + for (const mfe in compStat.usagesByMfe) { + mfeUsages[mfe] = (mfeUsages[mfe] || 0) + compStat.usagesByMfe[mfe]; + } + compStat.commonProps.forEach((prop) => { + propUsageMap.set(prop.name, (propUsageMap.get(prop.name) || 0) + prop.count); + }); + }); + const mostUsedComponents = Array.from(componentUsageMap.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); // Top 10 + const mostUsedProps = Array.from(propUsageMap.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); // Top 10 + return { + totalUsages: totalUsages, + mostUsedComponents: mostUsedComponents, + mostUsedProps: mostUsedProps, + mfeUsages: mfeUsages, + totalUnusedComponents: reportData.unusedComponents.length + }; + } +} +exports.ReportMerger = ReportMerger; diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/parser/componentParser.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/parser/componentParser.js new file mode 100644 index 000000000..ca288ff9c --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/parser/componentParser.js @@ -0,0 +1,331 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || (function () { + var ownKeys = function(o) { + ownKeys = Object.getOwnPropertyNames || function (o) { + var ar = []; + for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k; + return ar; + }; + return ownKeys(o); + }; + return function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]); + __setModuleDefault(result, mod); + return result; + }; +})(); +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ComponentParser = void 0; +const parser = __importStar(require("@babel/parser")); +const traverse_1 = __importDefault(require("@babel/traverse")); +const t = __importStar(require("@babel/types")); +const fs_1 = __importDefault(require("fs")); +const path_1 = __importDefault(require("path")); +/** + * Parses files for MRC component usage + */ +class ComponentParser { + constructor(mrcPath, mrcSourceType = "local") { + this.mrcPath = mrcPath; + this.mrcSourceType = mrcSourceType; + this.mrcComponentNames = new Set(); + this.mrcFileNames = new Set(); + this.exportNameToFileNameToExportName = new Map(); + this.fileNameToExportName = new Map(); + } + /** + * Initializes the parser by loading all MRC component names + * @param componentInfo Array of MRC component information with exported names + */ + initialize(componentInfo) { + return __awaiter(this, void 0, void 0, function* () { + for (const component of componentInfo) { + // Get both the exported name and the file name + const exportedName = component.name; + const fileName = path_1.default.basename(component.path); + const fileNameWithoutExt = path_1.default.parse(fileName).name; + // Add both to our sets + this.mrcComponentNames.add(exportedName); + this.mrcFileNames.add(fileNameWithoutExt); + // Create mappings between them + this.exportNameToFileNameToExportName.set(exportedName, fileNameWithoutExt); + this.fileNameToExportName.set(fileNameWithoutExt, exportedName); + } + console.log(`Loaded ${this.mrcComponentNames.size} MRC component names and ${this.mrcFileNames.size} file names`); + // Log some examples of the mappings for debugging + let count = 0; + for (const [exportedName, fileName] of this.exportNameToFileNameToExportName.entries()) { + if (exportedName !== fileName) { + console.log(`Export mapping: ${exportedName} -> ${fileName}`); + count++; + if (count >= 5) + break; // Just log a few examples + } + } + }); + } + /** + * Parses a file for MRC component usage + * @param filePath Path to the file to parse + * @param mfe The MFE the file belongs to + * @returns Array of component usages found in the file + */ + parseFile(filePath, mfe) { + return __awaiter(this, void 0, void 0, function* () { + try { + const content = fs_1.default.readFileSync(filePath, "utf8"); + const usages = []; + // Parse the file + const ast = parser.parse(content, { + sourceType: "module", + plugins: ["jsx", "typescript", "decorators-legacy"] + }); + // Track imported MRC components + const importedComponents = new Map(); // Map + // Track imported components that are considered used just by being imported + const importedComponentUsages = new Map(); + // Traverse the AST + (0, traverse_1.default)(ast, { + // Find imports from @SolaceDev/maas-react-components + ImportDeclaration: (path) => { + var _a; + const source = path.node.source.value; + if (source === "@SolaceDev/maas-react-components") { + // Get the line number of the import declaration + const lineNumber = ((_a = path.node.loc) === null || _a === void 0 ? void 0 : _a.start.line) || 0; + path.node.specifiers.forEach((specifier) => { + if (t.isImportSpecifier(specifier) && t.isIdentifier(specifier.imported)) { + const importedName = specifier.imported.name; + const localName = specifier.local.name; + let componentName = importedName; + let isComponent = false; + // First check if it's a direct match with an exported name + if (this.mrcComponentNames.has(importedName)) { + isComponent = true; + } + // Then check if it matches a file name and get the corresponding exported name + else if (this.mrcFileNames.has(importedName) && + this.fileNameToExportName.has(importedName)) { + componentName = this.fileNameToExportName.get(importedName); + isComponent = true; + // console.log(`Found component by file name: ${importedName} -> ${componentName}`); + } + if (isComponent) { + importedComponents.set(localName, componentName); + // Consider the component as used just by being imported + // This handles cases where components are imported but not used as JSX elements + importedComponentUsages.set(componentName, { + componentName: componentName, + filePath: filePath, + mfe: mfe, + lineNumber: lineNumber, + props: [], + customization: { + styledComponent: false, + customStyles: false, + overriddenProperties: [] + } + }); + } + } + }); + } + }, + // Find JSX elements that use MRC components + JSXOpeningElement: (path) => { + var _a; + let elementName = null; + if (t.isJSXIdentifier(path.node.name)) { + elementName = path.node.name.name; + } + else if (t.isJSXMemberExpression(path.node.name)) { + // Handle cases like + elementName = `${path.node.name.object.name}.${path.node.name.property.name}`; + } + if (elementName) { + let componentName = null; + // Check if the element name is an imported MRC component + if (importedComponents.has(elementName)) { + componentName = importedComponents.get(elementName); + } + else if (this.mrcComponentNames.has(elementName)) { + // Direct usage of an MRC component not necessarily imported with a local name + componentName = elementName; + } + else if (this.mrcFileNames.has(elementName) && + this.fileNameToExportName.has(elementName)) { + // Usage by file name + componentName = this.fileNameToExportName.get(elementName); + } + if (componentName) { + const props = []; + // Extract props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name)) { + const propName = attr.name.name; + let propType = "unknown"; + let propValue = undefined; + let isFunction = false; + let isJSX = false; + // Extract prop value and type + if (attr.value) { + if (t.isStringLiteral(attr.value)) { + propType = "string"; + propValue = attr.value.value; + } + else if (t.isJSXExpressionContainer(attr.value)) { + const expression = attr.value.expression; + if (t.isNumericLiteral(expression)) { + propType = "number"; + propValue = expression.value; + } + else if (t.isBooleanLiteral(expression)) { + propType = "boolean"; + propValue = expression.value; + } + else if (t.isNullLiteral(expression)) { + propType = "null"; + propValue = null; + } + else if (t.isObjectExpression(expression)) { + propType = "object"; + } + else if (t.isArrayExpression(expression)) { + propType = "array"; + } + else if (t.isArrowFunctionExpression(expression) || + t.isFunctionExpression(expression)) { + propType = "function"; + isFunction = true; + } + else if (t.isJSXElement(expression) || t.isJSXFragment(expression)) { + propType = "jsx"; + isJSX = true; + } + else if (t.isIdentifier(expression)) { + propType = "variable"; + propValue = expression.name; + } + } + } + props.push({ + name: propName, + type: propType, + value: propValue, + isFunction: isFunction, + isJSX: isJSX + }); + } + else if (t.isJSXSpreadAttribute(attr)) { + props.push({ + name: "...", + type: "spread", + isSpread: true + }); + } + }); + // Get line number + const lineNumber = ((_a = path.node.loc) === null || _a === void 0 ? void 0 : _a.start.line) || 0; + // Check for customization + const customization = this.detectCustomization(path); + usages.push({ + componentName, + filePath, + mfe, + lineNumber, + props, + customization + }); + // Remove from importedComponentUsages since it's directly used as JSX + importedComponentUsages.delete(componentName); + } + } + } + }); + // Add all imported components that weren't used as JSX elements + usages.push(...Array.from(importedComponentUsages.values())); + return usages; + } + catch (error) { + console.error(`Error parsing file ${filePath}:`, error); + return []; + } + }); + } + /** + * Detects if a component has custom styling or is a styled-component + * @param path The JSX element path + * @returns Customization information + */ + detectCustomization(path) { + const customization = { + styledComponent: false, + customStyles: false, + overriddenProperties: [] + }; + // Check if the component is wrapped in a styled-component + let parent = path.parentPath; + while (parent) { + if (parent.node.type === "VariableDeclarator" && + parent.node.init && + parent.node.init.type === "CallExpression" && + parent.node.init.callee && + parent.node.init.callee.type === "MemberExpression" && + parent.node.init.callee.object.name === "styled") { + customization.styledComponent = true; + break; + } + parent = parent.parentPath; + } + // Check for style props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && + t.isJSXIdentifier(attr.name) && + (attr.name.name === "style" || attr.name.name === "sx" || attr.name.name === "css")) { + customization.customStyles = true; + // Try to extract overridden properties + if (attr.value && + t.isJSXExpressionContainer(attr.value) && + t.isObjectExpression(attr.value.expression)) { + attr.value.expression.properties.forEach((prop) => { + if (t.isObjectProperty(prop) && t.isIdentifier(prop.key)) { + customization.overriddenProperties.push(prop.key.name); + } + }); + } + } + }); + return customization; + } +} +exports.ComponentParser = ComponentParser; diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/reporter/htmlReporter.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/reporter/htmlReporter.js new file mode 100644 index 000000000..6f2f687cd --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/reporter/htmlReporter.js @@ -0,0 +1,648 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.HtmlReporter = void 0; +const fs_1 = __importDefault(require("fs")); +const path_1 = __importDefault(require("path")); +/** + * Generates an HTML report from the component usage data + */ +class HtmlReporter { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + generateReport(reportData, outputPath) { + return __awaiter(this, void 0, void 0, function* () { + const html = this.generateHtml(reportData); + // Create the output directory if it doesn't exist + const outputDir = path_1.default.dirname(outputPath); + if (!fs_1.default.existsSync(outputDir)) { + fs_1.default.mkdirSync(outputDir, { recursive: true }); + } + // Write the HTML to the output file + fs_1.default.writeFileSync(outputPath, html); + console.log(`HTML report generated at ${outputPath}`); + }); + } + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + generateHtml(reportData) { + const { componentStats, overallStats, generatedAt, config } = reportData; + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

${config.mfes.length}

+

${config.mfes.join(", ")}

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ ${componentStats + .map((stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map(([mfe, count]) => ` + + + + + `) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map((prop) => ` + + + + + `) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map(([prop, count]) => ` + + + + + `) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : ""} + +

Files (${stats.files.length})

+
    + ${stats.files.map((file) => `
  • ${file}
  • `).join("")} +
+
+
+ `) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map(([mfe, count]) => ` + + + + + + `) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map((comp) => ` + + + + + `) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map(([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map((comp) => ` + + + + `) + .join("")} + +
Component Name
${comp}
+
+
+ `) + .join("")} +
+ + +
+ + + + + `; + } +} +exports.HtmlReporter = HtmlReporter; diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/scanner/fileScanner.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/scanner/fileScanner.js new file mode 100644 index 000000000..3ab9c1fde --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/scanner/fileScanner.js @@ -0,0 +1,274 @@ +"use strict"; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.FileScanner = void 0; +const path_1 = __importDefault(require("path")); +const fs_1 = __importDefault(require("fs")); +const util_1 = require("util"); +const child_process_1 = require("child_process"); +const axios_1 = __importDefault(require("axios")); +const execPromise = (0, util_1.promisify)(child_process_1.exec); +// Regular expression to match export statements like: +// export { default as ComponentName } from "./path/to/Component"; +const EXPORT_REGEX = /export\s*{\s*default\s*as\s*([A-Za-z0-9_]+)\s*}\s*from\s*["'](.*?)["'];?/g; +/** + * Scans for files in the specified MFEs + */ +class FileScanner { + constructor(basePath, mfes, mrcSourceType = "local", mrcGithubUrl, mrcGithubBranch = "main") { + this.basePath = basePath; + this.mfes = mfes; + this.mrcSourceType = mrcSourceType; + this.mrcGithubUrl = mrcGithubUrl; + this.mrcGithubBranch = mrcGithubBranch; + } + /** + * Scans for all TypeScript and JavaScript files in the specified MFEs + * @returns Array of file paths + */ + scanForFiles() { + return __awaiter(this, void 0, void 0, function* () { + const allFiles = []; + for (const mfe of this.mfes) { + let mfePath; + if (mfe === "maas-ops-ui") { + mfePath = this.basePath; + } + else { + mfePath = path_1.default.join(this.basePath, "micro-frontends", mfe); + } + // Check if the MFE directory exists + if (!fs_1.default.existsSync(mfePath)) { + console.warn(`MFE directory not found: ${mfePath}`); + continue; + } + try { + // Use find command to locate all TypeScript and JavaScript files + const { stdout } = yield execPromise(`find ${mfePath}/src -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"`); + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } + catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + return allFiles; + }); + } + /** + * Extracts owner and repo from GitHub URL + * @param githubUrl GitHub repository URL + * @returns Object containing owner and repo + */ + parseGithubUrl(githubUrl) { + // Handle URLs like https://github.com/owner/repo or git@github.com:owner/repo.git + const urlMatch = githubUrl.match(/github\.com[/:]([^/]+)\/([^/]+?)(\.git)?$/); + if (urlMatch) { + return { + owner: urlMatch[1], + repo: urlMatch[2].replace(/\.git$/, "") // Remove .git if present + }; + } + throw new Error(`Invalid GitHub URL: ${githubUrl}`); + } + /** + * Gets GitHub authentication token from environment variable + * @returns GitHub authentication token or undefined if not available + */ + getGithubToken() { + return process.env.GITHUB_TOKEN; + } + /** + * Fetches a file from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path File path within the repository + * @param branch Branch name (default: main) + * @returns File content as string + */ + fetchFileFromGithub(owner, repo, path, branch) { + return __awaiter(this, void 0, void 0, function* () { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; + console.log(`Fetching file from GitHub: ${url}`); + const headers = {}; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + const response = yield axios_1.default.get(url, { headers }); + return response.data; + } + catch (error) { + console.error(`Error fetching file from GitHub:`, error); + throw new Error(`Failed to fetch file from GitHub: ${path}`); + } + }); + } + /** + * Fetches directory contents from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path Directory path within the repository + * @param branch Branch name (default: main) + * @returns Array of file paths + */ + fetchDirectoryFromGithub(owner, repo, path, branch) { + return __awaiter(this, void 0, void 0, function* () { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${path}?ref=${branch}`; + console.log(`Fetching directory from GitHub API: ${url}`); + const headers = { + Accept: "application/vnd.github.v3+json" + }; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + const response = yield axios_1.default.get(url, { headers }); + // Process the response to extract file paths + const files = []; + const processItems = (items) => __awaiter(this, void 0, void 0, function* () { + for (const item of items) { + if (item.type === "file") { + files.push(item.path); + } + else if (item.type === "dir") { + // Recursively fetch subdirectory contents + const subDirUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${item.path}?ref=${branch}`; + const subDirResponse = yield axios_1.default.get(subDirUrl, { headers }); + yield processItems(subDirResponse.data); + } + } + }); + yield processItems(response.data); + return files; + } + catch (error) { + console.error(`Error fetching directory from GitHub:`, error); + throw new Error(`Failed to fetch directory from GitHub: ${path}`); + } + }); + } + /** + * Prepares the MRC path based on the source type. + * If source type is local, returns the provided path. + * If source type is github, returns null to indicate GitHub API usage. + */ + prepareMrcPath(mrcPath) { + return __awaiter(this, void 0, void 0, function* () { + // If source type is local, use the provided path + if (this.mrcSourceType === "local") { + return mrcPath; + } + // If source type is github, we'll use the GitHub API directly + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + console.log(`Using GitHub API for ${this.mrcGithubUrl}`); + return null; // Return null to indicate we're using GitHub API + } + throw new Error("Invalid MRC source configuration"); + }); + } + /** + * Scans for all MRC components in the MRC repository + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component paths + */ + scanForMrcComponents(mrcPath) { + return __awaiter(this, void 0, void 0, function* () { + const allComponents = []; + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Scanning for MRC components in GitHub repository: ${owner}/${repo}`); + // Fetch all files in the components directory to find index.ts/tsx files + const files = yield this.fetchDirectoryFromGithub(owner, repo, "src/components"); + for (const file of files) { + // Only process index.ts or index.tsx files + if (file.endsWith("index.ts") || file.endsWith("index.tsx")) { + const fileContent = yield this.fetchFileFromGithub(owner, repo, file, this.mrcGithubBranch); + // Reset regex lastIndex for each file + EXPORT_REGEX.lastIndex = 0; + const match = EXPORT_REGEX.exec(fileContent); + if (match && match[1] && match[2]) { + const componentName = match[1]; + const relativePath = match[2]; + // Construct the full path to the actual component file + // The relativePath is relative to the index.ts file's directory + const componentDir = path_1.default.dirname(file); + const fullComponentPath = path_1.default.join(componentDir, relativePath); + // Assuming .tsx or .ts extension for the actual component file + let finalComponentPath = fullComponentPath; + if (!finalComponentPath.endsWith(".ts") && !finalComponentPath.endsWith(".tsx")) { + // Try .tsx first, then .ts + // Note: For GitHub, we can't check fs.existsSync directly. + // We'll assume .tsx for now or rely on the parser to handle it. + // For a more robust solution, we'd need to list files in the componentDir on GitHub. + finalComponentPath += ".tsx"; // Default to .tsx for GitHub + } + allComponents.push({ name: componentName, path: finalComponentPath }); + } + } + } + console.log(`Found ${allComponents.length} component files in GitHub repository`); + return allComponents; + } + catch (error) { + console.error(`Error scanning MRC components from GitHub:`, error); + return []; + } + } + // If using local path + const actualMrcPath = yield this.prepareMrcPath(mrcPath); + if (actualMrcPath) { + const componentsPath = path_1.default.join(actualMrcPath, "src", "components"); + // Check if the components directory exists + if (!fs_1.default.existsSync(componentsPath)) { + throw new Error(`MRC components directory not found: ${componentsPath}`); + } + try { + // Use find command to locate all index.ts/tsx files within component subdirectories + const { stdout } = yield execPromise(`find ${componentsPath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"`); + const componentFiles = stdout.trim().split("\n").filter(Boolean); + for (const file of componentFiles) { + const fileName = path_1.default.basename(file); + const componentName = path_1.default.parse(fileName).name; + // Exclude components with "Props", "Utils", "Icon", "use" in their name, + // React hooks (starting with "use"), and files in table/components subdirectory + const shouldExclude = componentName.includes("Props") || + componentName.includes("Utils") || + componentName.toLowerCase().includes("utils") || + componentName.includes("Icon") || + componentName.startsWith("use") || + file.includes("/table/components/"); + if (!shouldExclude) { + allComponents.push({ name: componentName, path: file }); + } + } + console.log(`Found ${allComponents.length} MRC components from local path`); + return allComponents; + } + catch (error) { + console.error(`Error scanning MRC components:`, error); + return []; + } + } + throw new Error("Invalid MRC source configuration"); + }); + } +} +exports.FileScanner = FileScanner; diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/types.js b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/types.js new file mode 100644 index 000000000..c8ad2e549 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/build/types.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/package-lock.json b/tools/archived-tools/mrc-usage-report-maas-ops-ui/package-lock.json new file mode 100644 index 000000000..42e91c882 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/package-lock.json @@ -0,0 +1,584 @@ +{ + "name": "mrc-usage-report-tool", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "mrc-usage-report-tool", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@types/node": "^20.14.9", + "axios": "^1.7.2", + "chalk": "^5.3.0", + "commander": "^11.1.0", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "typescript": "^5.8.3" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.27.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.27.5.tgz", + "integrity": "sha512-ZGhA37l0e/g2s1Cnzdix0O3aLYm66eF8aufiVteOgnwxgnRP8GoyMj7VWsgWnQbVKXyge7hqrFh2K2TQM6t1Hw==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.27.5", + "@babel/types": "^7.27.3", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.7.tgz", + "integrity": "sha512-qnzXzDXdr/po3bOTbTIQZ7+TxNKxpkN5IifVLXS+r7qwynkZfPyjZfE7hCXbo7IoO9TNcSyibgONsf2HauUd3Q==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.27.7" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.27.7.tgz", + "integrity": "sha512-X6ZlfR/O/s5EQ/SnUSLzr+6kGnkg8HXGMzpgsMsrJVcfDtH1vIp6ctCN4eZ1LS5c0+te5Cb6Y514fASjMRJ1nw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.27.5", + "@babel/parser": "^7.27.7", + "@babel/template": "^7.27.2", + "@babel/types": "^7.27.7", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.27.7", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.7.tgz", + "integrity": "sha512-8OLQgDScAOHXnAz2cV+RfzzNMipuLVBz2biuAJFMV9bfkNf393je3VM8CLkjQodW5+iWsSJdSgSWT6rsZoXHPw==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@types/node": { + "version": "20.19.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.1.tgz", + "integrity": "sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "license": "MIT" + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/package.json b/tools/archived-tools/mrc-usage-report-maas-ops-ui/package.json new file mode 100644 index 000000000..3cd09fa8e --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/package.json @@ -0,0 +1,25 @@ +{ + "name": "mrc-usage-report-tool", + "version": "1.0.0", + "description": "A tool to analyze and report on MRC component usage.", + "main": "build/index.js", + "scripts": { + "build": "tsc", + "start": "node build/index.js -m maas-ops-react,infra" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.24.7", + "@babel/traverse": "^7.24.7", + "@types/node": "^20.14.9", + "axios": "^1.7.2", + "chalk": "^5.3.0", + "commander": "^11.1.0", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "typescript": "^5.8.3" + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/reports/mrc-maas-ops-ui-usage-report.json b/tools/archived-tools/mrc-usage-report-maas-ops-ui/reports/mrc-maas-ops-ui-usage-report.json new file mode 100644 index 000000000..4f688d695 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/reports/mrc-maas-ops-ui-usage-report.json @@ -0,0 +1,32357 @@ +{ + "generatedAt": "2025-07-07T17:36:31.069Z", + "config": { + "mfes": [ + "maas-ops-react", + "infra" + ], + "mrcPath": "/Users/ishanphadte/Documents/Github/maas-react-components", + "outputDir": "/Users/ishanphadte/Documents/GitHub/maas-react-components/tools/mrc-usage-report-maas-ops-ui/reports", + "outputFormats": [ + "json" + ], + "mrcSourceType": "local", + "mrcGithubUrl": "https://github.com/SolaceDev/maas-react-components", + "mrcGithubBranch": "main" + }, + "mrcVersions": { + "maas-ops-react": "^15.5.2", + "infra": "^15.1.0" + }, + "componentStats": [ + { + "componentName": "SolaceTypography", + "totalUsages": 201, + "usagesByMfe": { + "maas-ops-react": 182, + "infra": 19 + }, + "commonProps": [ + { + "name": "variant", + "count": 87 + }, + { + "name": "sx", + "count": 27 + }, + { + "name": "data-qa", + "count": 21 + }, + { + "name": "mt", + "count": 18 + }, + { + "name": "fontWeight", + "count": 15 + }, + { + "name": "mb", + "count": 5 + }, + { + "name": "textAlign", + "count": 5 + }, + { + "name": "padding", + "count": 5 + }, + { + "name": "color", + "count": 4 + }, + { + "name": "fontSize", + "count": 4 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 28, + "overriddenPropertiesCounts": { + "alignContent": 1, + "paddingTop": 5, + "whiteSpace": 3, + "display": 4, + "flexDirection": 2, + "paddingBottom": 1, + "marginLeft": 1, + "width": 6, + "marginRight": 6, + "fontWeight": 2, + "fontSize": 2, + "color": 7, + "float": 1, + "maxWidth": 1, + "overflow": 1, + "textOverflow": 1, + "alignItems": 1, + "marginBottom": 1, + "mb": 1 + } + } + }, + { + "componentName": "SolaceGrid", + "totalUsages": 178, + "usagesByMfe": { + "maas-ops-react": 178 + }, + "commonProps": [ + { + "name": "item", + "count": 140 + }, + { + "name": "xs", + "count": 89 + }, + { + "name": "container", + "count": 38 + }, + { + "name": "sm", + "count": 14 + }, + { + "name": "spacing", + "count": 11 + }, + { + "name": "paddingTop", + "count": 10 + }, + { + "name": "alignItems", + "count": 8 + }, + { + "name": "key", + "count": 7 + }, + { + "name": "style", + "count": 6 + }, + { + "name": "data-qa", + "count": 6 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 8, + "overriddenPropertiesCounts": { + "padding": 2, + "paddingLeft": 1, + "marginTop": 1, + "alignContent": 1, + "margin": 1 + } + } + }, + { + "componentName": "SolaceButton", + "totalUsages": 107, + "usagesByMfe": { + "maas-ops-react": 99, + "infra": 8 + }, + "commonProps": [ + { + "name": "variant", + "count": 107 + }, + { + "name": "onClick", + "count": 78 + }, + { + "name": "dataQa", + "count": 57 + }, + { + "name": "isDisabled", + "count": 33 + }, + { + "name": "href", + "count": 20 + }, + { + "name": "dense", + "count": 17 + }, + { + "name": "type", + "count": 13 + }, + { + "name": "title", + "count": 10 + }, + { + "name": "key", + "count": 5 + }, + { + "name": "startIcon", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/utils/helper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceMessageBox", + "totalUsages": 50, + "usagesByMfe": { + "maas-ops-react": 50 + }, + "commonProps": [ + { + "name": "variant", + "count": 50 + }, + { + "name": "message", + "count": 50 + }, + { + "name": "dataQa", + "count": 26 + }, + { + "name": "showIcon", + "count": 7 + }, + { + "name": "dense", + "count": 4 + }, + { + "name": "showCloseButton", + "count": 1 + }, + { + "name": "onClose", + "count": 1 + }, + { + "name": "color", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceConfirmationDialog", + "totalUsages": 43, + "usagesByMfe": { + "maas-ops-react": 42, + "infra": 1 + }, + "commonProps": [ + { + "name": "actions", + "count": 43 + }, + { + "name": "isOpen", + "count": 43 + }, + { + "name": "title", + "count": 41 + }, + { + "name": "maxWidth", + "count": 18 + }, + { + "name": "contentText", + "count": 10 + }, + { + "name": "linearProgressIndicator", + "count": 8 + }, + { + "name": "contentLayout", + "count": 3 + }, + { + "name": "data-qa", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/common/components/ErrorDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceTable", + "totalUsages": 36, + "usagesByMfe": { + "maas-ops-react": 34, + "infra": 2 + }, + "commonProps": [ + { + "name": "rows", + "count": 36 + }, + { + "name": "columns", + "count": 36 + }, + { + "name": "sortCallback", + "count": 36 + }, + { + "name": "selectionType", + "count": 36 + }, + { + "name": "selectionChangedCallback", + "count": 19 + }, + { + "name": "renderCustomRowCells", + "count": 18 + }, + { + "name": "loading", + "count": 17 + }, + { + "name": "minHeight", + "count": 10 + }, + { + "name": "hasColumnHiding", + "count": 10 + }, + { + "name": "renderCustomRowActionItem", + "count": 10 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceTextField", + "totalUsages": 36, + "usagesByMfe": { + "maas-ops-react": 36 + }, + "commonProps": [ + { + "name": "name", + "count": 36 + }, + { + "name": "onChange", + "count": 31 + }, + { + "name": "value", + "count": 29 + }, + { + "name": "dataQa", + "count": 27 + }, + { + "name": "width", + "count": 17 + }, + { + "name": "label", + "count": 16 + }, + { + "name": "disabled", + "count": 12 + }, + { + "name": "hasErrors", + "count": 12 + }, + { + "name": "helperText", + "count": 10 + }, + { + "name": "title", + "count": 8 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceStack", + "totalUsages": 25, + "usagesByMfe": { + "maas-ops-react": 12, + "infra": 13 + }, + "commonProps": [ + { + "name": "direction", + "count": 20 + }, + { + "name": "spacing", + "count": 15 + }, + { + "name": "alignItems", + "count": 8 + }, + { + "name": "padding", + "count": 7 + }, + { + "name": "justifyContent", + "count": 4 + }, + { + "name": "data-qa", + "count": 4 + }, + { + "name": "bgcolor", + "count": 2 + }, + { + "name": "border", + "count": 2 + }, + { + "name": "borderRadius", + "count": 2 + }, + { + "name": "borderColor", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 2, + "overriddenPropertiesCounts": { + "paddingLeft": 1, + "backgroundColor": 1, + "border": 1, + "borderRadius": 1 + } + } + }, + { + "componentName": "SolaceSelect", + "totalUsages": 20, + "usagesByMfe": { + "maas-ops-react": 18, + "infra": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 20 + }, + { + "name": "value", + "count": 18 + }, + { + "name": "onChange", + "count": 18 + }, + { + "name": "width", + "count": 10 + }, + { + "name": "label", + "count": 9 + }, + { + "name": "dataQa", + "count": 5 + }, + { + "name": "readOnly", + "count": 4 + }, + { + "name": "inlineLabel", + "count": 4 + }, + { + "name": "id", + "count": 4 + }, + { + "name": "data-qa", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceCheckBox", + "totalUsages": 17, + "usagesByMfe": { + "maas-ops-react": 17 + }, + "commonProps": [ + { + "name": "name", + "count": 17 + }, + { + "name": "checked", + "count": 16 + }, + { + "name": "onChange", + "count": 14 + }, + { + "name": "label", + "count": 14 + }, + { + "name": "dataQa", + "count": 11 + }, + { + "name": "title", + "count": 7 + }, + { + "name": "subTextProps", + "count": 4 + }, + { + "name": "boldLabel", + "count": 3 + }, + { + "name": "data-qa", + "count": 2 + }, + { + "name": "readOnly", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolacePagination", + "totalUsages": 17, + "usagesByMfe": { + "maas-ops-react": 15, + "infra": 2 + }, + "commonProps": [ + { + "name": "totalResults", + "count": 17 + }, + { + "name": "pageSize", + "count": 17 + }, + { + "name": "activePage", + "count": 17 + }, + { + "name": "onPageSelection", + "count": 17 + }, + { + "name": "loading", + "count": 10 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceChip", + "totalUsages": 15, + "usagesByMfe": { + "maas-ops-react": 13, + "infra": 2 + }, + "commonProps": [ + { + "name": "label", + "count": 15 + }, + { + "name": "key", + "count": 7 + }, + { + "name": "size", + "count": 6 + }, + { + "name": "fillColor", + "count": 6 + }, + { + "name": "onDelete", + "count": 5 + }, + { + "name": "labelColor", + "count": 4 + }, + { + "name": "dataQa", + "count": 3 + }, + { + "name": "clickable", + "count": 2 + }, + { + "name": "maxWidth", + "count": 1 + }, + { + "name": "...", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/common/components/CommonAppBar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceAttributeBadge", + "totalUsages": 14, + "usagesByMfe": { + "maas-ops-react": 13, + "infra": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 13 + }, + { + "name": "...", + "count": 7 + }, + { + "name": "fillColor", + "count": 5 + }, + { + "name": "labelColor", + "count": 5 + }, + { + "name": "dataQa", + "count": 3 + }, + { + "name": "size", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceAccordion", + "totalUsages": 11, + "usagesByMfe": { + "maas-ops-react": 11 + }, + "commonProps": [ + { + "name": "details", + "count": 11 + }, + { + "name": "summary", + "count": 11 + }, + { + "name": "onChange", + "count": 11 + }, + { + "name": "expanded", + "count": 11 + }, + { + "name": "dataQa", + "count": 4 + }, + { + "name": "key", + "count": 1 + }, + { + "name": "border", + "count": 1 + }, + { + "name": "hover", + "count": 1 + }, + { + "name": "disabled", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceDetailMessage", + "totalUsages": 10, + "usagesByMfe": { + "maas-ops-react": 10 + }, + "commonProps": [ + { + "name": "title", + "count": 9 + }, + { + "name": "msgImg", + "count": 8 + }, + { + "name": "details", + "count": 6 + }, + { + "name": "...", + "count": 1 + }, + { + "name": "actions", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceCircularProgress", + "totalUsages": 10, + "usagesByMfe": { + "maas-ops-react": 9, + "infra": 1 + }, + "commonProps": [ + { + "name": "size", + "count": 8 + }, + { + "name": "data-qa", + "count": 1 + }, + { + "name": "variant", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceListItem", + "totalUsages": 9, + "usagesByMfe": { + "maas-ops-react": 9 + }, + "commonProps": [ + { + "name": "divider", + "count": 8 + }, + { + "name": "key", + "count": 2 + }, + { + "name": "sx", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 1, + "overriddenPropertiesCounts": { + "display": 1, + "alignItems": 1 + } + } + }, + { + "componentName": "SolaceStackLabel", + "totalUsages": 8, + "usagesByMfe": { + "maas-ops-react": 8 + }, + "commonProps": [ + { + "name": "id", + "count": 8 + }, + { + "name": "required", + "count": 4 + }, + { + "name": "bold", + "count": 4 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceLearningBanner", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "backgroundColor", + "count": 4 + }, + { + "name": "title", + "count": 3 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "showCloseButton", + "count": 1 + }, + { + "name": "onClose", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceBreadcrumb", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "paths", + "count": 7 + }, + { + "name": "onRouteClick", + "count": 6 + }, + { + "name": "maxItems", + "count": 6 + }, + { + "name": "id", + "count": 4 + }, + { + "name": "dataQa", + "count": 4 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceBackDrop", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "open", + "count": 7 + }, + { + "name": "data-qa", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceTabs", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 6, + "infra": 1 + }, + "commonProps": [ + { + "name": "tabs", + "count": 7 + }, + { + "name": "activeTabValue", + "count": 7 + }, + { + "name": "onTabClick", + "count": 7 + }, + { + "name": "size", + "count": 4 + }, + { + "name": "variant", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceCodeEditor", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "mode", + "count": 7 + }, + { + "name": "value", + "count": 7 + }, + { + "name": "readOnly", + "count": 6 + }, + { + "name": "dataQa", + "count": 3 + }, + { + "name": "expandable", + "count": 2 + }, + { + "name": "helperText", + "count": 2 + }, + { + "name": "hasErrors", + "count": 2 + }, + { + "name": "id", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceGridList", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 5, + "infra": 2 + }, + "commonProps": [ + { + "name": "items", + "count": 7 + }, + { + "name": "rowMapping", + "count": 7 + }, + { + "name": "gridTemplate", + "count": 7 + }, + { + "name": "dataQa", + "count": 7 + }, + { + "name": "headers", + "count": 5 + }, + { + "name": "numOfGridListItemDisplayed", + "count": 2 + }, + { + "name": "onSelection", + "count": 1 + }, + { + "name": "selectedItemId", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceTag", + "totalUsages": 6, + "usagesByMfe": { + "maas-ops-react": 6 + }, + "commonProps": [ + { + "name": "label", + "count": 6 + }, + { + "name": "fillColor", + "count": 6 + }, + { + "name": "labelColor", + "count": 6 + }, + { + "name": "clickable", + "count": 2 + }, + { + "name": "variant", + "count": 2 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceErrorBox", + "totalUsages": 5, + "usagesByMfe": { + "maas-ops-react": 4, + "infra": 1 + }, + "commonProps": [ + { + "name": "message", + "count": 5 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "data-qa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceList", + "totalUsages": 5, + "usagesByMfe": { + "maas-ops-react": 5 + }, + "commonProps": [ + { + "name": "sx", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 2, + "overriddenPropertiesCounts": { + "justifyContent": 2, + "display": 1, + "flexDirection": 1 + } + } + }, + { + "componentName": "SolacePageHeader", + "totalUsages": 5, + "usagesByMfe": { + "maas-ops-react": 4, + "infra": 1 + }, + "commonProps": [ + { + "name": "title", + "count": 5 + }, + { + "name": "breadcrumbs", + "count": 5 + }, + { + "name": "actions", + "count": 3 + }, + { + "name": "tabs", + "count": 1 + }, + { + "name": "subTitle", + "count": 1 + }, + { + "name": "actionMenu", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "totalUsages": 5, + "usagesByMfe": { + "maas-ops-react": 4, + "infra": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 2 + }, + { + "name": "supplementalText", + "count": 2 + }, + { + "name": "value", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceSelectAutocomplete", + "totalUsages": 4, + "usagesByMfe": { + "maas-ops-react": 2, + "infra": 2 + }, + "commonProps": [ + { + "name": "dataQa", + "count": 4 + }, + { + "name": "name", + "count": 4 + }, + { + "name": "label", + "count": 4 + }, + { + "name": "width", + "count": 4 + }, + { + "name": "multiple", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "value", + "count": 4 + }, + { + "name": "options", + "count": 4 + }, + { + "name": "itemComponent", + "count": 4 + }, + { + "name": "itemMappingCallback", + "count": 4 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceToasts", + "totalUsages": 4, + "usagesByMfe": { + "maas-ops-react": 3, + "infra": 1 + }, + "commonProps": [ + { + "name": "message", + "count": 4 + }, + { + "name": "open", + "count": 4 + }, + { + "name": "onClose", + "count": 4 + }, + { + "name": "severity", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceSearchAndFilter", + "totalUsages": 3, + "usagesByMfe": { + "maas-ops-react": 2, + "infra": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 3 + }, + { + "name": "value", + "count": 3 + }, + { + "name": "onChange", + "count": 3 + }, + { + "name": "width", + "count": 3 + }, + { + "name": "type", + "count": 3 + }, + { + "name": "id", + "count": 2 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "placeholder", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceToggle", + "totalUsages": 3, + "usagesByMfe": { + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "name", + "count": 3 + }, + { + "name": "onChange", + "count": 3 + }, + { + "name": "isOn", + "count": 2 + }, + { + "name": "...", + "count": 2 + }, + { + "name": "label", + "count": 2 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceDatePicker", + "totalUsages": 3, + "usagesByMfe": { + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "onClear", + "count": 2 + }, + { + "name": "onChange", + "count": 2 + }, + { + "name": "disableFuture", + "count": 2 + }, + { + "name": "value", + "count": 2 + }, + { + "name": "timezone", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceMenu", + "totalUsages": 3, + "usagesByMfe": { + "maas-ops-react": 2, + "infra": 1 + }, + "commonProps": [ + { + "name": "buttonProps", + "count": 3 + }, + { + "name": "items", + "count": 3 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "closeOnSelect", + "count": 1 + }, + { + "name": "anchorOrigin", + "count": 1 + }, + { + "name": "transformOrigin", + "count": 1 + }, + { + "name": "id", + "count": 1 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceRadio", + "totalUsages": 3, + "usagesByMfe": { + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "disabled", + "count": 3 + }, + { + "name": "label", + "count": 3 + }, + { + "name": "name", + "count": 3 + }, + { + "name": "value", + "count": 3 + }, + { + "name": "dataQa", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceSidePanelLayout", + "totalUsages": 2, + "usagesByMfe": { + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "sidePanelWidth", + "count": 2 + }, + { + "name": "showSidePanel", + "count": 2 + }, + { + "name": "sidePanelContent", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceLabel", + "totalUsages": 2, + "usagesByMfe": { + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "HelperText", + "totalUsages": 2, + "usagesByMfe": { + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "details", + "count": 1 + }, + { + "name": "isFetching", + "count": 1 + }, + { + "name": "isError", + "count": 1 + }, + { + "name": "configs", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "NoAccess", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "pageName", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SecureApp.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceToggleButtonGroup", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "dataQa", + "count": 1 + }, + { + "name": "activeValue", + "count": 1 + }, + { + "name": "onChange", + "count": 1 + }, + { + "name": "options", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceEnvironmentLabel", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 1 + }, + { + "name": "fgColor", + "count": 1 + }, + { + "name": "bgColor", + "count": 1 + }, + { + "name": "icon", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceAttributeValuePairForm", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "id", + "count": 1 + }, + { + "name": "name", + "count": 1 + }, + { + "name": "avpList", + "count": 1 + }, + { + "name": "labelForKeys", + "count": 1 + }, + { + "name": "labelForValues", + "count": 1 + }, + { + "name": "keyRequired", + "count": 1 + }, + { + "name": "keyIsRequiredMessage", + "count": 1 + }, + { + "name": "onAVPListUpdate", + "count": 1 + }, + { + "name": "hasErrors", + "count": 1 + }, + { + "name": "helperText", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceTextArea", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "...", + "count": 1 + }, + { + "name": "name", + "count": 1 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "value", + "count": 1 + }, + { + "name": "onChange", + "count": 1 + }, + { + "name": "hasErrors", + "count": 1 + }, + { + "name": "helperText", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceRadioGroup", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 1 + }, + { + "name": "value", + "count": 1 + }, + { + "name": "onChange", + "count": 1 + }, + { + "name": "inline", + "count": 1 + }, + { + "name": "required", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + }, + { + "componentName": "SolaceLinearProgress", + "totalUsages": 1, + "usagesByMfe": { + "infra": 1 + }, + "commonProps": [ + { + "name": "variant", + "count": 1 + }, + { + "name": "value", + "count": 1 + }, + { + "name": "height", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + } + } + ], + "unusedComponents": [ + { + "name": "SolaceTextDiff", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTextDiff.tsx" + }, + { + "name": "SolaceJsonSchemaForm", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/jsonschemaform/SolaceJsonSchemaForm.tsx" + }, + { + "name": "WarningText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/WarningText.tsx" + }, + { + "name": "SolaceStepper", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepper.tsx" + }, + { + "name": "SolaceStepperFooter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx" + }, + { + "name": "FormChildBase", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/FormChildBase.tsx" + }, + { + "name": "SolaceAttributeValuePair", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx" + }, + { + "name": "SolaceLearningButton", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/Button/SolaceLearningButton.tsx" + }, + { + "name": "SolacePicker", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolacePicker.tsx" + }, + { + "name": "ErrorText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/ErrorText.tsx" + }, + { + "name": "SolaceSelectAutocompleteResponsiveTags", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceSelectAutocompleteResponsiveTags.tsx" + }, + { + "name": "SolaceAutoCompleteTextField", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx" + }, + { + "name": "SolaceTree", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTree.tsx" + }, + { + "name": "SolaceNotificationCounter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceNotificationCounter.tsx" + }, + { + "name": "SolaceTruncatableLink", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTruncatableLink.tsx" + }, + { + "name": "SolaceMenuItem", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceMenuItem.tsx" + }, + { + "name": "SolaceSplitPane", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceSplitPane.tsx" + }, + { + "name": "SolaceGridListMultiSelect", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceGridListMultiSelect.tsx" + }, + { + "name": "SolaceListItemButton", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/layout/SolaceListItemButton.tsx" + }, + { + "name": "SolaceEnvironmentSelectChip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentSelectChip.tsx" + }, + { + "name": "SolaceEmptyStateBanner", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEmptyStateBanner.tsx" + }, + { + "name": "SolaceDrawer", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDrawer.tsx" + }, + { + "name": "SolaceCardHeader", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCardHeader.tsx" + }, + { + "name": "SolaceCard", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCard.tsx" + }, + { + "name": "SolaceEnvironmentChip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceEnvironmentChip.tsx" + }, + { + "name": "SolaceFeatureTag", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceFeatureTag.tsx" + }, + { + "name": "SolaceCategorizedSearch", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCategorizedSearch.tsx" + }, + { + "name": "SolaceToolTip", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceToolTip.tsx" + }, + { + "name": "SolaceResponsiveItemList", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceResponsiveItemList.tsx" + }, + { + "name": "SolaceFileUploader", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/fileuploader/SolaceFileUploader.tsx" + }, + { + "name": "SolaceDonutChart", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceDonutChart.tsx" + }, + { + "name": "SolacePopover", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolacePopover.tsx" + } + ], + "unusedComponentsByMfe": { + "maas-ops-react": [ + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "WarningText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceLearningButton", + "SolacePicker", + "ErrorText", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceTree", + "SolaceNotificationCounter", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceCardHeader", + "SolaceCard", + "SolaceEnvironmentChip", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceToolTip", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceDonutChart", + "SolacePopover" + ], + "infra": [ + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolaceCheckBox", + "SolaceTextArea", + "WarningText", + "SolaceStackLabel", + "SolaceTextField", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceAttributeValuePairForm", + "SolaceLearningButton", + "SolacePicker", + "SolaceRadio", + "ErrorText", + "SolaceToggleButtonGroup", + "SolaceToggle", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceRadioGroup", + "SolaceLabel", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceListItem", + "SolaceSidePanelLayout", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceList", + "SolaceGrid", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceTag", + "SolaceBreadcrumb", + "SolaceCardHeader", + "SolaceMessageBox", + "SolaceCard", + "SolaceAccordion", + "SolaceBackDrop", + "SolaceEnvironmentChip", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceToolTip", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceDetailMessage", + "SolaceDonutChart", + "SolaceEnvironmentLabel", + "SolacePopover" + ] + }, + "overallStats": { + "totalUsages": 911, + "mostUsedComponents": [ + { + "name": "SolaceTypography", + "count": 201 + }, + { + "name": "SolaceGrid", + "count": 178 + }, + { + "name": "SolaceButton", + "count": 107 + }, + { + "name": "SolaceMessageBox", + "count": 50 + }, + { + "name": "SolaceConfirmationDialog", + "count": 43 + }, + { + "name": "SolaceTable", + "count": 36 + }, + { + "name": "SolaceTextField", + "count": 36 + }, + { + "name": "SolaceStack", + "count": 25 + }, + { + "name": "SolaceSelect", + "count": 20 + }, + { + "name": "SolaceCheckBox", + "count": 17 + } + ], + "mostUsedProps": [ + { + "name": "variant", + "count": 249 + }, + { + "name": "dataQa", + "count": 169 + }, + { + "name": "item", + "count": 140 + }, + { + "name": "name", + "count": 91 + }, + { + "name": "onChange", + "count": 89 + }, + { + "name": "xs", + "count": 89 + }, + { + "name": "title", + "count": 86 + }, + { + "name": "label", + "count": 83 + }, + { + "name": "onClick", + "count": 78 + }, + { + "name": "value", + "count": 71 + } + ], + "mfeUsages": { + "maas-ops-react": 848, + "infra": 63 + }, + "totalUnusedComponents": 32 + }, + "rawData": { + "componentUsages": [ + { + "componentName": "NoAccess", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/SecureApp.tsx", + "mfe": "maas-ops-react", + "lineNumber": 142, + "props": [ + { + "name": "pageName", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 19, + "props": [ + { + "name": "label", + "type": "string", + "value": "BETA", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "xs", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 145, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "processOrganizationsList", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "mfe": "maas-ops-react", + "lineNumber": 121, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "datacCentersRowData", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "dataCenterTableColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx", + "mfe": "maas-ops-react", + "lineNumber": 101, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 242, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 130, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "mfe": "maas-ops-react", + "lineNumber": 178, + "props": [ + { + "name": "checked", + "type": "variable", + "value": "hideUnusedLimitsRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "hideUnusedLimitsCheckboxQa", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "mfe": "maas-ops-react", + "lineNumber": 188, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 43, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "variable", + "value": "itemWidth", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 57, + "props": [ + { + "name": "backgroundColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 59, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 60, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 65, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 8, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 80, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 252, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 253, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 254, + "props": [ + { + "name": "onRouteClick", + "type": "variable", + "value": "onBreadcumbClick", + "isFunction": false, + "isJSX": false + }, + { + "name": "paths", + "type": "variable", + "value": "customerDetailsPath", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxItems", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 256, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 257, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceErrorBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 262, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 265, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 274, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 278, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 281, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 284, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 290, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 293, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 252, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 253, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 254, + "props": [ + { + "name": "onRouteClick", + "type": "variable", + "value": "onBreadcumbClick", + "isFunction": false, + "isJSX": false + }, + { + "name": "paths", + "type": "variable", + "value": "customerDetailsPath", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxItems", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 256, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 257, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "aggregationDetailsDescription", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceErrorBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 263, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 266, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 275, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 279, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 282, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 285, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 291, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 294, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "mfe": "maas-ops-react", + "lineNumber": 129, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "mfe": "maas-ops-react", + "lineNumber": 161, + "props": [ + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "mfe": "maas-ops-react", + "lineNumber": 77, + "props": [ + { + "name": "customIcon", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "50%", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchCustomerTextbox", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextSearch", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "searchCustomerTextbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "mfe": "maas-ops-react", + "lineNumber": 110, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "mfe": "maas-ops-react", + "lineNumber": 112, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noSearchResultsToShow", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "mfe": "maas-ops-react", + "lineNumber": 119, + "props": [ + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 196, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 197, + "props": [ + { + "name": "clickable", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "label", + "isFunction": false, + "isJSX": false + }, + { + "name": "onDelete", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 212, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "display", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "padding", + "paddingLeft" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 213, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 214, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 216, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 217, + "props": [ + { + "name": "width", + "type": "string", + "value": "270px", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "searchBySelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchBySelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "searchByOption", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchByOptions", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 235, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 236, + "props": [ + { + "name": "id", + "type": "string", + "value": "orgSearchBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "orgSearchBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "orgSearchBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "400px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "searchText", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "endAdornment", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 245, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 253, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 256, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 257, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 261, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 262, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 281, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 282, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 293, + "props": [ + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "mfe": "maas-ops-react", + "lineNumber": 294, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingLeft", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 107, + "props": [ + { + "name": "marginLeft", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 116, + "props": [ + { + "name": "marginLeft", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 146, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 255, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "displayedColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "columnSelectionHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 265, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 266, + "props": [ + { + "name": "marginTop", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "marginBottom", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 267, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 274, + "props": [ + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectDifferentPage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "mfe": "maas-ops-react", + "lineNumber": 119, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "mfe": "maas-ops-react", + "lineNumber": 124, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "startIcon", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "mfe": "maas-ops-react", + "lineNumber": 130, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "mfe": "maas-ops-react", + "lineNumber": 138, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 78, + "props": [ + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "success", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 82, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 90, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "moreDetailsErrorButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 126, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 139, + "props": [ + { + "name": "name", + "type": "string", + "value": "artifactResource", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Latest Version:", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "string", + "value": "artifactVersion", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 152, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 703, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 706, + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 707, + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 731, + "props": [ + { + "name": "dense", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "pushLogPipelines", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "createUpdateLogPipelineButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 758, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "queryTestLog", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "validateLogFacets", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 804, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "updateAllMonitorsButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 828, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "openDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Update Monitoring Notification", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 848, + "props": [ + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "string", + "value": "Note: It can take several minutes for resources to be deployed to Datadog. Please wait before validating.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 862, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "validateDatadogResources", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "validateResources", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "mfe": "maas-ops-react", + "lineNumber": 888, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 88, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 89, + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 92, + "props": [ + { + "name": "open", + "type": "variable", + "value": "loadingOrgDetails", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "loading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceErrorBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 95, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 114, + "props": [ + { + "name": "checked", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Datadog Monitoring Enabled Checkbox", + "isFunction": false, + "isJSX": false + }, + { + "name": "boldLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Datadog Monitoring Enabled", + "isFunction": false, + "isJSX": false + }, + { + "name": "subTextProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoringEnabledCheckbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 133, + "props": [ + { + "name": "checked", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Datadog Monitoring Proxy Enabled Checkbox", + "isFunction": false, + "isJSX": false + }, + { + "name": "boldLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Datadog Monitoring Proxy Enabled", + "isFunction": false, + "isJSX": false + }, + { + "name": "subTextProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoringProxyEnabledCheckbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 150, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "updateOrgDefaultsButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 167, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "showUpdateDefaultsError", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 11, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 12, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "alignContent" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 59, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 65, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 69, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "agentStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "summary", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "expanded", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 74, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + }, + { + "name": "color", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 87, + "props": [ + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 96, + "props": [ + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 39, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "warnUpdateServicesPagination", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 67, + "props": [ + { + "name": "checked", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Pull Datadog Agent Image", + "isFunction": false, + "isJSX": false + }, + { + "name": "boldLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Pull Datadog Agent Image", + "isFunction": false, + "isJSX": false + }, + { + "name": "subTextProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "PullDatadogAgentImageCheckbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 85, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 88, + "props": [ + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "string", + "value": "Note: solace-datadog-agent version cannot be overridden for k8s services", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 94, + "props": [ + { + "name": "name", + "type": "string", + "value": "SolaceDatadogAgentVersion", + "isFunction": false, + "isJSX": false + }, + { + "name": "placeholder", + "type": "string", + "value": "Enter to override Production Datadog Agent Version", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "string", + "value": "Overrides solace-datadog-agent image version, default: latest", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "SolaceDatadogAgentVersionTextBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 104, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "updateServicesMonitoringConfigButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 111, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Update Services Monitoring Configurations", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 131, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 132, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTag", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 915, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTag", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 923, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 931, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 956, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1018, + "props": [ + { + "name": "checked", + "type": "variable", + "value": "checked", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "name", + "type": "variable", + "value": "propertyName", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly", + "isFunction": false, + "isJSX": false + }, + { + "name": "indeterminate", + "type": "variable", + "value": "indeterminate", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTag", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1040, + "props": [ + { + "name": "clickable", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTag", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1052, + "props": [ + { + "name": "clickable", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1080, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceDetails", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceErrorBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1278, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "fetchServiceErrorBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1285, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "openDatadogProxyDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1297, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1298, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1299, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1300, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1303, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1306, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1309, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1312, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1319, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "openAgentStatusDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1363, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSearchAndFilter", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1364, + "props": [ + { + "name": "id", + "type": "string", + "value": "searchAndFilterID", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchByInfrastructureId", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "searchInfrastructureId", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "250px", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByInfrastructureId", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1377, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "serviceColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "serviceRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectedRowIds", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "ServiceMonitoringSettingsTable", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1390, + "props": [ + { + "name": "activePage", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "adminServiceResponseIsLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 849, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "justifyContent" + ] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 850, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 851, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "paddingTop" + ] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 855, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "display", + "alignItems" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 856, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "paddingTop", + "whiteSpace", + "display", + "flexDirection" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 866, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "whiteSpace" + ] + } + }, + { + "componentName": "SolaceList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 872, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 873, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 874, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "orgIdField", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Organization Id", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "orgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "orgIdField", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 876, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 877, + "props": [ + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "apiKeyField", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "API Key", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "apiKeyTextField", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 886, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 887, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 888, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "orgNameField", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Organization Display Name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "orgNameField", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 896, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 897, + "props": [ + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "appKeyField", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "APP Key", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "appKeyTextField", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 910, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "paddingBottom", + "paddingTop" + ] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 933, + "props": [ + { + "name": "checked", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Managed by RMMS Checkbox", + "isFunction": false, + "isJSX": false + }, + { + "name": "largeLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Managed by RMMS", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "rmmsManaged", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 953, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "updateRMMSSettingsButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 960, + "props": [ + { + "name": "name", + "type": "string", + "value": "ddSubOrgName", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Datadog Sub-Org Name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "subOrgName", + "isFunction": false, + "isJSX": false + }, + { + "name": "placeholder", + "type": "string", + "value": "Enter Datadog Sub-Org name", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "ddSubOrgNameTextBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "50%", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxLength", + "type": "number", + "value": 32, + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "variable", + "value": "subOrgNameInvalid", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 981, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "configureNewDDSubOrgButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "createNewDatadogSuborg", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createDatadogSuborgLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1011, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1019, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1026, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "paddingTop" + ] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1040, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "validateAPIKeysButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "validateKeys", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1071, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "createInsightsRolesButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "createInsightsRoles", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1105, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1106, + "props": [ + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1131, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1133, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1138, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/995065871/PE+Enable+PubSub+Insights#PE%3AEnablePubSub%2BInsights-SettinguptheDatadogSubOrgintegrations", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1144, + "props": [ + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1152, + "props": [ + { + "name": "border", + "type": "boolean", + "value": false, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "datadogIntegrationsAccordion", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "expanded", + "type": "variable", + "value": "datadogIntegrationsExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1158, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ddIntegrationColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "ddIntegrationRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "string", + "value": "fit-content", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1180, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "createUpdateLogPipelineButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "pushLogPipelines", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1210, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "pushTestLogButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "pushTestLog", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "pushTestLogLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1235, + "props": [ + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1247, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "manuallyConfigureLogFacetsAccordion", + "isFunction": false, + "isJSX": false + }, + { + "name": "expanded", + "type": "variable", + "value": "manuallyConfigureLogExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "summary", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1252, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1254, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1261, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1263, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "facetsListColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "facetsListRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "string", + "value": "fit-content", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1276, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "string", + "value": "https://docs.datadoghq.com/logs/explorer/facets/#create-facets", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1293, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "validateLogFacetsButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "queryTestLog", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1332, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "justifyContent", + "display", + "flexDirection" + ] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1333, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1334, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "paddingTop", + "marginLeft", + "display", + "flexDirection" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1342, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "width", + "marginRight" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1345, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "width", + "marginRight" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1348, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "width", + "marginRight" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1351, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1375, + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1386, + "props": [ + { + "name": "divider", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToggle", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1387, + "props": [ + { + "name": "name", + "type": "string", + "value": "profileToggle", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOn", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1393, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "marginRight", + "width" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1396, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "marginRight", + "width" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1399, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "marginRight", + "width" + ] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1409, + "props": [ + { + "name": "name", + "type": "string", + "value": "alertHandles", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Alert Handles", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1424, + "props": [ + { + "name": "name", + "type": "string", + "value": "warningHandles", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Warning Handles", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1439, + "props": [ + { + "name": "name", + "type": "string", + "value": "recoveryHandles", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Recovery Handles", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1464, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "updateDDHandlesAndResourcesButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1500, + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1514, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "validateMonitorsDashboardsButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "validateDatadogResources", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1555, + "props": [ + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1566, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "enableInsightsPolicyButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "enableInsightsPolicy", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1600, + "props": [ + { + "name": "name", + "type": "string", + "value": "inviteUsersInput", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Provide a list of comma-separated solace.com email addresses", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "adminUsersList", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "inviteUsersTextBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "60%", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1611, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "submit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "inviteAdminUsersButton", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "inviteAdminUsersLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1639, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1656, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "showUpdateMonitoringNotificationConfirmation", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1679, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "showInvalidHandlesDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 54, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "cleanModal", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "WARNING", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "string", + "value": "Are you sure you want to perform database cleanup?", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 63, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "syncModal", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "WARNING", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "string", + "value": "Heavy database operation will be executed. Are you sure you want to proceed?", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 136, + "props": [ + { + "name": "key", + "type": "variable", + "value": "key", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onDelete", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 154, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 155, + "props": [ + { + "name": "value", + "type": "variable", + "value": "search", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Filter By", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "filter by", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "250px", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 164, + "props": [ + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Search", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "search", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "375px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "endAdornment", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 173, + "props": [ + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Page Size", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "page size", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "125px", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 186, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "my", + "type": "number", + "value": 1.5, + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 190, + "props": [ + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "jobs", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "jobsLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "memoizedColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 203, + "props": [ + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "variable", + "value": "pageNumber", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "variable", + "value": "jobsCount", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSidePanelLayout", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "mfe": "maas-ops-react", + "lineNumber": 114, + "props": [ + { + "name": "sidePanelWidth", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + }, + { + "name": "showSidePanel", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "sidePanelContent", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "mfe": "maas-ops-react", + "lineNumber": 117, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "plansLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectedRowIds", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 28, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "variable", + "value": "key", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "variable", + "value": "xs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 47, + "props": [ + { + "name": "style", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "marginTop" + ] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 80, + "props": [ + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "string", + "value": "No plan selected", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "string", + "value": "Create or select a listed plan to view its details.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 91, + "props": [ + { + "name": "p", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h2", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "fontWeight" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 95, + "props": [ + { + "name": "p", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowSpacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "columnSpacing", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx", + "mfe": "maas-ops-react", + "lineNumber": 48, + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Update Upgrade Plan", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "string", + "value": "Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx", + "mfe": "maas-ops-react", + "lineNumber": 41, + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Create Plan", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "string", + "value": "Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 19, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "fit-content", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "item", + "isFunction": false, + "isJSX": false + }, + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 118, + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "open", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "contentText", + "type": "string", + "value": "The filter will be applied to the upgrade run, determining the brokers included in that specific run.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 144, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "number", + "value": 0.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 145, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 147, + "props": [ + { + "name": "name", + "type": "string", + "value": "attribute", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "attribute", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 155, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 157, + "props": [ + { + "name": "name", + "type": "string", + "value": "comparison", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "operator", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 165, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 167, + "props": [ + { + "name": "name", + "type": "string", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "placeholder", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fullWidth", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 175, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "textAlign", + "type": "string", + "value": "right", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 177, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "mfe": "maas-ops-react", + "lineNumber": 192, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx", + "mfe": "maas-ops-react", + "lineNumber": 31, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No services returned.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 50, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 52, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 58, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-name", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 69, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 75, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-description", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 86, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 91, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 104, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 105, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 106, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 9, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 109, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "textAlign", + "type": "string", + "value": "right", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 110, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 116, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePageHeader", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 23, + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Upgrade Plans", + "isFunction": false, + "isJSX": false + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 27, + "props": [ + { + "name": "key", + "type": "string", + "value": "create-plan", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx", + "mfe": "maas-ops-react", + "lineNumber": 32, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Delete Plan", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "string", + "value": "Deleting this plan will delete any runs, groups, and associated data using this plan. They will be permanently removed from the system.", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "mfe": "maas-ops-react", + "lineNumber": 37, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Post-Upgrade Check Results", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "mfe": "maas-ops-react", + "lineNumber": 46, + "props": [ + { + "name": "mb", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "mfe": "maas-ops-react", + "lineNumber": 52, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 32, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 35, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 38, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 44, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred triggering the Post-Upgrade Checks. Contact @sc-launch-pad for support.", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading Post-Upgrade Check results...", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 36, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 39, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 42, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 48, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred triggering the Pre-Upgrade Checks. Contact @sc-launch-pad for support.", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading Pre-Upgrade Check results...", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 38, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 41, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 44, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 50, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred retrieving the upgrade logs. Contact @sc-launch-pad for support.", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading upgrade logs...", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 46, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Upgrade Logs", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "mfe": "maas-ops-react", + "lineNumber": 38, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Pre-Upgrade Check Results", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "mfe": "maas-ops-react", + "lineNumber": 47, + "props": [ + { + "name": "mb", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "mfe": "maas-ops-react", + "lineNumber": 53, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "mfe": "maas-ops-react", + "lineNumber": 16, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "mfe": "maas-ops-react", + "lineNumber": 17, + "props": [ + { + "name": "required", + "type": "variable", + "value": "required", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "variable", + "value": "id", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "mfe": "maas-ops-react", + "lineNumber": 24, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 6, + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "fit-content", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "mfe": "maas-ops-react", + "lineNumber": 25, + "props": [ + { + "name": "required", + "type": "variable", + "value": "required", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "variable", + "value": "id", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 11, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 12, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 14, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 16, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 18, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 20, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 22, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 24, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 26, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 31, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 33, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 37, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 39, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 42, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 44, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 62, + "props": [ + { + "name": "hover", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionChange", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "summary", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "dataQa", + "type": "string", + "value": "upgrade-run-details", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 69, + "props": [ + { + "name": "p", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx", + "mfe": "maas-ops-react", + "lineNumber": 45, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 101, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 239, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "pb", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 242, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxHeight", + "type": "string", + "value": "75vh", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx", + "mfe": "maas-ops-react", + "lineNumber": 37, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx", + "mfe": "maas-ops-react", + "lineNumber": 29, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx", + "mfe": "maas-ops-react", + "lineNumber": 74, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 39, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 40, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 43, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 53, + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePageHeader", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 60, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 78, + "props": [ + { + "name": "title", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "backgroundColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 82, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "number", + "value": 14, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 83, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "variable", + "value": "peNotificationStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 93, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "variable", + "value": "key", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 103, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "string", + "value": "30px", + "isFunction": false, + "isJSX": false + }, + { + "name": "pr", + "type": "string", + "value": "32px", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 104, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "alignContent" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 106, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 109, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "mfe": "maas-ops-react", + "lineNumber": 79, + "props": [ + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "string", + "value": "Failed to fetch upgrade run", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "string", + "value": "Run data could not be retrieved. It may have been deleted or does not exist.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "mfe": "maas-ops-react", + "lineNumber": 97, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "string", + "value": "Upgrade has been paused. Verify upgrade status before proceeding. In progress operations will complete.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "mfe": "maas-ops-react", + "lineNumber": 103, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "string", + "value": "Upgrade has been cancelled. In progress operations will complete.", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePageHeader", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 23, + "props": [ + { + "name": "title", + "type": "string", + "value": "Upgrades", + "isFunction": false, + "isJSX": false + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "mfe": "maas-ops-react", + "lineNumber": 27, + "props": [ + { + "name": "key", + "type": "string", + "value": "manage-upgrade-button", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "create", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "mfe": "maas-ops-react", + "lineNumber": 75, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "px", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "py", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "mfe": "maas-ops-react", + "lineNumber": 79, + "props": [ + { + "name": "name", + "type": "string", + "value": "Automated Upgrades", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Automated Upgrades", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "autoChecked", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "mfe": "maas-ops-react", + "lineNumber": 83, + "props": [ + { + "name": "name", + "type": "string", + "value": "Customer Upgrades", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Customer Upgrades", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "customerChecked", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 84, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "pr", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 86, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 92, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "run-description", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 103, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 6, + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 109, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "maxHeight", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 115, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 118, + "props": [ + { + "name": "title", + "type": "string", + "value": "Plan Description", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 119, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 126, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "auto", + "isFunction": false, + "isJSX": false + }, + { + "name": "ml", + "type": "string", + "value": "1px", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 127, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 6, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 129, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 135, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxHeight", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 148, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 6, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 150, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 156, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx", + "mfe": "maas-ops-react", + "lineNumber": 33, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Schedule Upgrade Run", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx", + "mfe": "maas-ops-react", + "lineNumber": 31, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Delete Upgrade Run", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "string", + "value": "Are you sure you want to delete this upgrade run? This action cannot be undone.", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 111, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 162, + "props": [ + { + "name": "mr", + "type": "number", + "value": 6, + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToggleButtonGroup", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 165, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterTriggerType", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByTriggerType", + "isFunction": false, + "isJSX": false + }, + { + "name": "options", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 185, + "props": [ + { + "name": "name", + "type": "string", + "value": "hideCompletedRuns", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "hideCompletedRuns", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "hide-completed-runs", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 191, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 194, + "props": [ + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "setCreateOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "schedule-upgrade-run", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 205, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 220, + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxHeight", + "type": "string", + "value": "75vh", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "runsLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "showEmptyState", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 233, + "props": [ + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "string", + "value": "No scheduled upgrade runs", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "string", + "value": "No upgrade runs returned. Open the create modal to schedule based off an existing Plan.", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "mfe": "maas-ops-react", + "lineNumber": 35, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Default", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "mfe": "maas-ops-react", + "lineNumber": 39, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "production-env", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Production", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceEnvironmentLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "mfe": "maas-ops-react", + "lineNumber": 169, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fgColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "bgColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "icon", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "mfe": "maas-ops-react", + "lineNumber": 191, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Close", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "mfe": "maas-ops-react", + "lineNumber": 196, + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxItems", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "onRouteClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "paths", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "mfe": "maas-ops-react", + "lineNumber": 222, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "COLUMNS", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "rows", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDatePicker", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 95, + "props": [ + { + "name": "onClear", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "disableFuture", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "timezone", + "type": "string", + "value": "UTC", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 102, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "fontSize" + ] + } + }, + { + "componentName": "SolaceDatePicker", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 103, + "props": [ + { + "name": "onClear", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "disableFuture", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "timezone", + "type": "string", + "value": "UTC", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 120, + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard", + "isFunction": false, + "isJSX": false + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 143, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Close", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 153, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 156, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 157, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 176, + "props": [ + { + "name": "details", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 170, + "props": [ + { + "name": "showEmptyState", + "type": "variable", + "value": "showEmptyState", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 180, + "props": [ + { + "name": "details", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLearningBanner", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 21, + "props": [ + { + "name": "backgroundColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 22, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 23, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 24, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 32, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 33, + "props": [ + { + "name": "marginTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "marginBottom", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 44, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 45, + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "string", + "value": "500", + "isFunction": false, + "isJSX": false + }, + { + "name": "textAlign", + "type": "string", + "value": "right", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDatePicker", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts", + "mfe": "maas-ops-react", + "lineNumber": 1, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 56, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 65, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 96, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "tableCols", + "isFunction": false, + "isJSX": false + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 105, + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "activePage", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setActivePage", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 15, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "variable", + "value": "title", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx", + "mfe": "maas-ops-react", + "lineNumber": 27, + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 96, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 107, + "props": [ + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 109, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 112, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 129, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 138, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "size", + "type": "string", + "value": "xxs", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "TLS Disabled", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 150, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 159, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 175, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "size", + "type": "string", + "value": "xxs", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Not Latest", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 434, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "errorMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "showCloseButton", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClose", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 443, + "props": [ + { + "name": "data-testid", + "type": "string", + "value": "filter-by", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "mb", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 455, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "gap", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 457, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "label", + "type": "string", + "value": "Not Latest", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 463, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 472, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 481, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "...", + "type": "spread", + "isSpread": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 489, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 490, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 493, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 494, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "fontSize", + "color" + ] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 501, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 504, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 511, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds", + "isFunction": false, + "isJSX": false + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "managementAgentsIsLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 526, + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "activePage", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "managementAgentsIsLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setActivePage", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 212, + "props": [ + { + "name": "columns", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "noop", + "isFunction": false, + "isJSX": false + }, + { + "name": "loadingMessage", + "type": "variable", + "value": "customErrorMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "variable", + "value": "customErrorMessage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 222, + "props": [ + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setPage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 131, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "search-page-form", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 132, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 135, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 11, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 11, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 136, + "props": [ + { + "name": "name", + "type": "string", + "value": "searchFor", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "searchBoxChangeHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "search-for-textbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 142, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 145, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 11, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 11, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 146, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 147, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 148, + "props": [ + { + "name": "name", + "type": "string", + "value": "all", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "search-all-checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 156, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 157, + "props": [ + { + "name": "name", + "type": "string", + "value": "infrastructure", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "infra", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "search-infra-checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 165, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 166, + "props": [ + { + "name": "name", + "type": "string", + "value": "organization", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "orgs", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "search-orgs-checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 174, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 175, + "props": [ + { + "name": "name", + "type": "string", + "value": "service", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "services", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "search-services-checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 183, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 184, + "props": [ + { + "name": "name", + "type": "string", + "value": "user", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "users", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "search-users-checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 195, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 196, + "props": [ + { + "name": "name", + "type": "string", + "value": "useGlobalSearch", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "checked", + "type": "variable", + "value": "globalSearchEnabled", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-global-search-checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 210, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "margin" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 213, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 16, + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "open", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Service Package Details", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 29, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor", + "isFunction": false, + "isJSX": false + }, + { + "name": "mode", + "type": "string", + "value": "json", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 142, + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "variable", + "value": "actions", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "open", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Edit Service Package", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 145, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 150, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "editForm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 159, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 176, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 193, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 220, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 238, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 249, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 5.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 253, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 254, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 5.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 56, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "variable", + "value": "xs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 58, + "props": [ + { + "name": "required", + "type": "variable", + "value": "required", + "isFunction": false, + "isJSX": false + }, + { + "name": "bold", + "type": "variable", + "value": "bold", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "variable", + "value": "id", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 95, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "variable", + "value": "xs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeValuePairForm", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 107, + "props": [ + { + "name": "id", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "avpList", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value", + "isFunction": false, + "isJSX": false + }, + { + "name": "keyRequired", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Key should exist with the value", + "isFunction": false, + "isJSX": false + }, + { + "name": "onAVPListUpdate", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disableReorder", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextArea", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 136, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 148, + "props": [ + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 214, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 288, + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "open", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Create Service Package", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 309, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 313, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "createForm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 316, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 321, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 326, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 334, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 339, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 343, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 5.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 347, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "mfe": "maas-ops-react", + "lineNumber": 348, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 5.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 99, + "props": [ + { + "name": "actions", + "type": "variable", + "value": "actions", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Delete Service Package", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 101, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 105, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 110, + "props": [ + { + "name": "name", + "type": "string", + "value": "confirmationBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "confirmationText", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmationBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "label", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "autoFocus", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 116, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 32, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "variable", + "value": "xs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 80, + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "open", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Release New Service Package", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 99, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 100, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "releaseDialog", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 124, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 127, + "props": [ + { + "name": "id", + "type": "string", + "value": "metadata", + "isFunction": false, + "isJSX": false + }, + { + "name": "bold", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 131, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "editMetadata", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 147, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "mfe": "maas-ops-react", + "lineNumber": 153, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "releaseNotesError", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "string", + "value": "Release Notes should be provided", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 375, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 376, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 380, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 381, + "props": [ + { + "name": "label", + "type": "string", + "value": "Latest", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 513, + "props": [ + { + "name": "open", + "type": "variable", + "value": "loadingInfrastructures", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 528, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "create", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 536, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 537, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 538, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "search", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "search", + "isFunction": false, + "isJSX": false + }, + { + "name": "placeholder", + "type": "string", + "value": "Search by event broker version", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "400px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "search", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "customIcon", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 552, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMenu", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 553, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMenu", + "isFunction": false, + "isJSX": false + }, + { + "name": "buttonProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": false, + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 623, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "ml", + "type": "string", + "value": "auto", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 624, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 629, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 0, + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "mb", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 632, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "variable", + "value": "value", + "isFunction": false, + "isJSX": false + }, + { + "name": "mr", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 633, + "props": [ + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onDelete", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 642, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 643, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 649, + "props": [ + { + "name": "hasColumnHiding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columnsDef", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loadingServicePackages", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxHeight", + "type": "string", + "value": "calc(100vh - 17.25rem)", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 662, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "justifyContent", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 663, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "mfe": "maas-ops-react", + "lineNumber": 664, + "props": [ + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "variable", + "value": "page", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loadingServicePackages", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "mfe": "maas-ops-react", + "lineNumber": 91, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "mfe": "maas-ops-react", + "lineNumber": 98, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "mfe": "maas-ops-react", + "lineNumber": 13, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "mfe": "maas-ops-react", + "lineNumber": 19, + "props": [ + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "mfe": "maas-ops-react", + "lineNumber": 36, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "successMsgBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "success", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 132, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 137, + "props": [ + { + "name": "textAlign", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 152, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeNameQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 400, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 155, + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": 400, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 161, + "props": [ + { + "name": "textAlign", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 163, + "props": [ + { + "name": "id", + "type": "string", + "value": "quantityTextfieldId", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "quantityTextfield", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "prodQuantityValue", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "100%", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "quantityTextfieldQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 183, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "string", + "value": "prodRateSet", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "prodRateSet", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProdRateSetChange", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "prodRateSetDropdownQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 26, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 64, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productHeaderQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 67, + "props": [ + { + "name": "mt", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 75, + "props": [ + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "color", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 80, + "props": [ + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 84, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 91, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 109, + "props": [ + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "variant", + "type": "string", + "value": "success", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "prodValidatedMessageQa", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 112, + "props": [ + { + "name": "pr", + "type": "number", + "value": 0.5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 129, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "string", + "value": "productConsumptionType", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "productConsumptionType", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProdConsumptionChange", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "productType", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "450px", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "productConsumptionDropdownQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 157, + "props": [ + { + "name": "className", + "type": "string", + "value": "label", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 158, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 25, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "success", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 29, + "props": [ + { + "name": "id", + "type": "string", + "value": "requestCheckbox", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "requestCheckbox", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "requestCheckboxQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "subTextProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "variable", + "value": "isFieldReadOnly", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 63, + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "color" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 53, + "props": [ + { + "name": "mt", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 54, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 7, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 55, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 56, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "color" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 58, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 59, + "props": [ + { + "name": "direction", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 61, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "string", + "value": "number", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "number", + "value": 5, + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "width", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 84, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 85, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 9, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 86, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 90, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 91, + "props": [ + { + "name": "textAlign", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 25, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "exitFormQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExitFormButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 29, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewSaveFormQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isFieldReadOnly", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 190, + "props": [ + { + "name": "fontSize", + "type": "number", + "value": 16, + "isFunction": false, + "isJSX": false + }, + { + "name": "mb", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 193, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 210, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "orgDetailHeaderQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 218, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 224, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 228, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 235, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 241, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 247, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 258, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 270, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 286, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "accountHeaderQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "number", + "value": 5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCheckBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 290, + "props": [ + { + "name": "checked", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "name", + "type": "string", + "value": "advInsights", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Advanced Insights Checkbox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 298, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "number", + "value": 5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 306, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 314, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 24, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productHeaderQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "mt", + "type": "number", + "value": 5, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 29, + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": 400, + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingRight", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 34, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 48, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 55, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 60, + "props": [ + { + "name": "textAlign", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 93, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeNameQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 400, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 99, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "float" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 279, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 283, + "props": [ + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "orgDisplayName", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "80%", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 303, + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 307, + "props": [ + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "orgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "80%", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasWarnings", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 328, + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 332, + "props": [ + { + "name": "name", + "type": "string", + "value": "accountName", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "80%", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 351, + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 355, + "props": [ + { + "name": "name", + "type": "string", + "value": "accountId", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "80%", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 373, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 374, + "props": [ + { + "name": "name", + "type": "string", + "value": "organizationType", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "string", + "value": "organizationType", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "80%", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "accountTypeDropdown", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 397, + "props": [ + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "supplementalText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "string", + "value": "enterprise", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 410, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 414, + "props": [ + { + "name": "name", + "type": "string", + "value": "costCenter", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "80%", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "costCenterInput", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "mfe": "maas-ops-react", + "lineNumber": 429, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 194, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 195, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 197, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 206, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "filteredProds", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyStateView", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 221, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 240, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 241, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 244, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 246, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 247, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 249, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 11, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 250, + "props": [ + { + "name": "name", + "type": "string", + "value": "domainNameFilter", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnlyProducts", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName", + "isFunction": false, + "isJSX": false + }, + { + "name": "placeholder", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "number", + "value": 155, + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "100%", + "isFunction": false, + "isJSX": false + }, + { + "name": "endAdornment", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 261, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 273, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 70, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "success", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 76, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "email", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 92, + "props": [ + { + "name": "helperText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "accountAdminEmail", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "onBlur", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "currentEmailEntry", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "100%", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "accountAdminTextField", + "isFunction": false, + "isJSX": false + }, + { + "name": "required", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 117, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "email", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onDelete", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "mfe": "maas-ops-react", + "lineNumber": 127, + "props": [ + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "addEmailButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "mfe": "maas-ops-react", + "lineNumber": 1, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "mfe": "maas-ops-react", + "lineNumber": 1, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "mfe": "maas-ops-react", + "lineNumber": 29, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "loading-message", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "mfe": "maas-ops-react", + "lineNumber": 37, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "no-results-message", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "mfe": "maas-ops-react", + "lineNumber": 47, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "string", + "value": "500", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "mfe": "maas-ops-react", + "lineNumber": 52, + "props": [ + { + "name": "key", + "type": "variable", + "value": "type", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "mfe": "maas-ops-react", + "lineNumber": 14, + "props": [ + { + "name": "key", + "type": "variable", + "value": "feature", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "feature", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "mfe": "maas-ops-react", + "lineNumber": 17, + "props": [ + { + "name": "key", + "type": "string", + "value": "more", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "more-features", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "mfe": "maas-ops-react", + "lineNumber": 26, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "no-features", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 117, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 125, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "gutterBottom", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 145, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 146, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 147, + "props": [ + { + "name": "id", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 151, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 152, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 158, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 159, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 160, + "props": [ + { + "name": "id", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 164, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 165, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 176, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "gutterBottom", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 182, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 187, + "props": [ + { + "name": "color", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 196, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "toggleOverrideColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderToggleOverrideRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "isLoadingOverrides", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 212, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "mfe": "maas-ops-react", + "lineNumber": 28, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "mfe": "maas-ops-react", + "lineNumber": 36, + "props": [ + { + "name": "color", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "mfe": "maas-ops-react", + "lineNumber": 57, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "gutterBottom", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "mfe": "maas-ops-react", + "lineNumber": 83, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePageHeader", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 246, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "breadcrumbs", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "tabs", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 248, + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 249, + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabChange", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSidePanelLayout", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx", + "mfe": "maas-ops-react", + "lineNumber": 39, + "props": [ + { + "name": "sidePanelWidth", + "type": "number", + "value": 400, + "isFunction": false, + "isJSX": false + }, + { + "name": "showSidePanel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sidePanelContent", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 30, + "props": [ + { + "name": "key", + "type": "variable", + "value": "feature", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "feature", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 32, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 42, + "props": [ + { + "name": "ref", + "type": "variable", + "value": "ref", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "noWrap", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "variable", + "value": "name", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "maxWidth", + "overflow", + "textOverflow", + "whiteSpace" + ] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 112, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 121, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "variable", + "value": "key", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "variable", + "value": "xs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 128, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 141, + "props": [ + { + "name": "p", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h2", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "fontWeight" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 145, + "props": [ + { + "name": "p", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowSpacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "columnSpacing", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 149, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 161, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 169, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 171, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 186, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 189, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 192, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 202, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 209, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 217, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 219, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "mfe": "maas-ops-react", + "lineNumber": 231, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 81, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 129, + "props": [ + { + "name": "variant", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleClick", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 137, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "confirmation-dialog", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSearchAndFilter", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 214, + "props": [ + { + "name": "name", + "type": "string", + "value": "organizationNameFilter", + "isFunction": false, + "isJSX": false + }, + { + "name": "placeholder", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "type", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameFilterChange", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "425px", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 228, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 235, + "props": [ + { + "name": "color", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 244, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "loading-spinner", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 245, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 259, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFn", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectedRowIds", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 276, + "props": [ + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 154, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshSubOrgs", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 182, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshArtifactVersion", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 209, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshDT", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 337, + "props": [ + { + "name": "href", + "type": "string", + "value": "distributed-tracing", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 345, + "props": [ + { + "name": "href", + "type": "string", + "value": "insights-settings", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 355, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 382, + "props": [ + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Organization Details", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 395, + "props": [ + { + "name": "id", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "mode", + "type": "string", + "value": "json", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 416, + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Refresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 421, + "props": [ + { + "name": "autoFocus", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByOrgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchByOrgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Search By Organization ID", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "500px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "orgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocomplete", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 431, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "filterBy", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "filterBy", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Filter By", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "500px", + "isFunction": false, + "isJSX": false + }, + { + "name": "multiple", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "currentFilters", + "isFunction": false, + "isJSX": false + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemMappingCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel", + "isFunction": false, + "isJSX": false + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider", + "isFunction": false, + "isJSX": false + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual", + "isFunction": false, + "isJSX": false + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 452, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Page Size", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "200px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 474, + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "orgDetails", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loadingOrgs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 488, + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loadingOrgs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 263, + "props": [ + { + "name": "href", + "type": "string", + "value": "insights-settings", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 322, + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Refresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 326, + "props": [ + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/logs?query=service%3Amaas-monitoring%20%40logger_name%3Acom.solace.maas.monitoring.%2A%20%28%40event%3AINSIGHTS_ONBOARDING%20OR%20%40event%3AINSIGHTS_OFFBOARDING%29%20&cols=host%2Cservice&index=%2A&messageDisplay=inline&refresh_mode=sliding&stream_sort=desc&viz=stream&live=true", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 334, + "props": [ + { + "name": "autoFocus", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByOrgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchByOrgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Search By Organization ID", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "500px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "orgId", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocomplete", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 344, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "filterBy", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "filterBy", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Filter By", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "500px", + "isFunction": false, + "isJSX": false + }, + { + "name": "multiple", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "currentFilters", + "isFunction": false, + "isJSX": false + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemMappingCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel", + "isFunction": false, + "isJSX": false + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider", + "isFunction": false, + "isJSX": false + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual", + "isFunction": false, + "isJSX": false + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 365, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Page Size", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "200px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 387, + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "monitoringJobs", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loadingJobs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 401, + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "loadingJobs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToasts", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 410, + "props": [ + { + "name": "severity", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "string", + "value": "Rerun Monitoring Job Failed", + "isFunction": false, + "isJSX": false + }, + { + "name": "open", + "type": "variable", + "value": "showRerunAutomationErrorToast", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClose", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "mfe": "maas-ops-react", + "lineNumber": 1, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 37, + "props": [ + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "string", + "value": "You do not have access to view this tab", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "mfe": "maas-ops-react", + "lineNumber": 71, + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 260, + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 263, + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMenu", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 269, + "props": [ + { + "name": "buttonProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "anchorOrigin", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "transformOrigin", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "variable", + "value": "menuItems", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 286, + "props": [ + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 298, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "mb", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "number", + "value": 500, + "isFunction": false, + "isJSX": false + }, + { + "name": "fontSize", + "type": "number", + "value": 16, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "display", + "alignItems" + ] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 308, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentInfoExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 314, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshDetailsInProgress", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 337, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentStatusExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 343, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshStatusInProgress", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 366, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "serviceInfoExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "string", + "value": "Associated Service", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 372, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentDetailsExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "string", + "value": "Connector Deployment Details", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 176, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 177, + "props": [ + { + "name": "id", + "type": "variable", + "value": "id", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 188, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 191, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 210, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 222, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 244, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 246, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 247, + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 276, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 278, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 279, + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 283, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 284, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 293, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 299, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 359, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 360, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 366, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "refetch", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "retrieve", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 372, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handelCopy", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "copy", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 395, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "expandable", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor", + "isFunction": false, + "isJSX": false + }, + { + "name": "mode", + "type": "string", + "value": "json", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "HelperText", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 401, + "props": [ + { + "name": "details", + "type": "variable", + "value": "details", + "isFunction": false, + "isJSX": false + }, + { + "name": "isFetching", + "type": "variable", + "value": "isFetching", + "isFunction": false, + "isJSX": false + }, + { + "name": "isError", + "type": "variable", + "value": "isError", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 152, + "props": [ + { + "name": "name", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "supplementalText", + "type": "string", + "value": "Current Version", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 177, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Manage Connector Flow Version", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 196, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 200, + "props": [ + { + "name": "mt", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "color" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 203, + "props": [ + { + "name": "mt", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 205, + "props": [ + { + "name": "mt", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "color", + "display" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 207, + "props": [ + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "color" + ] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 209, + "props": [ + { + "name": "name", + "type": "string", + "value": "availableVersions", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "string", + "value": "availableVersions", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "100%", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Available Versions", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "availableVersions", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 256, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorDetails", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 330, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorDetails", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 546, + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "boolean", + "value": false, + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 553, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 565, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 571, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 575, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 625, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Close", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 630, + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxItems", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "onRouteClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "paths", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 655, + "props": [ + { + "name": "open", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 656, + "props": [ + { + "name": "mt", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 659, + "props": [ + { + "name": "mb", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 662, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 668, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "mode", + "type": "string", + "value": "json", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 680, + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "connectors", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 695, + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "variable", + "value": "connectorCount", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "loading", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 706, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Delete Connector", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "mfe": "maas-ops-react", + "lineNumber": 719, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 122, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "email", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 128, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceListItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "mfe": "maas-ops-react", + "lineNumber": 130, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 135, + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 141, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "marginBottom" + ] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 146, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 156, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 168, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 174, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 175, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToasts", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 184, + "props": [ + { + "name": "open", + "type": "variable", + "value": "showToast", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClose", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "toastMessage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 185, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 186, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 187, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "mb" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 192, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 11, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "mfe": "maas-ops-react", + "lineNumber": 193, + "props": [ + { + "name": "headers", + "type": "variable", + "value": "headers", + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "variable", + "value": "items", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping", + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "string", + "value": "250px 1fr 100px 50px", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "platform-notification-contacts-list", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx", + "mfe": "maas-ops-react", + "lineNumber": 14, + "props": [ + { + "name": "mode", + "type": "string", + "value": "protobuf", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTag", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "mfe": "maas-ops-react", + "lineNumber": 88, + "props": [ + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "mfe": "maas-ops-react", + "lineNumber": 123, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "dcTuningstate", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping", + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "variable", + "value": "wanTuningDaemonSetStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "headers", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(100px, 150px) 100px minmax(50px, 150px) minmax(50px, 150px) minmax(120px, 1fr) ", + "isFunction": false, + "isJSX": false + }, + { + "name": "onSelection", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedItemId", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "mfe": "maas-ops-react", + "lineNumber": 135, + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "wanTuningFeaturesTabs", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTabFeature", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToasts", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "mfe": "maas-ops-react", + "lineNumber": 144, + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "severity", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "open", + "type": "variable", + "value": "showErrorToast", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClose", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTag", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 64, + "props": [ + { + "name": "key", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 127, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "variable", + "value": "loadingVariant", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 129, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "mfe": "maas-ops-react", + "lineNumber": 133, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "service-tier-grid-list", + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "variable", + "value": "wanTuningPodStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping", + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "string", + "value": "200px 90px 400px 400px 400px", + "isFunction": false, + "isJSX": false + }, + { + "name": "headers", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToggle", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx", + "mfe": "maas-ops-react", + "lineNumber": 816, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "isOn", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "datacenterVisibility", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Visible", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToggle", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx", + "mfe": "maas-ops-react", + "lineNumber": 832, + "props": [ + { + "name": "...", + "type": "spread", + "isSpread": true + }, + { + "name": "name", + "type": "string", + "value": "datacenterAvailability", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Available", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 351, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 494, + "props": [ + { + "name": "open", + "type": "variable", + "value": "datacenterLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "loading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 501, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 509, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 514, + "props": [ + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleSelectionChangedCallback", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columnsDef", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "mfe": "maas-ops-react", + "lineNumber": 527, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "info", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "note", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 102, + "props": [ + { + "name": "title", + "type": "string", + "value": "Import From Datacenter", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "variable", + "value": "actions", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 109, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneError", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 117, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "sameDCError", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 126, + "props": [ + { + "name": "bold", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "string", + "value": "currentDatacenterIdField", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 131, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "datacenterId", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "datacenterId", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 134, + "props": [ + { + "name": "bold", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "required", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "id", + "type": "string", + "value": "sourceDatacenterIdField", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 139, + "props": [ + { + "name": "inlineLabel", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "required", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "placeholder", + "type": "string", + "value": "Type a datacenter ID ...", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "sourceDatacenterId", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "sourceDatacenterId", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "selectedDatacenterId", + "isFunction": false, + "isJSX": false + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 206, + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 226, + "props": [ + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 242, + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs", + "isFunction": false, + "isJSX": false + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 247, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "padding" + ] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 248, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "md", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 249, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "addBrokerButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 265, + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "brokerCompatibilityActionMenuItems", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 278, + "props": [ + { + "name": "activePage", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 290, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sm", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "md", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 291, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "addCollectorButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 307, + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "rows", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "helmChartCompatibilityActionMenuItems", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "helmChartCompatibilityIsLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "mfe": "maas-ops-react", + "lineNumber": 320, + "props": [ + { + "name": "activePage", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "totalResults", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 106, + "props": [ + { + "name": "label", + "type": "string", + "value": "Up to Date", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 112, + "props": [ + { + "name": "label", + "type": "string", + "value": "Out of Date", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "mfe": "maas-ops-react", + "lineNumber": 147, + "props": [ + { + "name": "items", + "type": "variable", + "value": "tracingProfile", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping", + "isFunction": false, + "isJSX": false + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": 10, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "tracing-destinations-table", + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(5px, 15px) minmax(120px, 300px) minmax(120px, 1fr) minmax(120px, 150px) 150px", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 90, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStackLabel", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 91, + "props": [ + { + "name": "id", + "type": "variable", + "value": "id", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 102, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 105, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 120, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 122, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 135, + "props": [ + { + "name": "container", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGrid", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 141, + "props": [ + { + "name": "item", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "xs", + "type": "number", + "value": 12, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 204, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "refetch", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "retrieve", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 210, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handelCopy", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "copy", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 233, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "expandable", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor", + "isFunction": false, + "isJSX": false + }, + { + "name": "mode", + "type": "string", + "value": "json", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "helperText", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "hasErrors", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "HelperText", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "mfe": "maas-ops-react", + "lineNumber": 239, + "props": [ + { + "name": "configs", + "type": "variable", + "value": "configs", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 117, + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 120, + "props": [ + { + "name": "id", + "type": "string", + "value": "distributedTracingBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxItems", + "type": "number", + "value": 4, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "distributedTracingBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "onRouteClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "paths", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceDetailMessage", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 150, + "props": [ + { + "name": "msgImg", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 161, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "collectorInfoExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 167, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCollectorInfoRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshInProgress", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 185, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "serviceInfoExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "string", + "value": "Associated Service", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAccordion", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "mfe": "maas-ops-react", + "lineNumber": 191, + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "collectorConfigExpand", + "isFunction": false, + "isJSX": false + }, + { + "name": "summary", + "type": "string", + "value": "Collector Configuration", + "isFunction": false, + "isJSX": false + }, + { + "name": "details", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 83, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 111, + "props": [ + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 159, + "props": [ + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + }, + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 222, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "collectorDetails", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 317, + "props": [ + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Refresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 485, + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "boolean", + "value": false, + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 501, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "jsx", + "isFunction": false, + "isJSX": true + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 508, + "props": [ + { + "name": "dense", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 543, + "props": [ + { + "name": "onClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Close", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBreadcrumb", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 548, + "props": [ + { + "name": "id", + "type": "string", + "value": "distributedTracingBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxItems", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "distributedTracingBreadcrumb", + "isFunction": false, + "isJSX": false + }, + { + "name": "onRouteClick", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "paths", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceBackDrop", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 573, + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 580, + "props": [ + { + "name": "items", + "type": "variable", + "value": "noItemsFound", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "emptyRowMapping", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "empty-tracing-destinations-table", + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 593, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCodeEditor", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 599, + "props": [ + { + "name": "readOnly", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "mode", + "type": "string", + "value": "json", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 607, + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows", + "isFunction": false, + "isJSX": false + }, + { + "name": "columns", + "type": "variable", + "value": "columns", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions", + "isFunction": false, + "isJSX": false + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "mfe": "maas-ops-react", + "lineNumber": 620, + "props": [ + { + "name": "isOpen", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Delete Collector", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 107, + "props": [ + { + "name": "title", + "type": "string", + "value": "Modify collector", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isPerformingRequest", + "isFunction": false, + "isJSX": false + }, + { + "name": "contentText", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 139, + "props": [ + { + "name": "variant", + "type": "string", + "value": "success", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "successMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "successMsgBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMessageBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 141, + "props": [ + { + "name": "variant", + "type": "string", + "value": "error", + "isFunction": false, + "isJSX": false + }, + { + "name": "showIcon", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "message", + "type": "variable", + "value": "errorMessage", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceRadioGroup", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 142, + "props": [ + { + "name": "name", + "type": "string", + "value": "collectorRadioGroup", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "inline", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "required", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceRadio", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 149, + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Upgrade", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "Upgrade", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "upgrade", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceRadio", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 150, + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Rollback", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "Rollback", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "rollback", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceRadio", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 157, + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Redeploy", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "Redeploy", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "redeploy", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 162, + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Image Tag", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "imageTag", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Image Tag", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "imageTag", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "imageTag", + "isFunction": false, + "isJSX": false + }, + { + "name": "required", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTextField", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "mfe": "maas-ops-react", + "lineNumber": 173, + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Helm Chart Version", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "helmChartVersion", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Helm Chart Version", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "helmChartVersion", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "helmChartVersion", + "isFunction": false, + "isJSX": false + }, + { + "name": "required", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/utils/helper.tsx", + "mfe": "infra", + "lineNumber": 15, + "props": [ + { + "name": "href", + "type": "variable", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "openLinkInNewTab", + "type": "boolean", + "value": false, + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceConfirmationDialog", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/common/components/ErrorDialog.tsx", + "mfe": "infra", + "lineNumber": 53, + "props": [ + { + "name": "title", + "type": "string", + "value": "An error occurred", + "isFunction": false, + "isJSX": false + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "string", + "value": "md", + "isFunction": false, + "isJSX": false + }, + { + "name": "actions", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "error-dialog", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/common/components/CommonAppBar.tsx", + "mfe": "infra", + "lineNumber": 19, + "props": [ + { + "name": "label", + "type": "string", + "value": "BETA", + "isFunction": false, + "isJSX": false + }, + { + "name": "size", + "type": "string", + "value": "xs", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx", + "mfe": "infra", + "lineNumber": 53, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleShowExportDialog", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "exportCSVButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceChip", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 46, + "props": [ + { + "name": "clickable", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDeleteFunc", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQaId", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 151, + "props": [ + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "marginX", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 152, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 153, + "props": [ + { + "name": "width", + "type": "string", + "value": "270px", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "searchBySelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchBySelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "searchByOption", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchByOptions", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSearchAndFilter", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 167, + "props": [ + { + "name": "id", + "type": "string", + "value": "searchBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "searchBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "searchBox", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "400px", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "searchTerm", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "type", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 177, + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon", + "isFunction": false, + "isJSX": false + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 185, + "props": [ + { + "name": "variant", + "type": "string", + "value": "text", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAllFilters", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 194, + "props": [ + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "paddingLeft" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 195, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingTop", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingBottom", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 196, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + }, + { + "name": "paddingBottom", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocomplete", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 197, + "props": [ + { + "name": "multiple", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "cloudProvider", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Cloud Provider", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "cloudProviderSelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "300px", + "isFunction": false, + "isJSX": false + }, + { + "name": "options", + "type": "variable", + "value": "filteredCloudProviderOptions", + "isFunction": false, + "isJSX": false + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel", + "isFunction": false, + "isJSX": false + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterCloudProviderOptions", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemMappingCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "filteredCloudProviders", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloudProviderChange", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocomplete", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 210, + "props": [ + { + "name": "multiple", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "k8sVersion", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "Kubernetes Version", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "k8sVersionSelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "width", + "type": "string", + "value": "300px", + "isFunction": false, + "isJSX": false + }, + { + "name": "options", + "type": "variable", + "value": "filteredK8sVersionOptions", + "isFunction": false, + "isJSX": false + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel", + "isFunction": false, + "isJSX": false + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterK8sVersionOptions", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem", + "isFunction": false, + "isJSX": false + }, + { + "name": "itemMappingCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "filteredK8sVersions", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "variable", + "value": "handleK8sVersionChange", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelect", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 223, + "props": [ + { + "name": "width", + "type": "string", + "value": "250px", + "isFunction": false, + "isJSX": false + }, + { + "name": "name", + "type": "string", + "value": "eolStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "string", + "value": "End of Life Status", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "eolStatusSelect", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "endOfLifeStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "onChange", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "mfe": "infra", + "lineNumber": 4, + "props": [], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "mfe": "infra", + "lineNumber": 28, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceAttributeBadge", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "mfe": "infra", + "lineNumber": 49, + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "clustersListStatus", + "isFunction": false, + "isJSX": false + }, + { + "name": "label", + "type": "variable", + "value": "state", + "isFunction": false, + "isJSX": false + }, + { + "name": "fillColor", + "type": "variable", + "value": "fillColor", + "isFunction": false, + "isJSX": false + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "mfe": "infra", + "lineNumber": 109, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ClusterListTableColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort", + "isFunction": false, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No clusters found", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "mfe": "infra", + "lineNumber": 120, + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "totalClusterLength", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "variable", + "value": "pageNumber", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 26, + "props": [ + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "maxWidth", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "", + "isFunction": false, + "isJSX": false + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between", + "isFunction": false, + "isJSX": false + }, + { + "name": "bgcolor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "flex", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "border", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "borderRadius", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "borderColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 39, + "props": [ + { + "name": "align", + "type": "string", + "value": "left", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "fontWeight", + "type": "string", + "value": "bold", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 45, + "props": [ + { + "name": "align", + "type": "string", + "value": "right", + "isFunction": false, + "isJSX": false + }, + { + "name": "noWrap", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 48, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5", + "isFunction": false, + "isJSX": false + }, + { + "name": "marginTop", + "type": "string", + "value": "auto", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 50, + "props": [ + { + "name": "align", + "type": "string", + "value": "right", + "isFunction": false, + "isJSX": false + }, + { + "name": "noWrap", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 51, + "props": [ + { + "name": "align", + "type": "string", + "value": "right", + "isFunction": false, + "isJSX": false + }, + { + "name": "noWrap", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "mfe": "infra", + "lineNumber": 86, + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "clusters-summary", + "isFunction": false, + "isJSX": false + }, + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 3, + "isFunction": false, + "isJSX": false + }, + { + "name": "margin", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "bgcolor", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "border", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "borderRadius", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "borderColor", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 124, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersTitle", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 129, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersLoadingMessage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceErrorBox", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 134, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "exportErrorBox", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 137, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersSuccessMessage", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceLinearProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 142, + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate", + "isFunction": false, + "isJSX": false + }, + { + "name": "value", + "type": "variable", + "value": "loadingPercentage", + "isFunction": false, + "isJSX": false + }, + { + "name": "height", + "type": "string", + "value": "lg", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 146, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "number", + "value": 1, + "isFunction": false, + "isJSX": false + }, + { + "name": "justifyContent", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "marginTop", + "type": "number", + "value": 2, + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 147, + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "exportCloseButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "mfe": "infra", + "lineNumber": 150, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadCSV", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "exportDownloadButton", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "mfe": "infra", + "lineNumber": 21, + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption", + "isFunction": false, + "isJSX": false + }, + { + "name": "sx", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "color" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "mfe": "infra", + "lineNumber": 22, + "props": [ + { + "name": "data-qa", + "type": "variable", + "value": "dataQa", + "isFunction": false, + "isJSX": false + }, + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePageHeader", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "mfe": "infra", + "lineNumber": 42, + "props": [ + { + "name": "title", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "subTitle", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "breadcrumbs", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "actionMenu", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceMenu", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "mfe": "infra", + "lineNumber": 51, + "props": [ + { + "name": "items", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "buttonProps", + "type": "object", + "isFunction": false, + "isJSX": false + }, + { + "name": "key", + "type": "string", + "value": "cloudProviderLink", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "mfe": "infra", + "lineNumber": 64, + "props": [ + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTabs", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "mfe": "infra", + "lineNumber": 72, + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab", + "isFunction": false, + "isJSX": false + }, + { + "name": "tabs", + "type": "array", + "isFunction": false, + "isJSX": false + }, + { + "name": "onTabClick", + "type": "function", + "isFunction": true, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTable", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "mfe": "infra", + "lineNumber": 72, + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ServiceListTableColumns", + "isFunction": false, + "isJSX": false + }, + { + "name": "rows", + "type": "variable", + "value": "tableData", + "isFunction": false, + "isJSX": false + }, + { + "name": "selectionType", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "sortCallback", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": true, + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "isPending", + "isFunction": false, + "isJSX": false + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No services found", + "isFunction": false, + "isJSX": false + }, + { + "name": "minHeight", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolacePagination", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "mfe": "infra", + "lineNumber": 83, + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "totalCount", + "isFunction": false, + "isJSX": false + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage", + "isFunction": false, + "isJSX": false + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize", + "isFunction": false, + "isJSX": false + }, + { + "name": "loading", + "type": "variable", + "value": "isPending", + "isFunction": false, + "isJSX": false + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "mfe": "infra", + "lineNumber": 45, + "props": [ + { + "name": "variant", + "type": "string", + "value": "link", + "isFunction": false, + "isJSX": false + }, + { + "name": "href", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "mfe": "infra", + "lineNumber": 57, + "props": [ + { + "name": "headers", + "type": "variable", + "value": "headers", + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate", + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "datacenter-list", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 71, + "props": [ + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-status-tab", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 76, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 82, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 83, + "props": [ + { + "name": "direction", + "type": "string", + "value": "row", + "isFunction": false, + "isJSX": false + }, + { + "name": "alignItems", + "type": "string", + "value": "center", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceButton", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 84, + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh", + "isFunction": false, + "isJSX": false + }, + { + "name": "isDisabled", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh-cluster-button", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceCircularProgress", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 92, + "props": [ + { + "name": "size", + "type": "string", + "value": "sm", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceToasts", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "mfe": "infra", + "lineNumber": 108, + "props": [ + { + "name": "message", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "severity", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "onClose", + "type": "function", + "isFunction": true, + "isJSX": false + }, + { + "name": "open", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "mfe": "infra", + "lineNumber": 42, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "mfe": "infra", + "lineNumber": 69, + "props": [ + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-system-components-tab", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "mfe": "infra", + "lineNumber": 74, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "mfe": "infra", + "lineNumber": 78, + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceStack", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "mfe": "infra", + "lineNumber": 50, + "props": [ + { + "name": "direction", + "type": "string", + "value": "column", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "spacing", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-status-tab", + "isFunction": false, + "isJSX": false + }, + { + "name": "style", + "type": "object", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": true, + "overriddenProperties": [ + "backgroundColor", + "border", + "borderRadius" + ] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "mfe": "infra", + "lineNumber": 56, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "mfe": "infra", + "lineNumber": 72, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceTypography", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "mfe": "infra", + "lineNumber": 81, + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3", + "isFunction": false, + "isJSX": false + }, + { + "name": "padding", + "type": "unknown", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + }, + { + "componentName": "SolaceGridList", + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ops-ui/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "mfe": "infra", + "lineNumber": 84, + "props": [ + { + "name": "headers", + "type": "variable", + "value": "subnetHeaders", + "isFunction": false, + "isJSX": false + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "subnetGridTemplate", + "isFunction": false, + "isJSX": false + }, + { + "name": "items", + "type": "unknown", + "isFunction": false, + "isJSX": false + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow", + "isFunction": false, + "isJSX": false + }, + { + "name": "dataQa", + "type": "string", + "value": "subnet-list", + "isFunction": false, + "isJSX": false + } + ], + "customization": { + "styledComponent": false, + "customStyles": false, + "overriddenProperties": [] + } + } + ] + } +} \ No newline at end of file diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/aggregator/dataAggregator.ts b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/aggregator/dataAggregator.ts new file mode 100644 index 000000000..61595756c --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/aggregator/dataAggregator.ts @@ -0,0 +1,190 @@ +import { ComponentUsage, ComponentStats, ReportData, AnalysisConfig, ComponentInstance } from "../types"; + +/** + * Aggregates component usage data into statistics + */ +export class DataAggregator { + /** + * Aggregates component usage data into statistics + * @param usages Array of component usages + * @param config Analysis configuration + * @param allComponents All available MRC components + * @param mrcVersions MRC version information by MFE + * @returns Report data + */ + aggregate( + usages: any[], + config: AnalysisConfig, + allComponents: { name: string; path: string }[], + mrcVersions: Record + ): ReportData { + // Group usages by component name + const usagesByComponent = new Map(); + + for (const usage of usages) { + const { componentName } = usage; + if (!usagesByComponent.has(componentName)) { + usagesByComponent.set(componentName, []); + } + usagesByComponent.get(componentName)!.push(usage); + } + + // Generate component stats + const componentStats: ComponentStats[] = []; + const aggregatedUsages: ComponentUsage[] = []; + + for (const [componentName, componentUsages] of usagesByComponent.entries()) { + const instances: ComponentInstance[] = componentUsages.map((usage) => ({ + filePath: usage.filePath, + line: usage.line, + props: usage.props + })); + + aggregatedUsages.push({ + component: componentName, + count: instances.length, + instances + }); + + // Count usages by MFE + const usagesByMfe: Record = {}; + for (const usage of componentUsages) { + usagesByMfe[usage.mfe] = (usagesByMfe[usage.mfe] || 0) + 1; + } + + // Count prop usage + const propCounts = new Map(); + for (const usage of componentUsages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + + // Get most common props + const commonProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // Get files where the component is used + const files = Array.from(new Set(componentUsages.map((usage) => usage.filePath))); + + // Count customization stats + let styledComponentCount = 0; + let customStylesCount = 0; + const overriddenPropertiesCounts: Record = {}; + + for (const usage of componentUsages) { + if (usage.customization?.styledComponent) { + styledComponentCount++; + } + if (usage.customization?.customStyles) { + customStylesCount++; + } + if (usage.customization?.overriddenProperties) { + for (const prop of usage.customization.overriddenProperties) { + overriddenPropertiesCounts[prop] = (overriddenPropertiesCounts[prop] || 0) + 1; + } + } + } + + // Add component stats + componentStats.push({ + componentName, + totalUsages: componentUsages.length, + usagesByMfe, + commonProps, + files, + customization: { + styledComponentCount, + customStylesCount, + overriddenPropertiesCounts + }, + instances + }); + } + + // Sort component stats by total usages + componentStats.sort((a, b) => b.totalUsages - a.totalUsages); + + // Generate overall stats + const totalUsages = usages.length; + + // Most used components + const mostUsedComponents = componentStats.slice(0, 10).map((stats) => ({ + name: stats.componentName, + count: stats.totalUsages + })); + + // Most used props + const allPropCounts = new Map(); + for (const usage of usages) { + for (const prop of usage.props) { + allPropCounts.set(prop.name, (allPropCounts.get(prop.name) || 0) + 1); + } + } + + const mostUsedProps = Array.from(allPropCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // MFE usage counts + const mfeUsages: Record = {}; + for (const usage of usages) { + mfeUsages[usage.mfe] = (mfeUsages[usage.mfe] || 0) + 1; + } + + // Find unused components + const usedComponentNames = new Set(componentStats.map((s) => s.componentName)); + const unusedComponents = allComponents.filter((comp) => !usedComponentNames.has(comp.name)); + + // Find unused components by MFE + const unusedComponentsByMfe: Record = {}; + // Initialize with all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe] = []; + } + + // For each component, check which MFEs don't use it + for (const component of allComponents) { + const stat = componentStats.find((s) => s.componentName === component.name); + + if (!stat) { + // If component is not used at all, add to all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe].push(component.name); + } + } else { + // If component is used in some MFEs but not others + for (const mfe of config.mfes) { + if (!stat.usagesByMfe[mfe]) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + } + } + + // Generate report data + const reportData: ReportData = { + generatedAt: new Date().toISOString(), + config, + mrcVersions, + componentStats, + unusedComponents, + unusedComponentsByMfe, + overallStats: { + totalUsages, + mostUsedComponents, + mostUsedProps, + mfeUsages, + totalUnusedComponents: unusedComponents.length + }, + rawData: { + componentUsages: aggregatedUsages + } + }; + + return reportData; + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/index.ts b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/index.ts new file mode 100644 index 000000000..99db19c02 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/index.ts @@ -0,0 +1,224 @@ +#!/usr/bin/env node + +import { Command } from "commander"; +import path from "path"; +import chalk from "chalk"; +import fs from "fs"; +import { FileScanner } from "./scanner/fileScanner"; +import { ComponentParser } from "./parser/componentParser"; +import { DataAggregator } from "./aggregator/dataAggregator"; +import { HtmlReporter } from "./reporter/htmlReporter"; +import { AnalysisConfig, MrcSourceType } from "./types"; + +// Define the program +const program = new Command(); + +program + .name("mrc-usage-report") + .description("Generate a report on MRC component usage across MFEs") + .version("1.0.0") + .option("-o, --output ", "Output directory for the report", "./reports") + .option( + "-f, --formats ", + "Comma-separated list of output formats (html, json, csv)", + "html" + ) + .option("-m, --mfes ", "Comma-separated list of MFEs to analyze", "maas-ops-react,infra") + .option("-r, --mrc-path ", "Path to the MRC repository", "../../maas-react-components") + .option("-b, --base-path ", "Base path for the project", process.cwd()) + .option("-s, --source ", "Source type for MRC components (local or github)", "local") + .option("-g, --github", "Use GitHub as the source for MRC components (shorthand for -s github)") + .option( + "--github-url ", + "GitHub repository URL for MRC components", + "https://github.com/SolaceDev/maas-react-components" + ) + .option("--github-branch ", "Branch name for GitHub repository", "main"); + +program.parse(process.argv); + +const options = program.opts(); + +// If -g flag is used, set source type to github +if (options.github) { + options.source = "github"; +} + +// Main function +async function main() { + try { + console.log(chalk.blue("MRC Component Usage Report Generator")); + console.log(chalk.gray("------------------------------------")); + + // Parse options + const mfes = options.mfes + .split(",") + .map((mfe: string) => mfe.trim()) + .filter(Boolean); + const basePath = path.resolve(options.basePath); + const mrcPath = path.resolve(basePath, options.mrcPath); + const outputDir = path.resolve(options.output); + const outputFormats = (options.formats as string).split(",").map((f) => f.trim()) as ( + | "html" + | "json" + | "yaml" + | "csv" + )[]; + const mrcSourceType = options.source as MrcSourceType; + const mrcGithubUrl = options.githubUrl; + const mrcGithubBranch = options.githubBranch; + + // Create config + const config: AnalysisConfig = { + mfes, + mrcPath, + outputDir, + outputFormats, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch + }; + + console.log(chalk.yellow("Configuration:")); + console.log(` Base Path: ${basePath}`); + console.log(` MRC Path: ${mrcPath}`); + console.log(` MFEs: ${mfes.join(", ")}`); + console.log(` Output Directory: ${outputDir}`); + console.log(` Output Formats: ${outputFormats.join(", ")}`); + console.log(` MRC Source Type: ${mrcSourceType}`); + if (mrcSourceType === "github") { + console.log(` MRC GitHub URL: ${mrcGithubUrl}`); + console.log(` MRC GitHub Branch: ${mrcGithubBranch}`); + } + console.log(""); + + // Step 1: Scan for files + console.log(chalk.yellow("Step 1: Scanning for files...")); + const fileScanner = new FileScanner( + basePath, + mfes, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch + ); + const files = await fileScanner.scanForFiles(); + console.log(`Found ${files.length} files to analyze`); + + // Step 2: Scan for MRC components + console.log(chalk.yellow("Step 2: Scanning for MRC components...")); + const allComponents = await fileScanner.scanForMrcComponents(mrcPath); + console.log(`Found ${allComponents.length} MRC component files`); + + // Step 3: Parse files for component usage + console.log(chalk.yellow("Step 3: Parsing files for component usage...")); + const componentParser = new ComponentParser(mrcPath, mrcSourceType); + await componentParser.initialize(allComponents); + + let totalUsages = 0; + const allUsages: any[] = []; + + for (let i = 0; i < files.length; i++) { + const file = files[i]; + const mfe = file.split(path.sep).find((part) => mfes.includes(part)) || ""; + + try { + const usages = await componentParser.parseFile(file, mfe); + totalUsages += usages.length; + allUsages.push(...usages); + + // Log progress every 100 files + if ((i + 1) % 100 === 0 || i === files.length - 1) { + console.log( + ` Processed ${i + 1}/${ + files.length + } files, found ${totalUsages} component usages so far` + ); + } + } catch (error) { + console.error(`Error parsing file ${file}:`, error); + } + } + + console.log(`Found ${totalUsages} total component usages`); + + // Step 4: Detect MRC versions for each MFE + console.log(chalk.yellow("Step 4: Detecting MRC versions...")); + const mrcVersions: Record = {}; + + for (const mfe of mfes) { + try { + const mfePath = path.join(basePath, "micro-frontends", mfe); + const packageJsonPath = path.join(mfePath, "package.json"); + + if (fs.existsSync(packageJsonPath)) { + const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")); + + // Check dependencies and devDependencies + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + + const mrcPackageName = "@SolaceDev/maas-react-components"; + + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${dependencies[mrcPackageName]}`); + } else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${devDependencies[mrcPackageName]}`); + } else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + + // Step 5: Aggregate data + console.log(chalk.yellow("Step 5: Aggregating data...")); + const dataAggregator = new DataAggregator(); + const reportData = dataAggregator.aggregate(allUsages, config, allComponents, mrcVersions); + console.log( + `Generated report data with ${reportData.componentStats.length} component statistics` + ); + console.log(`Found ${reportData.unusedComponents.length} unused components`); + + // Step 5: Generate report + console.log(chalk.yellow("Step 5: Generating report...")); + // Ensure output directory exists + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + for (const format of outputFormats) { + const outputPath = path.join(outputDir, `mrc-maas-ops-ui-usage-report.${format}`); + + if (format === "html") { + const htmlReporter = new HtmlReporter(); + await htmlReporter.generateReport(reportData, outputPath); + console.log(`HTML report generated at ${outputPath}`); + } else if (format === "json") { + const jsonOutput = JSON.stringify(reportData, null, 2); + fs.writeFileSync(outputPath, jsonOutput); + console.log(`JSON report generated at ${outputPath}`); + } else if (format === "csv") { + console.error("CSV format not yet implemented"); + // Do not exit, continue with other formats if any + } else { + console.warn(`Unsupported output format: ${format}. Skipping.`); + } + } + + console.log(chalk.green("Report generation completed successfully!")); + } catch (error) { + console.error(chalk.red("Error generating report:"), error); + process.exit(1); + } +} + +// Run the main function +main(); diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/parser/componentParser.ts b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/parser/componentParser.ts new file mode 100644 index 000000000..3e066a1a4 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/parser/componentParser.ts @@ -0,0 +1,260 @@ +import * as parser from "@babel/parser"; +import traverse from "@babel/traverse"; +import * as t from "@babel/types"; +import fs from "fs"; +import path from "path"; +import { ComponentProp } from "../types"; +import { MrcSourceType } from "../types"; + +// Represents a single found instance of a component +export interface FoundComponentInstance { + componentName: string; + filePath: string; + mfe: string; + lineNumber: number; + props: ComponentProp[]; +} + +/** + * Parses files for MRC component usage + */ +export class ComponentParser { + private mrcComponentNames: Set; + private mrcFileNames: Set; + private mrcPath: string; + private mrcSourceType: MrcSourceType; + private exportNameToFileNameToExportName: Map; // Map + private fileNameToExportName: Map; // Map + + constructor(mrcPath: string, mrcSourceType: MrcSourceType = "local") { + this.mrcPath = mrcPath; + this.mrcSourceType = mrcSourceType; + this.mrcComponentNames = new Set(); + this.mrcFileNames = new Set(); + this.exportNameToFileNameToExportName = new Map(); + this.fileNameToExportName = new Map(); + } + + /** + * Initializes the parser by loading all MRC component names + * @param componentInfo Array of MRC component information with exported names + */ + async initialize(componentInfo: { name: string; path: string }[]): Promise { + for (const component of componentInfo) { + // Get both the exported name and the file name + const exportedName = component.name; + const fileName = path.basename(component.path); + const fileNameWithoutExt = path.parse(fileName).name; + + // Add both to our sets + this.mrcComponentNames.add(exportedName); + this.mrcFileNames.add(fileNameWithoutExt); + + // Create mappings between them + this.exportNameToFileNameToExportName.set(exportedName, fileNameWithoutExt); + this.fileNameToExportName.set(fileNameWithoutExt, exportedName); + } + + console.log(`Loaded ${this.mrcComponentNames.size} MRC component names and ${this.mrcFileNames.size} file names`); + + // Log some examples of the mappings for debugging + let count = 0; + for (const [exportedName, fileName] of this.exportNameToFileNameToExportName.entries()) { + if (exportedName !== fileName) { + console.log(`Export mapping: ${exportedName} -> ${fileName}`); + count++; + if (count >= 5) break; // Just log a few examples + } + } + } + + /** + * Parses a file for MRC component usage + * @param filePath Path to the file to parse + * @param mfe The MFE the file belongs to + * @returns Array of component usages found in the file + */ + async parseFile(filePath: string, mfe: string): Promise { + try { + const content = fs.readFileSync(filePath, "utf-8"); + const usages: FoundComponentInstance[] = []; + + // Parse the file + const ast = parser.parse(content, { + sourceType: "module", + plugins: ["jsx", "typescript", "decorators-legacy"] + }); + + // Track imported MRC components + const importedComponents = new Map(); + // Track imported components that are considered used just by being imported + const importedComponentUsages = new Map(); + + // Traverse the AST + traverse(ast, { + // Find imports from @SolaceDev/maas-react-components + ImportDeclaration: (path) => { + const source = path.node.source.value; + if (source === "@SolaceDev/maas-react-components") { + // Get the line number of the import declaration + const lineNumber = path.node.loc?.start.line || 0; + + path.node.specifiers.forEach((specifier) => { + if (t.isImportSpecifier(specifier) && t.isIdentifier(specifier.imported)) { + const importedName = specifier.imported.name; + const localName = specifier.local.name; + + let componentName = importedName; + let isComponent = false; + + // First check if it's a direct match with an exported name + if (this.mrcComponentNames.has(importedName)) { + isComponent = true; + } + // Then check if it matches a file name and get the corresponding exported name + else if (this.mrcFileNames.has(importedName) && this.fileNameToExportName.has(importedName)) { + componentName = this.fileNameToExportName.get(importedName)!; + isComponent = true; + // console.log(`Found component by file name: ${importedName} -> ${componentName}`); + } + + if (isComponent) { + importedComponents.set(localName, componentName); + + // Consider the component as used just by being imported + // This handles cases where components are imported but not used as JSX elements + importedComponentUsages.set(componentName, { + componentName: componentName, + filePath: filePath, + mfe: mfe, + lineNumber: lineNumber, + props: [] + }); + } + } + }); + } + }, + + // Find JSX elements that use MRC components + JSXOpeningElement: (path) => { + let elementName: string | null = null; + + if (t.isJSXIdentifier(path.node.name)) { + elementName = path.node.name.name; + } else if (t.isJSXMemberExpression(path.node.name)) { + // Handle cases like + elementName = `${(path.node.name.object as t.JSXIdentifier).name}.${ + (path.node.name.property as t.JSXIdentifier).name + }`; + } + + if (elementName) { + let componentName: string | null = null; + // Check if the element name is an imported MRC component + if (importedComponents.has(elementName)) { + componentName = importedComponents.get(elementName)!; + } else if (this.mrcComponentNames.has(elementName)) { + // Direct usage of an MRC component not necessarily imported with a local name + componentName = elementName; + } else if (this.mrcFileNames.has(elementName) && this.fileNameToExportName.has(elementName)) { + // Usage by file name + componentName = this.fileNameToExportName.get(elementName)!; + } + + if (componentName) { + const props: ComponentProp[] = []; + + // Extract props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name)) { + const propName = attr.name.name; + let propType = "unknown"; + let propValue = ""; // value is always a string now + + if (attr.value) { + if (t.isStringLiteral(attr.value)) { + propType = "string"; + propValue = attr.value.value; + } else if ( + t.isJSXExpressionContainer(attr.value) && + !t.isJSXEmptyExpression(attr.value.expression) + ) { + const expression = attr.value.expression; + if (t.isNumericLiteral(expression)) { + propType = "number"; + propValue = String(expression.value); + } else if (t.isBooleanLiteral(expression)) { + propType = "boolean"; + propValue = String(expression.value); + } else if (t.isNullLiteral(expression)) { + propType = "null"; + propValue = "null"; + } else if (t.isIdentifier(expression)) { + propType = "variable"; + propValue = expression.name; + } else { + if (t.isObjectExpression(expression)) { + propType = "object"; + } else if (t.isArrayExpression(expression)) { + propType = "array"; + } else if (t.isArrowFunctionExpression(expression) || t.isFunctionExpression(expression)) { + propType = "function"; + } else if (t.isJSXElement(expression) || t.isJSXFragment(expression)) { + propType = "jsx"; + } else { + propType = "expression"; + } + propValue = content.substring(expression.start!, expression.end!); + } + } + } else { + // Boolean prop without value + propType = "boolean"; + propValue = "true"; + } + + props.push({ + name: propName, + type: propType, + value: propValue + }); + } else if (t.isJSXSpreadAttribute(attr)) { + const argument = attr.argument; + props.push({ + name: "...", + type: "spread", + value: content.substring(argument.start!, argument.end!) + }); + } + }); + + // Get line number + const lineNumber = path.node.loc?.start.line || 0; + + // Add the usage + usages.push({ + componentName, + filePath, + mfe, + lineNumber, + props + }); + + // Remove from importedComponentUsages since we've found an actual JSX usage + importedComponentUsages.delete(componentName); + } + } + } + }); + + // Add all imported components that weren't used as JSX elements + usages.push(...Array.from(importedComponentUsages.values())); + + return usages; + } catch (error) { + console.error(`Error parsing file ${filePath}:`, error); + return []; + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/reporter/htmlReporter.ts b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/reporter/htmlReporter.ts new file mode 100644 index 000000000..b5890ecfb --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/reporter/htmlReporter.ts @@ -0,0 +1,689 @@ +import fs from "fs"; +import path from "path"; +import { ReportData } from "../types"; + +/** + * Generates an HTML report from the component usage data + */ +export class HtmlReporter { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + async generateReport(reportData: ReportData, outputPath: string): Promise { + const html = this.generateHtml(reportData); + + // Create the output directory if it doesn't exist + const outputDir = path.dirname(outputPath); + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + // Write the HTML to the output file + fs.writeFileSync(outputPath, html); + + console.log(`HTML report generated at ${outputPath}`); + } + + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + private generateHtml(reportData: ReportData): string { + const { componentStats, overallStats, generatedAt, config } = reportData; + + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

${config.mfes.length}

+

${config.mfes.join(", ")}

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ ${componentStats + .map( + (stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map( + ([mfe, count]) => ` + + + + + ` + ) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${ + Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map( + ([prop, count]) => ` + + + + + ` + ) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : "" + } + +

Instances (${stats.instances.length})

+ ${stats.instances + .map( + (instance) => ` +
+

File: ${instance.filePath}:${instance.line}

+ + + + + + + + + ${instance.props + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameValue
${prop.name}
${prop.value}
+
+ ` + ) + .join("")} +
+
+ ` + ) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map( + ([mfe, count]) => ` + + + + + + ` + ) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map( + (comp) => ` + + + + + ` + ) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map( + ([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map( + (comp) => ` + + + + ` + ) + .join("")} + +
Component Name
${comp}
+
+
+ ` + ) + .join("")} +
+ + +
+ + + + + `; + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/scanner/fileScanner.ts b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/scanner/fileScanner.ts new file mode 100644 index 000000000..a66169a46 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/scanner/fileScanner.ts @@ -0,0 +1,315 @@ +import path from "path"; +import fs from "fs"; +import { promisify } from "util"; +import { exec } from "child_process"; +import os from "os"; +import axios from "axios"; +import { MrcSourceType } from "../types"; + +const execPromise = promisify(exec); + +// Regular expression to match export statements like: +// export { default as ComponentName } from "./path/to/Component"; +const EXPORT_REGEX = /export\s*{\s*default\s*as\s*([A-Za-z0-9_]+)\s*}\s*from\s*["'](.*?)["'];?/g; + +/** + * Scans for files in the specified MFEs + */ +export class FileScanner { + private basePath: string; + private mfes: string[]; + private mrcSourceType: MrcSourceType; + private mrcGithubUrl?: string; + private mrcGithubBranch: string; + private tempDir?: string; + + constructor( + basePath: string, + mfes: string[], + mrcSourceType: MrcSourceType = "local", + mrcGithubUrl?: string, + mrcGithubBranch: string = "main" + ) { + this.basePath = basePath; + this.mfes = mfes; + this.mrcSourceType = mrcSourceType; + this.mrcGithubUrl = mrcGithubUrl; + this.mrcGithubBranch = mrcGithubBranch; + } + + /** + * Scans for all TypeScript and JavaScript files in the specified MFEs + * @returns Array of file paths + */ + async scanForFiles(): Promise { + const allFiles: string[] = []; + + for (const mfe of this.mfes) { + let mfePath: string; + if (mfe === "maas-ops-ui") { + mfePath = this.basePath; + } else { + mfePath = path.join(this.basePath, "micro-frontends", mfe); + } + + // Check if the MFE directory exists + if (!fs.existsSync(mfePath)) { + console.warn(`MFE directory not found: ${mfePath}`); + continue; + } + + try { + // Use find command to locate all TypeScript and JavaScript files + const { stdout } = await execPromise( + `find ${mfePath}/src -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + + return allFiles; + } + + /** + * Extracts owner and repo from GitHub URL + * @param githubUrl GitHub repository URL + * @returns Object containing owner and repo + */ + private parseGithubUrl(githubUrl: string): { owner: string; repo: string } { + // Handle URLs like https://github.com/owner/repo or git@github.com:owner/repo.git + const urlMatch = githubUrl.match(/github\.com[/:]([^/]+)\/([^/]+?)(\.git)?$/); + if (urlMatch) { + return { + owner: urlMatch[1], + repo: urlMatch[2].replace(/\.git$/, "") // Remove .git if present + }; + } + throw new Error(`Invalid GitHub URL: ${githubUrl}`); + } + + /** + * Gets GitHub authentication token from environment variable + * @returns GitHub authentication token or undefined if not available + */ + private getGithubToken(): string | undefined { + return process.env.GITHUB_TOKEN; + } + + /** + * Fetches a file from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path File path within the repository + * @param branch Branch name (default: main) + * @returns File content as string + */ + private async fetchFileFromGithub( + owner: string, + repo: string, + path: string, + branch?: string + ): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; + console.log(`Fetching file from GitHub: ${url}`); + + const headers: Record = {}; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + return response.data; + } catch (error) { + console.error(`Error fetching file from GitHub:`, error); + throw new Error(`Failed to fetch file from GitHub: ${path}`); + } + } + + /** + * Fetches directory contents from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path Directory path within the repository + * @param branch Branch name (default: main) + * @returns Array of file paths + */ + private async fetchDirectoryFromGithub( + owner: string, + repo: string, + path: string, + branch?: string + ): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${path}?ref=${branch}`; + console.log(`Fetching directory from GitHub API: ${url}`); + + const headers: Record = { + Accept: "application/vnd.github.v3+json" + }; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + + // Process the response to extract file paths + const files: string[] = []; + const processItems = async (items: any[]) => { + for (const item of items) { + if (item.type === "file") { + files.push(item.path); + } else if (item.type === "dir") { + // Recursively fetch subdirectory contents + const subDirUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${item.path}?ref=${branch}`; + const subDirResponse = await axios.get(subDirUrl, { headers }); + await processItems(subDirResponse.data); + } + } + }; + + await processItems(response.data); + return files; + } catch (error) { + console.error(`Error fetching directory from GitHub:`, error); + throw new Error(`Failed to fetch directory from GitHub: ${path}`); + } + } + + /** + * Prepares the MRC path based on the source type. + * If source type is local, returns the provided path. + * If source type is github, returns null to indicate GitHub API usage. + */ + async prepareMrcPath(mrcPath: string): Promise { + // If source type is local, use the provided path + if (this.mrcSourceType === "local") { + return mrcPath; + } + + // If source type is github, we'll use the GitHub API directly + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + console.log(`Using GitHub API for ${this.mrcGithubUrl}`); + return null; // Return null to indicate we're using GitHub API + } + + throw new Error("Invalid MRC source configuration"); + } + + /** + * Scans for all MRC components in the MRC repository + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component paths + */ + async scanForMrcComponents(mrcPath: string): Promise<{ name: string; path: string }[]> { + const allComponents: { name: string; path: string }[] = []; + + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Scanning for MRC components in GitHub repository: ${owner}/${repo}`); + + // Fetch all files in the components directory to find index.ts/tsx files + const files = await this.fetchDirectoryFromGithub(owner, repo, "src/components"); + + for (const file of files) { + // Only process index.ts or index.tsx files + if (file.endsWith("index.ts") || file.endsWith("index.tsx")) { + const fileContent = await this.fetchFileFromGithub( + owner, + repo, + file, + this.mrcGithubBranch + ); + // Reset regex lastIndex for each file + EXPORT_REGEX.lastIndex = 0; + const match = EXPORT_REGEX.exec(fileContent); + if (match && match[1] && match[2]) { + const componentName = match[1]; + const relativePath = match[2]; + // Construct the full path to the actual component file + // The relativePath is relative to the index.ts file's directory + const componentDir = path.dirname(file); + const fullComponentPath = path.join(componentDir, relativePath); + + // Assuming .tsx or .ts extension for the actual component file + let finalComponentPath = fullComponentPath; + if (!finalComponentPath.endsWith(".ts") && !finalComponentPath.endsWith(".tsx")) { + // Try .tsx first, then .ts + // Note: For GitHub, we can't check fs.existsSync directly. + // We'll assume .tsx for now or rely on the parser to handle it. + // For a more robust solution, we'd need to list files in the componentDir on GitHub. + finalComponentPath += ".tsx"; // Default to .tsx for GitHub + } + + allComponents.push({ name: componentName, path: finalComponentPath }); + } + } + } + + console.log(`Found ${allComponents.length} component files in GitHub repository`); + return allComponents; + } catch (error) { + console.error(`Error scanning MRC components from GitHub:`, error); + return []; + } + } + + // If using local path + const actualMrcPath = await this.prepareMrcPath(mrcPath); + + if (actualMrcPath) { + const componentsPath = path.join(actualMrcPath, "src", "components"); + + // Check if the components directory exists + if (!fs.existsSync(componentsPath)) { + throw new Error(`MRC components directory not found: ${componentsPath}`); + } + + try { + // Use find command to locate all index.ts/tsx files within component subdirectories + const { stdout } = await execPromise( + `find ${componentsPath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + const componentFiles = stdout.trim().split("\n").filter(Boolean); + + for (const file of componentFiles) { + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + + // Exclude components with "Props", "Utils", "Icon", "use" in their name, + // React hooks (starting with "use"), and files in table/components subdirectory + const shouldExclude = + componentName.includes("Props") || + componentName.includes("Utils") || + componentName.toLowerCase().includes("utils") || + componentName.includes("Icon") || + componentName.startsWith("use") || + file.includes("/table/components/"); + + if (!shouldExclude) { + allComponents.push({ name: componentName, path: file }); + } + } + + console.log(`Found ${allComponents.length} MRC components from local path`); + return allComponents; + } catch (error) { + console.error(`Error scanning MRC components:`, error); + return []; + } + } + + throw new Error("Invalid MRC source configuration"); + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/types.ts b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/types.ts new file mode 100644 index 000000000..7d8591a5a --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/src/types.ts @@ -0,0 +1,74 @@ +export interface AnalysisConfig { + mfes: string[]; + mrcPath: string; + outputDir: string; + outputFormats: ("html" | "json" | "yaml" | "csv")[]; + mrcSourceType: MrcSourceType; + mrcGithubUrl?: string; + mrcGithubBranch?: string; +} + +export type MrcSourceType = "local" | "github"; + +// Represents a prop passed to a component +export interface ComponentProp { + name: string; + value: string; // The value of the prop + type?: string; // This can remain as is +} + +// Represents a single instance of a component being used +export interface ComponentInstance { + filePath: string; + line: number; + props: ComponentProp[]; +} + +// Represents the aggregated usage data for a component +export interface ComponentUsage { + component: string; + count: number; + instances: ComponentInstance[]; +} + +// Aggregated data for a component +export interface ComponentStats { + componentName: string; + totalUsages: number; + usagesByMfe: Record; + commonProps: { name: string; count: number }[]; + files: string[]; + customization: { + styledComponentCount: number; + customStylesCount: number; + overriddenPropertiesCounts: Record; + }; + // All instances of the component + instances: ComponentInstance[]; +} + +export interface ReportData { + generatedAt: string; + config: AnalysisConfig; + mrcVersions: Record; + componentStats: ComponentStats[]; + unusedComponents: { name: string; path: string }[]; + unusedComponentsByMfe: Record; + overallStats: OverallStats; + rawData: { + componentUsages: ComponentUsage[]; + }; +} + +export interface OverallStats { + totalUsages: number; + mostUsedComponents: { name: string; count: number }[]; + mostUsedProps: { name: string; count: number }[]; + mfeUsages: Record; + totalUnusedComponents: number; +} + +export interface MrcComponentInfo { + name: string; + path: string; +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ops-ui/tsconfig.json b/tools/archived-tools/mrc-usage-report-maas-ops-ui/tsconfig.json new file mode 100644 index 000000000..ef068a05b --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ops-ui/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "es2016", + "module": "commonjs", + "outDir": "./build", + "rootDir": "./src", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true + }, + "include": ["src/**/*.ts", "src/jsonMerger.ts"], + "exclude": ["node_modules"] +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/README.md b/tools/archived-tools/mrc-usage-report-maas-ui/README.md new file mode 100644 index 000000000..e0a4e4456 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/README.md @@ -0,0 +1,211 @@ +# MRC Usage Report + +A tool to analyze and report on the usage of MRC (maas-react-components) components across different micro-frontends. + +## Features + +- Scans TypeScript/JavaScript files for MRC component usage +- Analyzes how components are used (props, customization, etc.) +- Identifies unused components (globally and per MFE) +- Detects components that are imported but not directly used as JSX elements +- Generates detailed HTML reports with interactive charts +- Configurable to analyze specific MFEs +- Supports different output formats (HTML, JSON, YAML) +- Includes trend analysis to track component usage changes over time +- Can be run as a GitHub Action with automatic GitHub Pages deployment + +## Installation + +1. Navigate to the tool directory: + +```bash +cd tools/mrc-usage-report +``` + +2. Install dependencies: + +```bash +npm install +``` + +3. Build the tool: + +```bash +npm run build +``` + +## Usage + +Run the tool with default settings: + +```bash +npm start +``` + +This will analyze all MFEs (except api-products) and generate an HTML report in the `./reports` directory. + +### Command Line Options + +You can customize the behavior with the following options: + +``` +Options: + -o, --output Output directory for the report (default: "./reports") + -f, --format Output format (html, json, yaml, csv) (default: "html") + -m, --mfes Comma-separated list of MFEs to analyze (default: "ep,intg,mc,saas") + -r, --mrc-path Path to the MRC repository (default: "../maas-react-components") + -b, --base-path Base path for the project (default: current working directory) + -s, --source Source type for MRC components (local or github) (default: "local") + -g, --github Use GitHub as the source for MRC components (shorthand for -s github) + --github-url GitHub repository URL for MRC components (default: "https://github.com/SolaceDev/maas-react-components") + --github-branch Branch name for GitHub repository (default: "main") + -h, --help Display help for command + -V, --version Output the version number +``` + +### Examples + +Analyze only the 'ep' and 'saas' MFEs: + +```bash +npm start -- -m ep,saas +``` + +Generate a JSON or YAML report: + +```bash +# JSON format +npm start -- -f json + +# YAML format +npm start -- -f yaml +``` + +Specify custom paths: + +```bash +npm start -- -b /path/to/project -r /path/to/mrc -o /path/to/output +``` + +Use GitHub as the source for MRC components: + +```bash +# Using the -g flag (shorthand) +GITHUB_TOKEN=your_github_token npm start -- -g + +# Or using the --source option +GITHUB_TOKEN=your_github_token npm start -- -s github + +# Optionally specify a different GitHub repository URL +GITHUB_TOKEN=your_github_token npm start -- -g --github-url https://github.com/your-org/your-repo + +# Optionally specify a different branch name +GITHUB_TOKEN=your_github_token npm start -- -g --github-branch develop +``` + +This is particularly useful in CI/CD environments or GitHub Actions where you don't want to clone the repository manually. + +> **Note:** If the MRC repository is private, you need to provide a GitHub personal access token with the `repo` scope via the `GITHUB_TOKEN` environment variable. This token is used to authenticate with the GitHub API. + +## Report Structure + +The HTML report includes: + +- Summary statistics (total usages, MFEs analyzed, unique components, unused components) +- Interactive charts showing component usage distribution +- Detailed breakdown of each component's usage +- Analysis of props used with each component +- Information about customization and styling overrides +- File references where components are used +- List of unused components (not used in any MFE) +- Per-MFE analysis of unused components (components used in some MFEs but not others) +- MRC version information for each MFE + +## Component Usage Detection + +The tool detects component usage in two ways: + +1. **Direct JSX Usage**: When a component is used directly in JSX elements within a file. +2. **Import-Only Usage**: When a component is imported from the MRC library but not directly used as a JSX element in the same file. This accounts for components that might be: + - Used conditionally in code paths + - Passed as props to other components + - Imported for future use or as a precaution + - Used in ways other than direct JSX elements + +## Development + +### Project Structure + +- `src/index.ts` - Main entry point +- `src/types.ts` - TypeScript interfaces +- `src/scanner/` - File scanning functionality +- `src/parser/` - Code parsing and analysis +- `src/aggregator/` - Data aggregation and statistics +- `src/reporter/` - Report generation + +### Adding New Features + +To add support for a new output format: + +1. Update the `outputFormat` type in `src/types.ts` +2. Add a new reporter class in `src/reporter/` +3. Update the report generation logic in `src/index.ts` + +## GitHub Action Integration + +This tool can be run automatically as a GitHub Action. A workflow file is included at `.github/workflows/mrc-usage-report.yml` that: + +1. Runs on every push to the main branch (and can be triggered manually) +2. Generates both HTML and JSON reports +3. Creates a trend analysis comparing the current report with previous reports +4. Publishes the reports to GitHub Pages + +### Setting Up GitHub Pages Deployment + +To enable the GitHub Pages deployment: + +1. Go to your repository settings +2. Navigate to "Pages" in the sidebar +3. Under "Build and deployment", select "GitHub Actions" as the source +4. The reports will be available at `https://[username].github.io/[repo-name]/mrc-usage-report/` + +### Testing Locally + +To test the report generation and trend analysis locally: + +```bash +# Navigate to the tool directory +cd tools/mrc-usage-report + +# Build the tool +npm run build + +# Generate the HTML report with correct base path +npm start -- -g -f html -o ./reports -b /path/to/repository/root + +# Generate the JSON report with correct base path +npm start -- -g -f json -o ./reports -b /path/to/repository/root + +# Run the trend analysis script +node ./scripts/trend-analyzer.js +``` + +Note: The `-b` parameter is crucial as it tells the tool where to look for the MFEs to analyze. Without it, the tool will use the current directory as the base path, which may not contain any MFEs to analyze. + +### Trend Analysis + +The trend analysis feature tracks changes in component usage over time: + +- On the first run, it creates a baseline report +- On subsequent runs, it compares the current report with the previous one +- The analysis shows: + - New components added + - Components removed + - Components with significant usage changes + - Overall statistics changes + +The trend report is set as the landing page, with a link to the detailed component usage report. + +## License + +ISC diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/package-lock.json b/tools/archived-tools/mrc-usage-report-maas-ui/package-lock.json new file mode 100644 index 000000000..94db41625 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/package-lock.json @@ -0,0 +1,1273 @@ +{ + "name": "mrc-usage-report", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "mrc-usage-report", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0", + "@types/js-yaml": "^4.0.9", + "axios": "^1.6.0", + "chalk": "^4.1.2", + "commander": "^11.0.0", + "glob": "^10.3.10", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.20.4", + "@types/node": "^20.8.2", + "ts-node": "^10.9.1", + "typescript": "^5.2.2" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.26.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", + "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.25.9", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.10.tgz", + "integrity": "sha512-rRHT8siFIXQrAYOYqZQVsAr8vJ+cBNqcVAY6m5V8/4QqzaPl+zDBe6cLEPRDuNOUf3ww8RfJVlOyQMoSI+5Ang==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.26.10", + "@babel/types": "^7.26.10", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", + "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", + "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.26.10.tgz", + "integrity": "sha512-6aQR2zGE/QFi8JpDLjUZEPYOs7+mhKXm86VaKFiLP35JQwQb6bwUE+XbvkH0EptsYhbNBSUGaUBLKqxH1xSgsA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.26.10" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.26.9", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.26.9.tgz", + "integrity": "sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/parser": "^7.26.9", + "@babel/types": "^7.26.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.10.tgz", + "integrity": "sha512-k8NuDrxr0WrPH5Aupqb2LCVURP/S0vBEn5mK6iH+GIYob66U5EtoZvcdudR2jQ4cmTwhEwW1DLB+Yyas9zjF6A==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.26.2", + "@babel/generator": "^7.26.10", + "@babel/parser": "^7.26.10", + "@babel/template": "^7.26.9", + "@babel/types": "^7.26.10", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.26.10", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.26.10.tgz", + "integrity": "sha512-emqcG3vHrpxUKTrxcblR36dcrcoRDvKmnL/dCL6ZsHaShW80qxCAcNhzQZrpeM765VzEos+xOi4s+r4IXzTwdQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.25.9", + "@babel/helper-validator-identifier": "^7.25.9" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", + "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.6.tgz", + "integrity": "sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/js-yaml": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", + "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.17.24", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.17.24.tgz", + "integrity": "sha512-d7fGCyB96w9BnWQrOsJtpyiSaBcAYYr75bnK6ZRjDbql2cGLj/3GsL5OYmLPNq76l7Gf2q4Rv9J2o6h5CrD9sA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.8.3.tgz", + "integrity": "sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", + "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true, + "license": "ISC" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/typescript": { + "version": "5.8.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz", + "integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true, + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/package.json b/tools/archived-tools/mrc-usage-report-maas-ui/package.json new file mode 100644 index 000000000..7ba687037 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/package.json @@ -0,0 +1,36 @@ +{ + "name": "mrc-usage-report", + "version": "1.0.0", + "description": "Tool to analyze MRC component usage across MFEs", + "main": "index.js", + "scripts": { + "build": "tsc", + "start": "node dist/index.js", + "dev": "ts-node src/index.ts", + "test": "jest" + }, + "keywords": [ + "component", + "analysis", + "report" + ], + "author": "", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0", + "@types/js-yaml": "^4.0.9", + "axios": "^1.6.0", + "chalk": "^4.1.2", + "commander": "^11.0.0", + "glob": "^10.3.10", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.20.4", + "@types/node": "^20.8.2", + "ts-node": "^10.9.1", + "typescript": "^5.2.2" + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/reports/mrc-maas-ui-usage-report.html b/tools/archived-tools/mrc-usage-report-maas-ui/reports/mrc-maas-ui-usage-report.html new file mode 100644 index 000000000..0e77c1631 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/reports/mrc-maas-ui-usage-report.html @@ -0,0 +1,140634 @@ + + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on 7/7/2025, 2:26:23 PM

+
+ +
+
+

Total Component Usages

+

4047

+
+
+

MFEs Analyzed

+

4

+

ep, intg, mc, saas

+
+
+

Unique Components Used

+

66

+
+
+

Unused Components

+

12

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ + + + + + +
+ +

Component Details

+ +
+
+
+ SolaceButton + 702 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep426
intg67
mc100
saas109
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant700
onClick514
dataQa350
href192
isDisabled141
title81
dense55
key47
id32
data-qa9
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (702)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
jsonSchemaSpecLink
href
https://json-schema.org/specification.html
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("smfTopics", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("smfTopics", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
commandBlockCopyButton
variant
icon
onClick
handleCopy
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/account-details/private-regions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseMessagingServiceDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOpenMessagingServiceDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`${protocol}//${host}/environments`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][addSchemaRegistry]
variant
text
onClick
handleAddSchemaRegistry
isDisabled
schemaAuthArray?.length > 0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => onDownload(false)
dataQa
downloadButton
isDisabled
!Object.values(namingStrategy).includes(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onOpenVersion ?? onClose
dataQa
returnToApplicationButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm"
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleDisplayDiscrepancyTable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleDisplayDiscrepancyTable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://www.solace.com
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
component
span
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
cancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
linkToApplicationVersionDetails
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleUndo
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
toggleCheckbox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
resourceAssignmentDelete
title
messages.remove
onClick
() => onRemoveResourceAssignment(resourceAssignment)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"outline"
onClick
() => onAddResourceAssignment(displayedUserTypes[0])
isDisabled
isDisabled
dataQa
addUser
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
eventMeshLink
dense
true
onClick
() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, "_self")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learningCenterLink
dense
true
onClick
() => window.open("/learningCenter", "_self")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_environments
variant
link
href
"https://docs.solace.com/Cloud/environments.htm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
lcVideoTutorialsLink
href
brandableTextValueConverter("videoTutorials", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
trainingCoursesLink
href
brandableTextValueConverter("courses", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
epOverviewDocsLink
href
brandableTextValueConverter("overviewDocs", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeConfigSidePanelButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
onClose
dataQa
"closeDetailsDialog"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBackButtonClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onViewInDesigner(version)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onClose
dataQa
"cancelAddEventToApplication"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSave
dataQa
"saveAddEventToApplication"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBackButtonClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onViewInDesigner?.(version)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onAddToApplication(version)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Edit
dataQa
`${caKey}-edit`
onClick
() => onEditName(entityType, index)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`${caKey}-delete`
onClick
() => handleDelete(entityType, index)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("customAttributes", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
key
`${caKey}-viewall-button`
onClick
() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("customAttributes", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${caKey}-add`
variant
text
dense
true
onClick
() => onAdd(entityType)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learnMore
href
brandableTextValueConverter("kpiDashboardLearn", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
goToRuntime
dataQa
goToRuntime
variant
call-to-action
onClick
() => {
+				history.push(`/ep/runtime`);
+			}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
goToDesigner
dataQa
goToDesigner
variant
outline
onClick
() => {
+				history.push(`/ep/designer`);
+			}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
handleCancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
handleApply
isDisabled
!hasUnsavedChanges
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
action.dataQa
key
action.id
...
action
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleEdit
dataQa
editDetailsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelDetailsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSave
isDisabled
saveInProgress
dataQa
saveDetailsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://semver.org
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onVersionAdd
dataQa
addVersionButton
title
Add New Version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setShowVersionDetails(false)
title
Hide Version List
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setShowVersionDetails(true)
title
Show Version List
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
changeVersionState
variant
text
onClick
onChangeVersionState
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"customAttributeDefinitionsEditorButton"
variant
text
onClick
() => handleOpenCustomAttributeDialog()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleNavigateBackToOrigin
dense
true
underline
none
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Remove
dataQa
`applicationVersion.clientProfileNameRemove`
onClick
handlRemoveClientProfile
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageClientProfile
dataQa
manageClientProfileName-button
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleStartOverriding
dataQa
overrideClientProfileName-button
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleResetOverride
dataQa
resetOverrideClientProfileName-button
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageClientProfile
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Remove
dataQa
`applicationVersion.clientProfileNameRemove`
onClick
handlRemoveClientProfile
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
selectedVersionInEdit
onClick
() => handleVersionEdit(selectedVersion)
dataQa
editThisVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
selectedVersionInEdit
onClick
() => handleVersionEdit(selectedVersion)
dataQa
editThisVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
disableFormButtons
variant
text
onClick
handleCancelVersion
dataQa
discardChangesButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || disableFormButtons
variant
outline
onClick
handleSubmitVersionClick
dataQa
saveVersionButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || disableFormButtons
variant
call-to-action
onClick
handleSubmitAndCloseVersionClick
dataQa
saveVersionAndCloseButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCloseVersion
dataQa
closeButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
createVersion
variant
call-to-action
onClick
handleCreateVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleClear
dataQa
`${dataQa}-clear`
title
Clear Topic Address
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleEditClick
dataQa
configureVarButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleClear
dataQa
`${dataQa}-clear`
title
Clear Topic Address
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAdd
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
isDisabled
removeDisabled
onClick
() => handleRemove(index)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicSubscriptions", "link")
data-qa
infoBlurbLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
setKafkaPreferences
onClick
onSetKafkaPreferences ? onSetKafkaPreferences : null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
recenterGraph
title
"Center Graph"
dataQa
centerGraph
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
"More Actions"
...
buttonProps
onClick
handleMenuClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
latestGraphUrl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
docUrl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
docUrl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
docUrl
onClick
() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onDismiss
title
Close
dataQa
close-btn-inline-banner
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
action-btn-inline-banner
variant
call-to-action
isDisabled
isButtonDisabled
onClick
onButtonClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onDismiss
title
Close
dataQa
close-btn-inline-banner
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
recenterGraph
title
"Center Graph"
isDisabled
graphEmpty
dataQa
centerGraph
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://semver.org
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`${filterType}-delete`
onClick
() => handleDelete(filterType)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`${customAttributeFilterType}-delete`
onClick
handleDeleteFilter
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters(true, true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
latestJarFileLink
href
eventManagementAgentResources.version.needUpgradeLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connectEventBrokerButton
variant
text
onClick
handleOpenSidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleOpenSidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || !eventManagementAgent?.eventManagementAgentRegionId
variant
call-to-action
onClick
handleCreateAgent
dataQa
saveAndCreateConnectionFileButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
discardChangesButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId
variant
call-to-action
onClick
handleEditAgent
dataQa
saveAndCreateConnectionFileButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleFinishClick
dataQa
finishWalkthroughButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCompleteInstallationSetupClick
dataQa
comnpleteInstallationSetupButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSkipButton
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleFinishClick
dataQa
finishWalkthroughButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
id
downloadButtonId
dataQa
downloadButtonId
onClick
(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
id
copyButtonId
dataQa
copyButtonId
onClick
(evt) => handleCopyFile(evt, details, emaType, copyButtonId)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceProducts/event-management-agent/releases
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/ep/runtime?sortBy=name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace-sso.solace.cloud/support/error-id-help
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleMessagingService(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => handleMessagingService(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
openMessagingServiceDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeSidePanelCloseButton
title
Close Side Panel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
(evt) => handleDownloadFile(evt)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCopyFile
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
EMA_PREREQUISITES_LINK
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
variant
text
onClick
handleCreateRuntimeAgent
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
viewModeledEventMeshes
variant
outline
onClick
handleViewModeledEventMeshes
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/account-details/private-regions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceLabs/event-management-agent/blob/main/README.md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => removeMessagingService(messagingService)
title
Remove
dataQa
removeMessagingService
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
agentSidePanelCloseButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => handleDownloadConnectionFile(item.id, item.name)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceLabs/event-management-agent/blob/main/README.md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
variant
onClick
() => handleCollectData(selectedMessagingService)
dataQa
runDiscoveryScan
isDisabled
isDiscoveryScanButtonDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleAddExistingMessagingService
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connectEventBrokerButton
onClick
handleAddExistingMessagingService
key
"addMessageService"
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
viewConnectionDetailsButton
variant
text
onClick
handleViewConnectionDetails
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleDeleteMessagingService(selectedMessagingService)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push("/account-details/private-regions")
variant
call-to-action
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("datacenters", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("datacenters", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleRemoveVersionEntity(entityVersion.id)
dataQa
removeEntityFromListButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setIsAddMode(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Back to manage associations
onClick
() => setIsAddMode(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
backToGraphView
dataQa
backToGraphView
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
memSidePanelCloseButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!item?.auth?.canOpenModelEventMesh
onClick
onViewDetail
dataQa
viewMEMDetailsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCreateMem
dataQa
createModeledEventMeshButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
viewEventManagementAgentConnections
variant
outline
onClick
() => history.push("/account-details/private-regions")
dataQa
viewEMAConnections
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
viewEventManagementAgentConnections
variant
outline
onClick
handleViewEventManagementAgentConnections
dataQa
viewEMAConnections
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCreateMemDialogOpen
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => showObjectRelationshipsForFirstObjectCallback?.()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => refreshGraphCallback?.(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRefreshEventMeshDetails
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("designerTool", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleRefreshEventMeshDetails()
title
"Refresh graph with the latest objects and layout"
dataQa
refreshGraph-button
isDisabled
graphLoading || graphUpdating || drawInProgress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleGoToMessagingServiceTab
variant
link
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleGoToDesigner
variant
link
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
handleOnClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => setAutoCollectDialogOpen(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
refreshAllAuditResults
variant
icon
onClick
() => setRefresh(true)
dataQa
refreshAllAuditResults
title
Refresh all audit results
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("auditRuntimeData", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("auditRuntimeData", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
hideSecondaryPanel
dataQa
closeButton
title
Go Back
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onCloseDetails
dataQa
closeButton
title
Go to Selection Panel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCompare
variant
outline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCompare
variant
outline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onDeselectAll
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
auditImportJob-close
title
Remove
onClick
() => handleDismissJob(jobId)
underline
none
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
link
onClick
() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
link
onClick
() => handleDetailDialogOpen(eventDetail.parent, eventDetail)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCompareVersions
dataQa
"compareVersionsBtn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
() => onVersionItemClick(version.id)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
() => onVersionItemClick(version.id)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleShowMore
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBack
dataQa
"backCompareConfigDialog"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onViewConfiguration(isSchemaParent)
dataQa
"showFullConfiguration"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRefresh
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleViewEventBrokerConnections
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
underline
none
onClick
() => handleRefreshAuditResult()
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClearAll
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("applicationDomain", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
buttonVariant || "outline"
isDisabled
disabled
dataQa
chooseImportOptionButton
onClick
() =>
+						handleImport(
+							auditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent
+						)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()
variant
"text"
onClick
() => onVersionSelection(applicationVersion)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
onClick
handleDeselect
dataQa
validationErrorDeselect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkButton
variant
link
href
`/ep/runtime/modeled-event-meshes/${eventMeshId}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkButton
variant
link
href
designerLink
dataQa
designerLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkButton
variant
link
href
"/ep/catalog"
dataQa
catalogLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setOpenCelebratoryDialog(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
auditImport-action
onClick
action
underline
none
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleUndoTagAction(request)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSetToDefault
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm"
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas"
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
linkHref
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleOpenDeleteTemplateDialog(true, row)
dataQa
deleteTemplateButton
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCreateTemplate
dataQa
createTemplateButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCancel
variant
text
dataQa
cancelTemplate
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onSave
variant
call-to-action
dataQa
saveTemplate
isDisabled
createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => handleOpenAddToApplicationModal(selectedEvent)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
dataQa
`${camelCase(title)}-${secondaryAction.completed}-button`
onClick
() => {
+							secondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);
+						}
isDisabled
secondaryAction?.disabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							handleOpenLink("setUpEMA");
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							handleOpenLink("setUpMEM");
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
sampleApplicationsDomainsLink
href
brandableText.solace.links.sampleDocs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							handleOpenLink("design");
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
dismissExploreSample
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => {
+									handleOpenLink("videoTutorials");
+								}
endIcon
dataQa
howToVideosButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
handleOpenUserManagement
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learnMoreTooltipLink
href
brandableTextValueConverter("kpiDashboardLearn", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learnMoreCardLink
href
brandableTextValueConverter("kpiDashboardLearn", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
`switchModeAction-${modeToSelect}`
title
selectMessage
onClick
() => handleModeSelection(modeToSelect)
isDisabled
modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
applyAction
title
messagesCommon.button.apply
onClick
applyChanges
isDisabled
!!fetchError ||
+						(templates?.length && (templateNotFound || !!templateOutOfSync)) ||
+						templateHasSchemaErrors ||
+						!!errors[FormNameConfiguration]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => onRemove(type, header)
title
Delete
dataQa
removeRequestHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
addQueueBinding
isDisabled
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOverride
dataQa
overrideQueueBinding
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClearOverride
dataQa
clearOverrideQueueBinding
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleRemoveConfiguration()
title
Delete
dataQa
removeQueueBinding
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setShowRequestHeaderDialog(true)
dataQa
addRequestHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOnAddQueueBinding
dataQa
isGlobal ? "addQueueBinding" : "overrideQueueBinding"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleOnDelete
variant
"icon"
title
Delete
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setShowConsumerType(true)
dataQa
rdpShowConsumerType
isDisabled
showConsumerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRemoveRestDeliveryPointConfiguration
dataQa
rdpShowReset
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOverrideRestDeliveryPointConfiguration
dataQa
rdpShowOverride
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleRemoveRestDeliveryPointConfiguration
title
Delete
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setShowRestConsumer(true)
isDisabled
showRestConsumer || !configurationTypeId || !isEditing
dataQa
rdpShowRestConsumer
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
selectAnotherTemplateAction
variant
link
onClick
onSelect
isDisabled
isSelectDisabled
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"customizeAction"
variant
outline
onClick
onCustomize
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"refreshAction"
variant
call-to-action
onClick
onRefresh
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
action.variant || "text"
onClick
action.onClick
dataQa
action.dataQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
custom-learnMore
href
en.application.links.queueConfiguration
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
template-learnMore
href
messagesTemplate.solaceQueue.infoBlurb.linkHref
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
`switchModeAction-${modeToSelect}`
title
selectMessage
onClick
() => setModeSelectionToConfirm(modeToSelect)
isDisabled
modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
applyAction
title
messagesCommon.button.apply
onClick
applyChanges
isDisabled
!!fetchError || templateNotFound || !!templateOutOfSync
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAddConsumer
dataQa
addConsumerButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
messages[configType].emptyLinkref
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSetUserAccess
dataQa
userAccessButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleOpen
dataQa
openApplicationDomainButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("sampleDocs", "link")
dense
true
onClick
() => Mixpanel.track("clickSampleDocumentationLink")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
createAppDomain-btn
variant
call-to-action
onClick
handleCreate
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
importAppDomain-btn
variant
text
onClick
() => importDomainsFileRef.current?.click()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
brandableTextValueConverter("topicAddresses", "link")
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("enumerations", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleUndoUpload(valuesToUndo)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+									if (fileInputRef) fileInputRef.current.click();
+								}
isDisabled
fileUploading
dataQa
enumerationVersion[values]-importFromFileButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit((data) => {
+								if (!validateEnumValueSets()) {
+									return;
+								}
+
+								const preparedData = prepareEntityForBackend(data);
+
+								return handleSaveEntityAndVersion(preparedData);
+							})
isDisabled
createEnumeration.isLoading
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => handleGoToSelectedApplicationDomain()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleOpenFullConfiguration
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleOpenFullConfiguration
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
title
Edit
onClick
onEdit
dataQa
domainGraphSidePanel-details-editBtn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelCustomAttributesButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => handleSave()
isDisabled
!isDirty || isWritingEpCore || saveInProgress
dataQa
saveCustomAttributesButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
title
Edit
onClick
onEdit
dataQa
`${entityType}NodeSidePanelCustomAttributeEditButton`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClickCancel
dataQa
cancelDetailsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => handleSave(existingLatestNonRetiredVersion)
isDisabled
!isDirty || saveInProgress || isWritingEpCore
dataQa
saveDetailsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseInfoBlurb
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClosePanel
dataQa
leftSidePanelCloseButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Edit Appearance
onClick
handleEditAppearance
dataQa
edit-appearance-button
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => refreshGraphCallback?.(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => goToComponentLists?.()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleRefreshGraph
title
"Refresh graph with the latest versions and layout"
dataQa
refreshGraph-button
isDisabled
graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
"Add To Graph"
title
Add To Graph
variant
outline
endIcon
dataQa
addToGraph-button
isDisabled
!!nodeIdWithUnsavedChanges
onClick
handleMenuClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseInfoBlurb
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
dataQa
findOnGraph
key
"findOnGraph"
onClick
() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)
isDisabled
searchButtonDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
dataQa
DomainGraphLeftPanelMode.ADD_OBJECTS
key
DomainGraphLeftPanelMode.ADD_OBJECTS
onClick
() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)
isDisabled
leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseSearchPanel
dataQa
searchPanelCollapseButton
title
Collapse
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
(e) => handleNavigateToComponentList(e, entityType)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageEventApis
isDisabled
sidePanelOpen
dataQa
manageEventApisButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
selectedEventApiVersionIds.includes(versionData.id) ? "text" : "outline"
id
`${versionData.id}-versionButton`
key
`${versionData.id}-versionButton`
onClick
() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? "remove" : "add", versionData)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
id
item.id
onClick
(e) => {
+					e.stopPropagation();
+					onFilterButtonClicked(item);
+				}
dataQa
`filterButton-${item.id}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(handleSaveEntityAndVersion)
isDisabled
createEventApi.isLoading
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
source === "application" ? en.application.links.extension : en.eventApi.links.extension
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
version === "2.5.0" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.application.links.asyncApi
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`planDeleteButton-${index}`
onClick
() => onPlanDelete(index)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
eapAddPlanButton
isDisabled
planFields.length === 5
onClick
onAddPlanClicked
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.eventApiProduct.labels.availability.url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setOpen(true)
isDisabled
isDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.eventApiProduct.labels.availability.dialogUrl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.eventApiProduct.labels.approvalTypes.url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(handleSaveEntityAndVersion)
isDisabled
createEventApiProduct.isLoading
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
createEventApiProductButton
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertVersionForSave)
isDisabled
createSchema.isLoading
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setTriggerVersionDuplication(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+														if (fileInputRef) fileInputRef.current.click();
+													}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
exampleSchemasButton
href
https://www.jsonschemavalidator.net/
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageReferencedSchemas
isDisabled
sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas
dataQa
manageReferencedSchemasButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+								setActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
onReviewClick
dataQa
reviewButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onReviewClick
dataQa
revokeButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onReviewClick
dataQa
approveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAddButtonClick
isDisabled
!editableSubscriptions
dataQa
`applicationVersion[consumers].${consumerIndex}.add`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Remove
dataQa
`applicationVersion[consumers].${consumerIndex}.${index}.remove`
onClick
() => handleDeleteButtonClick(consumerId, index)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
isDisabled
consumerIdInSidepanel === id && sidePanelOpen
dataQa
`applicationVersion[consumers].${index}.delete`
onClick
handleDeleteButtonClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleAdd
isDisabled
subscription === "" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress
dataQa
subscriptionAddButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => setShowSuggestedEvents(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
en.common.button.download
dataQa
`${name}-configDownload`
onClick
() => {
+				download(new Blob([configuration]), getConfigurationName(name), "application/json");
+			}
isDisabled
isDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${consumer.name}-manageConfigButton`
variant
"text"
onClick
handleManageConfiguration
isDisabled
openedSidePanel === SidePanel.manageConfiguration
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleInitiateOverride
dataQa
`${consumer.name}-overrideConfigButton`
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
`${consumer.name}-clearOverrideButton`
onClick
handleResetOverride
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${consumer.name}-manageConfigButton`
variant
"text"
onClick
handleManageConfiguration
isDisabled
openedSidePanel === SidePanel.manageConfiguration
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
en.common.button.remove
dataQa
`applicationVersion[consumers].${index}.configurationRemove`
onClick
() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
(e) => handleEventVersionSelect(e, item)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleToggleEventsExpand
isDisabled
sortedItems.length === 0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleFindEventsClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onAutoCreateConsumers
isDisabled
autoCreateConsumersInProgress
dataQa
autoCreateConsumersButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
launchUserAccessDialog
variant
outline
isDisabled
getRrbacRoles.isLoading || getAttributeAssignments.isLoading
dataQa
userAccessButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
isSaveButtonDisabled()
onClick
handleSubmit(onFormSubmit)
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
addTopicDomain
onClick
handleAddTopicDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
deleteTopicDomain
onClick
() => handleDeleteFromUI(index)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
deleteTopicDomain
onClick
() => handleDeleteFromBackend(topicDomain.id)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleEdit
dataQa
editApplicationDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleClose
dataQa
closeButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
title
"Launch link"
dataQa
launchTopicAddressResourceLink
href
resource
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
"Edit link"
dataQa
topicAddressResourcesEdit
onClick
() => setIsEditing(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
"Delete link"
dataQa
topicAddressResourcesDelete
onClick
() => onDelete()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
topicAddressResourcesAdd
onClick
() => setIsEditing(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("kafkaEvents", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertVersionForSave)
isDisabled
createEvent.isLoading
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageSchemas
isDisabled
sidePanelOpen
dataQa
`manage${keyOrValue}SchemasButton`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageSchemasForPrimitiveType
isDisabled
sidePanelOpen
dataQa
`manage${keyOrValue}SchemasForPrimitiveTypeButton`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRemoveSchema
dataQa
`remove${keyOrValue}SchemaButton`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOpenQuickCreateSchema
dataQa
"quickCreateSchemaButton"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBackButton
dataQa
backButton
title
Back
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSchemaVersionSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSchemaVersionRemove
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
notifyParentOfSchemaVersionSelection
dataQa
selectPrimitiveTypeButton
isDisabled
!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+													if (fileInputRef) fileInputRef.current.click();
+												}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
exampleSchemasButton
href
https://www.jsonschemavalidator.net/
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
data-qa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(handleSaveEntityAndVersion)
data-qa
createAndSelectButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleSchemaVersionSelect
isDisabled
sharedSearchCriteria && !schema.shared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSchemaVersionRemove
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleSchemaVersionSelect
isDisabled
sharedSearchCriteria && !schema.shared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSchemaVersionRemove
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Back to add subscription
onClick
() => handleManageSubscriptions(currentSubscription, consumerName)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
Quick Create Event
onClick
() => handleOpenDialog("quickCreateEvent")
dataQa
quickCreateEventButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+								remove();
+								removeToast();
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAutoCreateConsumers
isDisabled
autoCreateConsumersInProgress
dataQa
autoCreateConsumersButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageEvents
isDisabled
sidePanelOpen && openedSidePanel === SidePanel.manageEvents
dataQa
manageEventsButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCancel
data-qa
closeButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseTopicAddressHelp
data-qa
topicAddressHelpCloseButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
data-qa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertVersionForSave)
data-qa
createAndSelectButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${ApplicationFlowDirection.Source}-${versionData.id}`
variant
versionData.source ? "call-to-action" : "outline"
onClick
(e) => {
+						e.stopPropagation();
+
+						const clonedVersionData = cloneDeep(versionData);
+
+						delete clonedVersionData.source;
+						delete clonedVersionData.destination;
+						delete clonedVersionData.filtered;
+						onSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });
+					}
isDisabled
versionData.filtered
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${ApplicationFlowDirection.Destination}-${versionData.id}`
variant
versionData.destination ? "call-to-action" : "outline"
onClick
(e) => {
+						e.stopPropagation();
+
+						const clonedVersionData = cloneDeep(versionData);
+
+						delete clonedVersionData.source;
+						delete clonedVersionData.destination;
+						delete clonedVersionData.filtered;
+						onDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });
+					}
isDisabled
versionData.filtered
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSendAllRequests
dataQa
sendRequestButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertFormValuesForSave)
isDisabled
createApplication.isLoading
dataQa
saveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/environments.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
isDisabled
isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)
onClick
() => setAddToEnvironmentData({ ...eventBrokerRecord })
dataQa
`${eventBroker.id}-addApplicationButton`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
declinedRequests.length + requestsToCreate.length === 0 ? "outline" : "call-to-action"
dataQa
manageRequestButton
onClick
handleOpenRequestPanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`sub-${versionData.id}`
variant
versionData.sub ? "call-to-action" : "outline"
isDisabled
versionData.stateName.toLowerCase() === "retired"
onClick
(e) => {
+								e.stopPropagation();
+
+								const clonedVersionData = cloneDeep(versionData);
+
+								delete clonedVersionData.pub;
+								delete clonedVersionData.sub;
+								onSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`pub-${versionData.id}`
variant
versionData.pub ? "call-to-action" : "outline"
isDisabled
versionData.stateName.toLowerCase() === "retired"
onClick
(e) => {
+								e.stopPropagation();
+
+								const clonedVersionData = cloneDeep(versionData);
+
+								delete clonedVersionData.pub;
+								delete clonedVersionData.sub;
+								onPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEventVersionSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
(e) => {
+							e.stopPropagation();
+							onAddSubscription(item);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleClose
dataQa
closeButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageRelationshipBtnClick
dataQa
manageLinksBtn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dataQa + "-expandAll"
variant
text
onClick
handleToggleRequestsExpand
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
data-qa
cancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
!isValid || !isDirty
onClick
mode === "existingConsumer" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)
data-qa
addSubscriptionButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
gotoRuntimeTab
isDisabled
!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
launchRDPDeploymentDialog
dataQa
addRDPToBrokerButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm"
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+						setIsEditing(true);
+					}
dataQa
credentialsEdit
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onToggleInputBType
title
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
onClick
handleClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
label
onClick
handleClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
variant
startIcon
showSparkle ?  : undefined
onClick
handleClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
onClick
handleFilterToggle
dataQa
`${id}_filterToggleButton`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onClearFilterClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
href
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
onClick
handleFilterToggle
dataQa
filterToggleButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
viewTransformationButton
variant
text
onClick
() => handleAddTransformation(ShowTransformation.READ_ONLY)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
addTransformationButton
dataQa
addTransformationButton
variant
text
onClick
() => handleAddTransformation(ShowTransformation.CREATE)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
editTransformationButton
variant
text
onClick
() => handleAddTransformation(ShowTransformation.EDIT)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
removeRelation
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setSelectedRelation(relation)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.buttons.transformationsLink.hrefLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onAdd
dataQa
`add_${inputOrOutput}_button`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => onRemove(handle)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.buttons.transformationsLink.hrefLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
openUploadModal
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+								setReImport(true);
+								openUploadModal();
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-edit-constant-dialog
onClick
() => {
+							setShowEditDialog(false);
+							setConstantField({});
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
edit-constant-button
variant
call-to-action
dataQa
edit-constant-button
onClick
applyConstantEdit
isDisabled
!!constantNameError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-add-header-dialog
onClick
() => {
+							setShowEditDialog(false);
+							setCustomHeaderField({});
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
edit-custom-header-button
variant
call-to-action
dataQa
`edit-custom-header-button-${direction}`
onClick
applyHeaderEdit
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
`edit-${fieldType}-button`
onClick
handleEdit
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
`delete-${fieldType}-button`
onClick
() => {
+							setIdToDelete(id);
+							setShowDeleteDialog(true);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-add-header-dialog
onClick
handleCancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
`add-custom-header-button-${direction}`
onClick
handleAddHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-add-header-dialog
onClick
handleCancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
add-constant-button
onClick
handleAddConstant
isDisabled
!!constantNameError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
startIcon
onClick
handleMapWithAI
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
maxTargetHeaderCountReached()
dataQa
`add-constant-button-${direction}`
onClick
() => {
+								setAddConstantDialog(true);
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
maxTargetHeaderCountReached()
dataQa
`add-header-button-${direction}`
onClick
() => {
+								setAddHeaderDialog(true);
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.targetHeaderMapping.learnMore.href
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.targetHeaderMapping.learnMore.href
dataQa
headerLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showSensitiveField ? "eyeIcon" : "hideEyeIcon"
dataQa
showSensitiveField ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowSensitiveField(!showSensitiveField)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
(e: any) => onClick && onClick(e)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Delete
variant
icon
onClick
onDropPropertyClick(label)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
zeroStateDocLink
variant
link
href
https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
goToDocumentationButtonLink
href
connectorType.integrationHubUrl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
() => history.push(CONNECTOR_AVAILABLE)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
goToDocumentationButtonLink
href
connectorType.integrationHubUrl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
deployButton
variant
call-to-action
onClick
handleDeployState
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
openConnectorFlowButton
variant
outline
onClick
handleViewDetails
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/services/${serviceDetails?.id}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setSelectedRowIds([])
dataQa
closeButton
title
en.connectors.buttons.close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace-sso.solace.cloud/support/question
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleViewErrorLogs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showClientSecret ? "eyeIcon" : "hideEyeIcon"
dataQa
showClientSecret ? "showClientSecretButton" : "hideClientSecretButton"
variant
icon
onClick
() => setShowClientSecret(!showClientSecret)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showPassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showPassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowPassword(!showPassword)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showSslKeyStorePassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showSslKeyStorePassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowSslKeyStorePassword(!showSslKeyStorePassword)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showSslPrivateKeyPassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showSslPrivateKeyPassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showPassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showPassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowPassword(!showPassword)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
connectorTypeDetails?.integrationHubUrl
+										? connectorTypeDetails?.integrationHubUrl
+										: en.connectors.buttons.integrationHub.hrefLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/ToastAction.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
intg-toast-action
variant
text
onClick
handleRedirect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
`solace-header-action-${getDataQaValue(action.title)}`
dataTags
action.title
onClick
handleAction
isDisabled
action.disabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
href
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_environments
variant
link
href
https://docs.solace.com/Cloud/environments.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
editButton
variant
text
onClick
handleEditButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace-sso.solace.cloud/support/question
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleViewErrorLogs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
discard
dataQa
discard
variant
text
onClick
onDiscard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloneButton
dataQa
cloneButton
variant
outline
onClick
() => onSubmit(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloneAndDeployButton
dataQa
cloneAndDeployButton
variant
call-to-action
onClick
() => onSubmit(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createconnector
variant
text
onClick
() => {
+												history.push("/micro-integrations/availableMicroIntegrations");
+											}
dataQa
`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
discard
dataQa
discard
variant
text
onClick
onDiscard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
save
dataQa
save
variant
outline
onClick
() => onSubmit(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
saveDeploy
dataQa
saveDeploy
variant
call-to-action
onClick
() => onSubmit(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleDownloadLog
variant
outline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createAgent
variant
text
onClick
() => {
+										return null;
+									}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => onDismiss()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
action.variant ?? "text"
isDisabled
action.disabled
href
action.href ? action.href : undefined
dataQa
solace-header-action
dataTags
action.title
onClick
handleAction
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, helpLink)
dataQa
help-no-access
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, secondaryHelpLink)
dataQa
secondary-help-no-access
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_storage
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/Configure-Message-Spools.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_deleteprotection
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_service_deletion_protection.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_migration
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_broker_sso_settings
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_broker_sso_settings
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_dist_tracing
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/enable-dt-for-cloud.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_environments
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/environments.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleViewPassword
title
showPassword ? t({ id: "id_hide_password", message: "Hide password" }) : t({ id: "id_view_password", message: "View password" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCopy
title
t({ id: "id_copy", message: "Copy" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
resourceAssignmentDelete
title
messages.remove
onClick
() => onRemoveResourceAssignment(resourceAssignment)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"outline"
onClick
() => onAddResourceAssignment(displayedUserTypes[0])
isDisabled
isDisabled
dataQa
addUser
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => history.push(`/mesh-manager/${eventMesh.id}`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
create_event_mesh
variant
text
onClick
handleCreateMesh
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
view-scaleup-logs
onClick
handleViewScaleUpLogs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
type
button
onClick
onCancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ggs_tryme.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
launchTryMe
endIcon
onClick
handleOpenTryMe
isDisabled
!allowBrokerRequests
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleSelectLibrary(null)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleShowLibraryDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleSelection(item)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
dataQa
open-ticket
href
buildSupportURL(isSAP, service.errorId, service.id)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/account-details/distributed-tracing
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
plan-upgrade-open
onClick
handleOpenUpgradeDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setViewLogs(true)
isDisabled
(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/upgrade-event-broker.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
plan-upgrade-open
onClick
onOpen
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setViewLogs(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
view-upgrade-logs
onClick
handleViewUpgradeLogs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
tutorial.url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.api
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.download[0].url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
dw.url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.api
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.tutorial
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.download[0].url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
readOnly
dataQa
dataQa
onClick
() => {
+						const fileInput = fileInputRef?.current;
+						if (fileInput) {
+							if (fileInput.value) {
+								try {
+									fileInput.value = "";
+								} catch (err) {
+									// that's fine
+								}
+							}
+							fileInput.click();
+						}
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel(idx)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleSave(idx)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAddGroup
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES
onClick
handleShowCreateHostname
dataQa
create-hostname
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_storage
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/configure-hostnames.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnableDisable
dataQa
toggle_semp_request
isDisabled
!allowServiceQueries
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries
onClick
handleCreateEndpoint
dataQa
create-endpoint
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_port_config
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleToggle
isDisabled
!hasERPLimit || !allowServiceQueries
dataQa
toggle_erp_event_addon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/erp-add-on.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleShowMateLinkEncryption
dataQa
toggle_mate_link_encryption
isDisabled
!allowServiceQueries || mateLinkEncryption.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || !canConfigure || !canEnable
onClick
handleEnableLdapManagement
dataQa
enable-ldap-management
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dense
true
onClick
handleProfileShowDialog
dataQa
ldap-management-profile
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dense
true
onClick
handleAccessShowDialog
dataQa
ldap-management-access
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
isDisabled
!allowBrokerRequests
dataQa
launchBrokerManagerClientProfiles
href
(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || ""
onClick
handleOpenBrokerManager
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || !curClusterName
onClick
handleShowClusterName
dataQa
edit-cluster-name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/edit-cluster-name.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || isDisabled
onClick
handleShowMessageSpoolSize
dataQa
edit-message-spool-size
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleDisableDistributedTracing
isDisabled
distributedTracingStatus == "error" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries
dataQa
distributed-tracing-disable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnableDistributedTracing
isDisabled
isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries
dataQa
distributed-tracing-enable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || ""
dataQa
launchBrokerManagerTelemetryProfiles
onClick
handleOpenBrokerManager
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCheckConnectionStatus
isDisabled
!isConfigured || !allowServiceQueries
dataQa
dt-button-status
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleConfigureDataCollection
isDisabled
!allowServiceQueries
dataQa
dt-button-deploy
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+						setResetFields(item);
+						setShowDialogIndex(index);
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleAdd
dataQa
syslog-forwarding-create
isDisabled
!allowServiceQueries || syslogs.length >= 3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
usernames.length === 0 || !allowServiceQueries
onClick
handleShowRotatePasswords
dataQa
rotate_passwords
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnable
dataQa
monitoring-enable
isDisabled
!allowServiceQueries || !canConfigure || !!configuringMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
service-auth-open-broker-manager
endIcon
onClick
handleOpenBrokerManager
isDisabled
!allowBrokerRequests
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
service-auth-edit-client-auth
onClick
handleShowAuthentication
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dense
true
onClick
handleProfileShowDialog
dataQa
service-auth-edit-profile
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							setFetchName(item.name);
+							setAddMode(false);
+							setShowDialogIndex(index);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnableStandardDomainCertAuth
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/server_certs.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries
onClick
handleAddClientCertAuth
dataQa
add-client-cert-auth
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/server_certs.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
hasOngoingOperation
onClick
handleAddDomainCertAuth
dataQa
add-domain-cert-auth
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+						setResetFields();
+						setFetchName(item.name);
+						setShowDialogIndex(index);
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries
onClick
handleAdd
dataQa
client-profile-create
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
isDisabled
!allowBrokerRequests
dataQa
dataQa
href
(allowBrokerRequests && getBrokerWebUI(path)) || ""
onClick
() => {
+							track(TRACK_ELEMENT_CLICK, { "element-id": dataQa });
+							openWindow(getBrokerWebUI(path), serviceId);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
truststoreUri ?? "https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
open-broker-manager
variant
link
dense
true
dataQa
launchBrokerManager
isDisabled
!allowBrokerRequests
href
(allowBrokerRequests && getBrokerWebUI()) || ""
onClick
openBrokerManager
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
create_service
variant
text
dataQa
solace-header-action
onClick
handleCreateService
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_user_access
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRetry
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
service.name
variant
link
dense
true
onClick
() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: "status" }))
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
close
dataQa
close
variant
outline
onClick
handleClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cancel
dataQa
cancel
variant
text
onClick
onCancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
createService
dataQa
createService
variant
call-to-action
type
submit
isDisabled
createServiceDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_port_config
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
cloning-documentation
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/cloud-clone-service.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCustomize
isDisabled
isDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
reset
variant
icon
onClick
handleResetPort
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_services
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_pick_service_type.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_cloud
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/choose-cloud-provider.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_regions
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_regions.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
resourceAssignmentDelete
title
messages.remove
onClick
() => onRemoveResourceAssignment(resourceAssignment)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"outline"
onClick
() => onAddResourceAssignment(displayedUserTypes[0])
isDisabled
isDisabled
dataQa
addUser
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!ssoBrokerEnabled
onClick
handleManageBrokerButton
variant
text
dataQa
manageBrokerButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleViewSettingMapping
variant
link
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleButtonClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleGotoUserGroups
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
hyperLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
aupIsLoading
onClick
handleAgree
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`limitChangeButton-${index}`
id
`limitChangeButton-${index}`
variant
text
onClick
() => {
+							setNewServiceLimit(row.limit ?? 0);
+							setEditLimitsRow(row);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/ep/runtime/event-management-agents
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
https://docs.solace.com/Cloud/environments.htm
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
https://docs.solace.com/Cloud/environments.htm
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/environments.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
/ep/runtime?sortBy=environment
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${testItem.id}-${testItem.name}-template-enabled`
variant
link
dense
true
onClick
() => {
+									history.push(`/ep/runtime/templates`);
+								}
dataQa
runtimeTemplatesLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("environmentTypeInfo", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("environmentsInfo", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
memSidePanelCloseButton
title
Close Side Panel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleButtonClick
dataQa
buttonEventManager
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/environments.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/ep/runtime/templates
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm
dense
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
createEnvButton
onClick
onCreateEnvClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
discardChanges
isDisabled
checkIfChangesDone()
onClick
handleCancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
checkIfSaveDisabled()
dataQa
saveProfileButton
id
saveButton
onClick
handleApplyButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/drawdown.htm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!canSave
onClick
() => saveNotifyPreferences()
variant
call-to-action
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleCreateGroup
variant
call-to-action
dataQa
createGroupButton2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleShowMore
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleShowLess
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleGroupMapping
variant
text
dataQa
groupManagementButton
isDisabled
ugCount <= 0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleCreateGroup
variant
outline
dataQa
createGroupButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearInput
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"searchIcon"
variant
icon
onClick
handleClearInput
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsDialogOpen(true)
variant
outline
id
enableSsoConfigurationButton
dataQa
enableSsoConfigurationButton
isDisabled
!isSsoConfigured
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
editSsoConfigurationButton
id
editSsoConfigurationButton
onClick
() => editSSOConfiguration()
isDisabled
!hasLoginSubdomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setHideSecretKey((state) => !state)
title
en.accountSettings[hideSecretKey ? "showKey" : "hideKey"]
variant
icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => updateSsoConfiguration({ state: "enabled" })
variant
call-to-action
id
saveSsoConfigurationButton
dataQa
saveSsoConfigurationButton
isDisabled
!haveStagedChangesToSave
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsDialogOpen(true)
variant
outline
id
testSsoConfigurationButton
dataQa
testSsoConfiguration
isDisabled
!isSsoConfigured
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleSsoSetup
variant
outline
id
setupSsoButton
dataQa
setUpSsoButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.accountSettings.learnMoreSSODoc
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
discardFilterChanges
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
downloadAuditLogs
dataQa
downloadAuditLogsJsonLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
clearAllButton
onClick
discardFilterChanges
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setSelectedRow(null)
dataQa
logDetailsCloseButton
title
Close
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("setup-idp-link", "link")
onClick
handleGroupClaimHelpLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace.com
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsDialogOpen(true)
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace.com
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleTestAccessClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!claimId
onClick
handleTestAccessClick
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!canDiscardChanges
onClick
discardChanges
variant
text
dataQa
discardChangesButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)
variant
call-to-action
isDisabled
!canSave || !(canDiscardChanges || !isEnabled)
dataQa
saveChangesButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
cancelAddMapping
variant
text
dataQa
cancelAddClaimMapping
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
addMappingHandler
variant
outline
isDisabled
!groupMappingState ||
+						selectedUserGroups.length < 1 ||
+						!claimValuesMapping ||
+						claimValueError ||
+						claimValuesMapping.trim().length < 1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
addGroupMappingHandler
variant
text
isDisabled
claimMappingToEdit !== -1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
cancelClaimMappingEditHandler
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => saveMappingDetails(rowData.id)
variant
outline
isDisabled
!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
supportFormCancel
onClick
handleCancelButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
supportFormSubmit
onClick
handleSaveButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("solaceCloudStatus", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => history.push(`/account-details/users`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setIsRequestLimitChangeDialogOpen(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => history.push(`/support/question`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
en.overview.eventPortalSection.objectCountHelpLink
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => history.push(`/account-details/service-limits`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsRequestUpgradeDialogOpen(true)
variant
text
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
advancedSettingsButton
onClick
() => setIsAdvancedSettingsHidden((x) => !x)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
deleteAccountButton
onClick
() => setIsDeleteAccountDialogOpen(true)
variant
call-to-action
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push("/")
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
sendEmailButton
isDisabled
!email.isValid
type
submit
onClick
handleSubmit
variant
call-to-action
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleNavigateToLogin
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
brandableTextValueConverter("insights-notifications", "link")
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
stopNotification
variant
text
isDisabled
isFetching || mutating
onClick
() => setOpenConfirmationDialog(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
discardChanges
variant
text
isDisabled
isFetching || !formIsDirty || mutating
onClick
onDiscardChanges
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
NotificationIsActive ? "updateNotifications" : "activateNotifications"
variant
call-to-action
isDisabled
isFetching || !formIsDirty || mutating
onClick
onSubmission
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
brandableTextValueConverter("insights-email-integrations", "link")
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace.com/contact/
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/environments.htm")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.contactSupport
variant
link
href
brandableTextValueConverter("supportPage", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
brandableTextValueConverter("eventPortalCloudEma", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
underline
always
href
brandableTextValueConverter("tokenManagementHelpLink", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCreateTokenClick
variant
text
isDisabled
hasMaxNumberOfTokens
dataQa
createApiTokenButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCopyToken
dataQa
copyTokenButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("solaceOpenAPIV2", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
mode === "create" ? "text" : "call-to-action"
onClick
handleCancel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit
isDisabled
createTokenIsLoading
dataQa
createTokenBtn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onRegenerateTokenClick
variant
text
dataQa
regenerateTokenButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => history.push(`/user-settings/notify-settings`)
dataQa
notificationSettingsButton
title
en.notifications.settings
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
refreshNotificationSettingsButton
onClick
() => refetchNotifications()
variant
outline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
markAllNotificationsReadButton
onClick
() => markAllRead()
variant
call-to-action
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
`${header.key}-copy`
onClick
() => navigator.clipboard.writeText(header.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
update
key
`${item.serviceId}-update`
isDisabled
!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)
onClick
() => handleUpdate(item)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
`/services/${item.serviceId}`
variant
link
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("tracingDestinationLink", "link")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
tracingProfile.infoMessage.link.href
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.otlpHttp
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.otlpHttp
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
viewServicesButton
variant
text
onClick
() => setSynchTracingDialog(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
tracingLimits.infoMessage.link.href
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
tracingDestinationCreationIsDisabled ? "text" : "outline"
isDisabled
tracingDestinationCreationIsDisabled
onClick
() => setTracingDialog({ mode: Mode.Create, isOpen: true })
dataQa
createTracingProfile
+
+ +
+
+ +
+
+
+ SolaceTypography + 667 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep273
intg129
mc74
saas191
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant338
sx73
fontWeight28
mb23
id23
mt20
ml18
component18
key17
display16
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (667)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
"h3"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
"h5"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
"h5"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ml
1
color
bulkMoveLimitExceeded ? "error" : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
marginTop
0.5
marginBottom
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
fontWeight
400
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
align
left
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
role
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
component
span
variant
h5
key
`roles-${label}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
3
fontWeight
400
fontSize
14
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
paddingBottom
1.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontSize
12
paddingTop
1
paddingLeft
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
sx
{ color: "primary" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: "primary" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontSize
12
paddingTop
1
paddingLeft
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
mb
2
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
"h3"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
color
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
fromGraphView ? { color: "text.secondary" } : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
width
"max-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
messageDetailsAddEvents
width
"max-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"body1"
sx
{ marginBottom: 1, color: ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileNameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"updateLabel"
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
topicAddress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.deprecated.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
selected && 500
pl
imageComponent ? 2 : 5.25
pr
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
fontWeight
600
sx
{ color: theme.palette.ux.brand.w30 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
width
600
sx
{ fontSize: "1.5rem", color: invertTextColor }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
showGraphic ? 500 : "100%"
sx
{ color: invertTextColor }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
sx
{ fontSize: "1.5rem", color: `${theme.palette.ux.primary.text.w10}` }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: `${theme.palette.ux.primary.text.w10}` }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
"h3"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mr
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
`24px`
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
data-qa
reuseIndexPurposeQuestionTooltip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
reuseIndexPurposeDescriptionTooltip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
data-qa
reuseIndexPurposeQuestionPopup
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
reuseIndexPurposeDescriptionPopup
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
style
{ marginBottom: "16px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
key
`filtername-${index}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
"body1"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
align
left
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${consumer.name}-template`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
color
"warning"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
1
variant
"body1"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
1
variant
"body1"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
1
variant
"body1"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
id
applicationDomainName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
id
applicationDomainName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
gutterBottom
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ ml: 1 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_payload_fieldName`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_payload_propertyType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
paddingY
1
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
display
"flex"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
color
success
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mb
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
1
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_header_propertyName`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_header_propertyType`
pr
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
m
1
id
`${convertedId}_wrapper_fieldName`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
m
1
id
`${convertedId}_wrapper_fieldType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
2
pb
2
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_constant_propertyName`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_constant_propertyType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
paddingY
1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_header_propertyName`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_header_propertyType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_header_propertyName`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_header_propertyType`
pr
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
paddingY
1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
inline-block
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
key
config.key
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"apiErrorResponse"
display
inline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"generalErrorPrefix"
display
inline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"errorMessages"
display
inline
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"generalErrorSuffix"
display
inline
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: theme.palette.grey[500] }
id
conn_flow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
id
connector_marketing_title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
connector_marketing_description
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
"flex"
fontWeight
500
mr
4
id
connector_marketing_help
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mb
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
auto
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ml
1
mt
"6px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mb
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
auto
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
textVariant ? textVariant : "body1"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
ml
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{
+								overflow: "hidden",
+								textOverflow: "ellipsis",
+								display: "-webkit-box",
+								WebkitLineClamp: "3",
+								WebkitBoxOrient: "vertical"
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }
ml
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }
ml
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
mr
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
color
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
color
"error"
sx
{ width: "90%", wordWrap: "break-word" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
color
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
variant ?? "body1"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mb
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mb
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
pl
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
pl
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
inline-block
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() =>
+								history.push({
+									pathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`
+								})
sx
{ color: theme.palette.primary.main }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
role
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
component
span
variant
h5
key
`roles-${label}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
component
div
sx
{ color: "text.secondary" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
ml
-0.5rem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
mt
theme.spacing(1)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mt
theme.spacing(1)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
theme.spacing(1)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
pt
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
minWidth
634px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
minWidth
634px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
marginTop
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
role
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
`roles-${label}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
16
mr
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
14
sx
{ color: theme.palette.primary.main }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
key
role
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
4
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "14px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "16px", fontWeight: "500" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "14px" }
marginTop
2
marginBottom
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
paddingTop
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
marginTop
2
marginBottom
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
24px
fontWeight
500
textAlign
right
data-qa
pcuCostValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
style
{ alignContent: "center" }
fontSize
24
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
style
{ color: theme.palette.ux.secondary.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
4
fontWeight
500
style
{ color: theme.palette.ux.secondary.wMain }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
3
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
3
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
display
"inline-block"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
display
"inline-block"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
display
"inline-block"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
display
"inline-block"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
16
mr
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
14
sx
{ color: theme.palette.primary.main }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
fontSize
14
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
14
sx
{ color: theme.palette.primary.main }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
1
mb
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
3.3
ml
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
1rem
sx
{ opacity: 0.8 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
securitySettingsWarning
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
subTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ whiteSpace: "initial" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontWeight: "bolder", color: "inherit" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
display
"inline-block"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
key
item
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
0.5
mb
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "1.33rem", marginBottom: ".3rem" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mr
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mr
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
key
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
fontWeight
400
textAlign
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
14
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
"block"
data-qa
supportModalSuccessMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
display
"contents"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
display
"block"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontWeight
400
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
className
message
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
pt
2
pb
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pb
3
fontWeight
400
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pb
2
fontWeight
400
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pb
2
fontWeight
400
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
style
{ paddingLeft: "0" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
style
{ paddingLeft: "0" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
desc
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ml
2
key
index
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
color
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
detailsLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
detailsLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
capitalize
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
noProblemText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
sx
{ paddingRight: theme.spacing() }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
color
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: theme.palette.text.secondary }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
sx
{ paddingRight: theme.spacing() }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
textAlign
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ wordBreak: "break-all", whiteSpace: "normal" }
textAlign
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
sx
{ wordBreak: "break-all", whiteSpace: "normal" }
textAlign
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
messageHeading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
messageHeading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
messageHeading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
attachReadStateClassName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
className
attachReadStateClassName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+
+ +
+
+
+ SolaceLabel + 302 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep246
intg25
mc20
saas11
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id300
htmlForId77
required52
noWrap12
readOnly6
disabled5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (302)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Domain`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`accessApproval`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
parentShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"eventMesh[description]-label"
htmlForId
"eventMesh[description]-label"
disabled
mode === "view"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventMesh[environment]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`messagingServiceDetails[${attribute}]-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"bulkMoveCurrentAppDomainLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"eventBrokerConfiguration"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"eventBrokerName"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"applicationName"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"applicationVersion"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"directClients"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"eventQueues"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"kafkaConsumers"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"authenticationType"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"authenticationA"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"authenticationB"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"clientProfile"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"RDPName"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"RESTConsumerType"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"clientProfileLabel"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"queueConsumers"
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Name`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Version`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
nameHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
typeHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
roleHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"resourceAssignmentListLoading"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
resourceType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${version.id}[versionVersion]-label`
disabled
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${version.id}[versionDisplayName]-label`
disabled
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${version.id}[versionDescription]-label`
disabled
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
requiresApproval
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
version
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
associateWithEvent
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attributeName-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"type-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"scope-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Preview`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}[customColour]-label`
htmlForId
`${entityType}[customColour]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}[customIconLogo]-label`
htmlForId
`${entityType}[customIconLogo]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityName}[versionState]-label`
htmlForId
`${entityName}[versionState]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityName}[endOfLifeDate]-label`
htmlForId
`${entityName}[endOfLifeDate]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[version]-label`
htmlForId
`${versionObjectName}[version]`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[stateName]-label`
htmlForId
`${versionObjectName}[stateName]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[displayName]-label`
htmlForId
`${versionObjectName}[displayName]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkedApplications-label
htmlForId
htmlForId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[version]-label`
htmlForId
`${versionObjectName}[version]`
required
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[displayName]-label`
htmlForId
`${versionObjectName}[displayName]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[state]-label`
htmlForId
`${versionObjectName}[state]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"newVersion-label"
htmlForId
"newVersion"
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfile
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileNameLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfile
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileNameLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
defaultClientProfileName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
multiSelectKey
noWrap
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showNewEventVersionIndicator-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"snapNodeToGrid-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`entityVersion-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[endOfLife]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[endOfLife]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[details]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[details]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[shared]-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[content]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[content]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
env
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventMeshOfMessagingServiceToBeDeleted-none-label
disabled
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[name]-label
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[id]-label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[agentMode]-label
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[EventBrokers]-title
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`serviceLabel-${messagingService.id}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connectedMem"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgentIdLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showSchema-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"layoutOptions-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"levelDepthOptions-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"applicationDomainLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"appVersionSummary-applabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"appVersionSummary-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"updateLabelObjecs"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"updateLabelAction"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"environmentListLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"environmentListLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
detailsNameLabel
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
detailsDescriptionLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
detailsEnvironementAssociationLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileName
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
enumDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
enumShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductBrokerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
brokerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiBrokerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
topicAddress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
requiresApproval
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
customModeNone
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`postRequestTarget-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"requestTargetEvaluation-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${prefix}TypeLabel`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${prefix}NameLabel`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${prefix}ValueLabel`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"postRequestTarget-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"requestTargetEvaluation-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
restDeliveryPointConfigurationEmpty
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`restDeliveryPointConfigurationType-label`
htmlForId
`restDeliveryPointConfigurationType`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`restDeliveryPointName-label`
htmlForId
`restDeliveryPointName`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
template
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
customModeNone
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"selectAllDomainsLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"selectedDomainsLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
sectionId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"filename-label"
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
kafkaDelimiter
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
enumerationVersion[values]-label
htmlForId
enumerationVersion[values]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
enumShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
enumeration[name]-label
htmlForId
enumeration[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
enumerationVersion[values]-label
htmlForId
enumerationVersion[values]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[version]-label`
htmlForId
`${versionObjectName}[version]`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[displayName]-label`
htmlForId
`${versionObjectName}[displayName]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearchLabel
htmlForId
domainsSearch
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"filter-popup-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApi[name]-label
htmlForId
eventApi[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApi[brokerType]-label
htmlForId
eventApi[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
declaredEAPVersions-label
htmlForId
declaredEAPVersions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messageDeliveryMode
required
!isEmpty(getValues(`${versionObjectName}.name`))
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
accessType
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
queueType
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
maxTTL
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
maxMsgSpoolUsage
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
planNameLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
availabilityLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
approvalType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
messageDeliveryMode
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
accessType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
queueType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
maxTTL
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
maxMsgSpoolUsage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProduct[name]-label
htmlForId
eventApiProduct[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProduct[brokerType]-label
htmlForId
eventApiProduct[brokerType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schema[name]-label
htmlForId
schema[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schema[schemaType]-label
htmlForId
schema[schemaType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"schemaTypeLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaVersion[content]-label
htmlForId
schemaVersion[content]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaVersion[content]-label
htmlForId
schemaVersion[content]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-name`
htmlForId
`applicationVersion[consumers].${index}.name`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-consumerType`
htmlForId
`applicationVersion[consumers].${index}.consumerType`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
subscription
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attractedEventsLoadingLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attractedEventsNoPermission"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attractedEvents"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-name`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-consumerType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${consumer.name}-templateLabel`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
suggested-events
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`brokerType-${topicDomain.id}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`topicDomainLabel-${topicDomain.id}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`brokerTypeLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`topicDomainLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[name]-label
htmlForId
applicationDomain[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[description]-label
htmlForId
applicationDomain[description]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[name]-label
htmlForId
applicationDomain[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[description]-label
htmlForId
applicationDomain[description]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`brokerTypeLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`topicDomainLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"name-label"
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"resource-label"
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"description-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"topicAddressResourcesMessageLabel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"topicAddressResourcesPreview"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event[name]-label
htmlForId
event[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event[brokerType]-label
htmlForId
event[brokerType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event[requiresApproval]-label
htmlForId
event[requiresApproval]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
topicAddressResource
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"eventVersion[topicAddressLevels]-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
schemaType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
keySchemaType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventBrokerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventShared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"eventVersion[topicAddressLevels]-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
schemaType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
keySchemaType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
appearsIn-label
htmlForId
appearsIn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
id
"domainsSearch[label]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[details]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[details]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[shared]-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[description]-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[content]-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`schemaVersion[version]-label`
htmlForId
`schemaVersion[version]`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaVersion[content]-label
htmlForId
schemaVersion[content]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`eventVersion[version]-label`
htmlForId
`eventVersion[version]`
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`eventVersion[topicAddress]-label`
htmlForId
`eventVersion[topicAddress]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
associateWithEvent
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${eventBroker.id}-noCredentials`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${eventBroker.id}-noApplicationVersion`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
application[name]-label
htmlForId
application[name]
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
application[brokerType]-label
htmlForId
application[brokerType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
not-declared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
declared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
selectedMem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"subscription"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
application
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventTopic
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
subscriptionEvent
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
subscriptionEvent
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomainLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
environmentsLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
constant-radio-group
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
constant-radio-group
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
targetHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
headerExpression
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${props.id}-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${id}-key`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
type
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
typeValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${detail.label}-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_status"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_direction"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_description"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`connector-${config.label}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_sidepanel_eventBrokerService"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_sidepanel_bindingDestination"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"sslKeyStoreFileUploaderLabel"
required
!readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${label}_label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
connectorType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
environmentsLabel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
connectorType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
keyTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
valueTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${id}-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`role-label-${resourceRole}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
resourceType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
nameHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
typeHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
accessHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"resourceAssignmentListLoading"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${id}-label"`
htmlForId
htmlForId
required
required
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
endpointsLabel
htmlForId
endpoints
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
mateLinkEncryptionLabel
htmlForId
mateLinkEncryption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
certAuthoritiesLabel
htmlForId
cloneCertificateAuthorities
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceTypeLabel
htmlForId
serviceType
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environmentLabel
htmlForId
environment
required
!!serviceId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
htmlForId
nameCheck
noWrap
true
id
`${nameCheck}-label`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerFamilyLabel
htmlForId
brokerFamilyVersion
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
msgVpnNameLabel
htmlForId
msgVpnName
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
regionLabel
htmlForId
region
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceNameLabel
htmlForId
serviceName
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerVersionLabel
htmlForId
brokerVersion
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloudLabel
htmlForId
cloud
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clusterNameLabel
htmlForId
clusterName
required
!!edit
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
systemTypeLabel
htmlForId
systemType
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
resourceType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
nameHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
typeHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
accessHeader
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"resourceAssignmentListLoading"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
required
id
id
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
activeStorageAddOns
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
unusedStorage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
id
current-environment-label
+
+ +
+
+ +
+
+
+ SolaceTooltip + 298 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep245
intg10
mc14
saas29
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
title296
variant245
placement145
maxWidth82
dataQa27
key13
open10
onOpen9
onClose9
disableHoverListener6
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (298)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventManagementAgent?.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody(memName)
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
environmentOption.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
Remove
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`Remove`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
tooltipTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
messages.preview.aclProfile
maxWidth
medium
placement
bottom
dataQa
aclProfileConfig
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
messages.credentials.clientCredentials
maxWidth
medium
placement
bottom
dataQa
clientCredentialConfig
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
identifier
maxWidth
medium
placement
bottom
dataQa
`queueConfig-${identifier}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
queueBindingTitle
maxWidth
medium
placement
bottom
dataQa
`queueBindingConfig-${queueBindingTitle}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
identifier
maxWidth
medium
placement
bottom
dataQa
`rdpConfig-${identifier}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
POPOVER_CONTENT
maxWidth
medium
placement
top-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title

+								{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}
+							
placement
"bottom-start"
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
{messages.add.applicationVersionRemovalWarning}
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
{messages.add.noConfigurationWarning}
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
{messages.add.noConfigurationWarning}
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
eventName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
eventVersion?.displayName || eventVersion?.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
subscriptions[0]
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
subscriptions[0]
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${id}-subscriptions`
variant
TooltipVariant.rich
title
<>
+									{subscriptions.slice(1).map((sub, index) => (
+										
+ {sub} +
+ ))} +
placement
bottom-start
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
discrepancies[0]
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
discrepancies[0]
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${id}-discrepancies`
variant
TooltipVariant.rich
title
<>
+									{discrepancies.slice(1).map((discrepancy, index) => (
+										
+ {discrepancy} +
+ ))} +
placement
bottom-start
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
getHelpTooltipContent()
placement
"bottom-start"
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
getTitle(title, description)
placement
top-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
title ?? "Configuring"
placement
top-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
Update event broker to configure recent changes to this application
placement
top-start
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
userName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
resourceName
data-qa
resourceNameTooltip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
role.title
placement
placement
dataQa
`roleIcon-${resourceRole || "none"}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
selectedEntity.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
selectedDetails.accessDenied && selectedDetails?.tooltip
placement
bottom-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
onVersionHover ? onVersionHover(version.id) : ""
placement
left-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${version.id}-${index}`
variant
TooltipVariant.rich
title
<>
+													{`Matching text for '${searchText}'`}
+													
+														{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {
+															return 
; + })} + +
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
children
open
open
onOpen
handleOnOpen
onClose
handleOnClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
variant
TooltipVariant.rich
title
<>
+											{searchText && {`Matching text for '${searchText}'`}}
+											
+												{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {
+													return 
; + })} + +
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.displayName || version.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
isSubscribeReadOnly ? "Already subscribing to event" : ""
placement
right-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
isPublishReadOnly ? "Already publishing event" : ""
placement
right-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.displayName || version.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttribute.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Add the custom attribute to All application domains or only the Current application domain."
variant
html
placement
"bottom-start"
dataQa
"customAttributeScopeTooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
getCustomAttributesHelpTooltipContent()
placement
"right"
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttribute.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttributeValue?.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
getStringValuesTooltipContent(customAttributeValue?.stringValues)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
caName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
handleVersionListHover()
placement
right-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.latestVersion
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
<>
+						Link applications to show an organizational relationship in the graph view.{" "}
+						
+							Learn more about linked applications
+						
+					
maxWidth
medium
placement
right-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
placement
bottom-start
disableHoverListener
addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
placement
bottom-start
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
enterDelay
800
enterNextDelay
800
disableFocusListener
true
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
graphViewToggle
title
Graph View
placement
bottom-start
disableHoverListener
selected === "graph"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
listViewToggle
disableHoverListener
disableHoverOnListView
title
entityName ?  : "Components"
variant
entityName ? "html" : "text"
placement
bottom-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom Out
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom In
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom Out
disableHoverListener
disabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom In
disableHoverListener
disabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
removedNode.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
removedNode.displayName
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.parentName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.versionName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.name
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
customAttributeName
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
"Filters relevant only to other object types"
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventApiProductName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.parent?.name
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.displayName || item.version
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
messages.configuration.description
placement
top
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
renderProtocolPopover(messagingService.supportedProtocols ?? [])
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
dataQa
`domainIcon-${applicationDomainName}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
itemName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.displayName || item.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
dataQa
`domainChip-${applicationDomainName}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value.label
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value.label
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value.label
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
"The event broker must be in a modeled event mesh to receive runtime data or send configuration data."
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
brokerType
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
row.modeledEventMesh.name
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.name
variant
TooltipVariant.overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
variant
TooltipVariant.rich
placement
left-start
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
(runtimeAgent as EventManagementAgent)?.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
getSempUrlFromEPCore(messagingService)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
getMsgVpnFromEPCore(messagingService)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
placement
bottom
title
{renderUnavailableMessagingServices()}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
STATUS_DESC_DISPLAY_MAP[status]
placement
"right"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
timeMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityVersion.parent.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityVersion.displayName || entityVersion.version
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityVersion.displayName || entityVersion.version
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
getTooltipVariant(item)
title
item.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
variant
TooltipVariant.rich
placement
left-start
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(
+								AUDIT_ENTITY_TYPE_MAP[auditEntityType]
+							)}.`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverTitle
placement
left
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverTitle
placement
left
maxWidth
full
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
secondaryPanelTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getSidePanelTitle()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`domainName-${domain.id}`
variant
"overflow"
title
domain.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverContent
dataQa
`appVersionSummaryPopover-${application.id}`
placement
left-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
title
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverContent
placement
"bottom-start"
dataQa
`auditImportPopover-${jobId}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverContent
dataQa
`auditImportPopover-${createdTime}`
placement
bottom-end
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : ""
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : ""
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
renderSubjectRelationshipHelp()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
tag.id
variant
text
title
getTooltipMessage(tag)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
getTooltipMessage(hideAuditTag)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
name
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
topicAddress
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationVersion.displayName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
applicationVersion.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltipBody
placement
"bottom-start"
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
entityName
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
rowIdentifierValue
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
parentName
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${row.designObjects.parentName}`
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${row.designObjects.parentName} ${numAdditionalParents}`
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
enumEntity.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"You do not have access to this Application Domain"
placement
"left"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventApiProduct.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
schema.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"You do not have access to this Application Domain"
placement
"left"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
application.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
en.application.applicationType[application.applicationType]
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(application.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventApi.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
event.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"You do not have access to this Application Domain"
placement
"left"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(event.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
secondaryAction?.tooltip
placement
bottom-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
selectedDetails.accessDenied && selectedDetails?.tooltip
placement
bottom-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
reuseIndexTooltip
variant
html
title

+											
+												{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}
+												{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}
+											
+											
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}
+												
+												
+													÷
+												
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}
+												
+											
+											
+											
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}
+												
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}
+												
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}
+												
+											
+										
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getTooltipContent()
variant
TooltipVariant.rich
placement
right
dataQa
queueBindingHelpTooltip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.name
maxWidth
medium
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
domain.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
placement
"bottom-end"
maxWidth
"full"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
Unable to edit when custom attributes have unsaved changes
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
version
variant
overflow
title
versionInfo?.displayName || versionInfo?.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttributeValue.customAttributeDefinitionName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
getCustomAttributesHelpTooltipContent()
maxWidth
"medium"
placement
"bottom-end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
`Unable to edit when ${entityType} has unsaved changes`
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
unsavedChangesWarningMsg
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getVersionValues()?.[versionObjectName]["version"]
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getVersionValues()?.[versionObjectName]["displayName"]
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title

+											Event version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.
+										
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltip
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
topicAddress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
node.displayName || node.versionSemver
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
nodeWarningTypeDescription[warnings?.[0]]
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
SecondaryTextHoverContent()
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
topicName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
versionData.displayName
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
placement
top-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
placement
top-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
level.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
level.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title

+						
+ + All object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file. + + + Learn about downloading AsyncAPI documents + +
+
+ Prepend Application Domain Name + Use this option when the file contains objects with the same name. +
+
+ Append Major Version Number + Use this option when the file contains more than one version of the same name. +
+
variant
html
maxWidth
"medium"
placement
"bottom-start"
dataQa
"namingStrategyTooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.parent?.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltipContent
maxWidth
"medium"
placement
"top-start"
dataQa
"availability-Tooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltipContent
maxWidth
"small"
placement
"top-start"
dataQa
"approvalTypes-Tooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.requestor
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
formatISOTimeFromNow(row.createdTime)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
request.eventName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap[request.applicationDomainId]?.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
request.subscription
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
eventMesh.environmentName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
warning
placement
right
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
consumer.name
placement
top
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
placement
"bottom-start"
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
key
`tooltip-${name}`
maxWidth
medium
title
applicatonDomainPopoverContent(name)
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
placement
"bottom-start"
maxWidth
"full"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityConfigSidePanelProps.title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
handleVersionListHover()
placement
right-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
"Application Domain"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltip
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
displayName ? displayName : version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
viewedSchema.name
placement
bottom-end
dataQa
viewedSchemaName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
maxWidth
medium
title
applicationDomainsMap[schemaParent.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
sharedSchema ? "This event is shared. Only shared schemas can be created" : ""
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${schemaVersionSelectedMap[row.id].length} Added`
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
"Selected"
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
consumerName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
versionData.displayName
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
messages.configuration.description
placement
top
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
maxWidth
medium
title
messages.action.addApplication
placement
top
disableHoverListener
!!applicationVersion?.id
disableFocusListener
!!applicationVersion?.id
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.approved
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.pending
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.declined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.toBeRequested
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
consumerName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
subscription
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
"Event Access Requests"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltip
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
eventName ? "Event is not shared across application domains" : "You do not have access to view this event because it is not shared"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
request.subscription
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
versionData.displayName
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
topicAddress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.displayName || version.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
item.id
title
"Event is not the latest version"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
`Consumer${consumersCount > 1 ? "s" : ""}: ${consumersCount}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
ADDITIONAL_CONSUMED_EVENTS_INFO
maxWidth
"medium"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.name
variant
overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
messages.info
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
label
variant
TooltipVariant.overflow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
item.source
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
item.target
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.nonDroppableTooltip
open
isActive && !canDrop
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.source
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.target
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.source
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.target
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
role.title
dataQa
`roleIcon-${resourceRole || "none"}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
userName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
maxQueueMsgsInfo
placement
"bottom-start"
maxWidth
small
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"service-auth-tooltip"
variant
html
title
placement
"right"
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
placement
bottom
title

+									{helpMessage}
+								
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
t({ id: "id_view_tiles", message: "Grid View" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
t({ id: "id_view_list", message: "List View" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
email
placement
top-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
servicesInMeshes.get(service.id as string)?.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
organization?.orgAutomatedUpgradeEnabled
+										? t({ id: "id_release_revoked_icon_auto", message: "The event broker requires an upgrade. Plan upgrade on the service's Status tab." })
+										: t({ id: "id_release_revoked_icon", message: "The event broker requires an upgrade." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
userAccessInfo.userAccessText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
environment.label || "n/a"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
servicesInMeshes.get(serviceId)?.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
userAccessInfo.userAccessText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
organization?.orgAutomatedUpgradeEnabled
+										? t({ id: "id_release_revoked_icon_auto", message: "The event broker requires an upgrade. Plan upgrade on the service's Status tab." })
+										: t({ id: "id_release_revoked_icon", message: "The event broker requires an upgrade." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
userName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
chipProps.tooltip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+								{roleIdNameMap &&
+									user.roles
+										.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)
+										.map((role) => {roleIdNameMap[role]})}
+							
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${testItem.id}-${testItem.name}-template-warning`
title
environmentsStr.configurationTemplates.warning
dataQa
runtimeTemplatesWarning
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`The environment type cannot be changed.`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`The environment type cannot be changed.`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
environment.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
textValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
variant
html
dataQa
pcuCalculationTooltip
title

+										{drawdownUsage.messages.title}
+										
+											{drawdownUsage.messages.message}
+										
+										
+									
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
user.email
variant
html
title

+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}
+																	
+																	
+																		{user.firstName ? `${user.firstName} ${user.lastName}` : "-"}
+																	
+																
+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}
+																	
+																	{user.email}
+																
+															
placement
bottom
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+									{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (
+										{mappedRolesData[item].name}
+									))}
+								
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
rowData.claimValues
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+									{rowData.userGroups
+										.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)
+										.map(({ name, value }) => (
+											{name}
+										))}
+								
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
getStatusLabel(c.status)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
getStatusLabel(mc.status)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
en.overview.eventPortalSection[
+											user?.eventPortal2AccessEnabled ? "totalObjectsTooltip1" : "totalObjectsTooltip2"
+										]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+												{en.overview.eventPortalSection.totalObjectsCountText}
+												
+													{en.overview.eventPortalSection.objectsCountLearnLinkText}
+												{" "}
+											
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.notReadyTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.readyTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.notReadyTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.inMaintenanceTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.dcOperational
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.dcNotoperational
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
row?.epCapabilities == Status.ERROR ? (
+																<>
+																	{en.privateRegions.eventManagementAgentErrorText}{" "}
+																	
+																		{en.privateRegions.contactSupport}
+																	
+																
+															) : undefined
variant
rich
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tooltip
variant
html
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
placement
bottom-start
variant
html
title
tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tracingDestinationLimitReached
+									? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)
+									: undefined
variant
html
+
+ +
+
+ +
+
+
+ SolaceMessageBox + 233 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep146
intg16
mc38
saas33
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant233
message233
showCloseButton65
onClose56
dataQa56
showIcon30
dense9
details5
key3
color1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (233)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
submitWarning.message
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
+ Event Portal does not require your authentication passwords. After Event Portal generates the connection file, replace + the environment variables with your passwords in the installation command, so you can keep them secure.{" "} + + Learn more about authentication passwords + +
showCloseButton
showCloseButton
onClose
onClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer."
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.entities.labels.bulkMove.bulkMoveInfo[entityType]
variant
"info"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error.message
showCloseButton
true
onClose
handleErrorBoxClose
dataQa
errorMessageBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventAccessRequestError
dataQa
eventAccessRequestErrorMsgBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
+ + {`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`} + +
+ +
+ + View Mismatches + +
+
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
variant
"info"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error.message
showCloseButton
true
onClose
handleErrorBoxClose
dataQa
errorMessageBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventAccessRequestError
dataQa
eventAccessRequestErrorMsgBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
+ + {`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`} + +
+ +
+ + View Mismatches + +
+
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
getErrorMessage(errors)
dataQa
previewErrorMsgBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
dataQa
"aclProfileMessageBox"
message
+ {messages.preview.aclProfileInfo}{" "} + + {messages.preview.learnMoreAboutACLProfiles} + +
onClose
() => handleCloseAclProfileInfoMessage()
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
dataQa
errorMsgBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventAccessRequestError
dataQa
eventAccessRequestErrorMsgBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.entities.labels.bulkMove.inProgress
variant
"info"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event."
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
showCloseButton
message
error
onClose
() => setError(null)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
message
addHelpText
onClose
() => onCloseAddHelp()
variant
"info"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
deleteHelpText
variant
"warn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
message
unsavedChangesWarningMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"After an object version is Retired, you cannot associate it to other object versions."
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(
+								entityType
+							)} will be removed from the graph view if all versions are in retired state.`
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
stateChangeErrorMessage
variant
error
color
theme.palette.ux.error.w100
details
getDetails()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"Objects must be in Draft state to edit most attributes."
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead."
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? "versions" : "version"} open for editing`
showCloseButton
true
onClose
() => setShowUnsavedWarning(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit."
showIcon
true
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
dataQa
versionWarningMsg
message
versionWarningMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
"Any unsaved changes will be lost if you reload the page."
showIcon
true
dataQa
"unsavedWarning"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
backendErrorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
enumErrorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
enumWarningMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
showIcon
true
message
warning
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(item.name)
onClose
handleDismissErrorStatus
dataQa
"deletionErrorMsgBoxSidePanel"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorReferencedGatewayMessaggingServices
variant
error
message
errorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorReferencedVersions
variant
error
message
errorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+ {eventManagementAgentResources.version.needUpgradePrompt} + + {eventManagementAgentResources.version.needUpgradeLinkText} + +
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Connection details updated. Download the file and run it with the Event Management Agent to update the connection."
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
Unable to create connections to Event Management Agents.
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
validationError.eventBrokerError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
The event broker must be in a modeled event mesh to receive runtime data or send configuration data.
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+ Unable to delete connection to{" "} + + { + selectedMessagingServices.filter((service) => { + return service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted; + })[0]?.name + } + + . It is associated with one or more objects in the environment. +
showCloseButton
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
`Event Management agent ${emsStatus}`
variant
success
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
Event Management Agent installation setup complete
variant
success
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors."
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"The next steps require you be on the system hosting the connected agent."
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message

+									
+ You can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those + datacenters. +
+ + View Datacenters + +
showCloseButton
true
onClose
() => setViewDatacentersInfoBanner(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to.
showCloseButton
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
errorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+ Connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that + the agent connects to. + + handleDownloadConnectionFile(item.id, item.name)}> + Download Connection File + + +
showCloseButton
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
<>
+								{ConnectionStatusLabel.connectionIncomplete}
+								

+ Install the Event Management Agent and run the connection file to connect to Event Portal.{" "} + + Download and install the Event Management Agent. + +

+
showCloseButton
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
errorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
message
Event management agent not connected to Event Portal. View logs for details.
showCloseButton
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
{dataCollectionErrorMessage}
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message

+											
+												Your event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and
+												re-add it to the modelled event mesh
+											
+
+											
+												 handleDeleteMessagingService(selectedMessagingService)}>
+													Delete From Event Portal
+												
+											
+										
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
{renderDataCollectionError}
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+ Unable to delete connection to {selectedMessagingService.name}. It is associated + with one or more objects in the environment. +
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
message
message
onClose
closeInfoMsgBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+						Modeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows
+						between publishing and subscribing applications.{" "}
+						
+							Learn more about modeled event meshes
+						
+					
variant
info
showCloseButton
true
onClose
onClose
dataQa
memInfoMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
showIcon
true
message
warningInfoBoxMessage
details

+							{showServiceWarning && (
+								
+ Choose Event Broker + {renderMessagingServiceSelect()} +
+ )} +
+ + {showAuditResultTypeWarning ? "Choose Audit Result Type" : "Selected Objects"} + + {renderSelectionStats()} +
+
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Objects that are already in Event Portal do not need to be imported again."
showCloseButton
true
showIcon
true
dataQa
"matchFoundMessage"
onClose
handleCloseMatchFoundMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
{errorMessage}
+
variant
"error"
showCloseButton
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
onClose
handleCloseInfoMessage
message
AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
Resolve partial matches caused by runtime configuration changes by updating the event from the audit results.
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
No differences found in the compared version configurations.
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
variantType
message
_message
showCloseButton
dismissible
onClose
() => handleMessageBoxOnClose(variantType)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NONDRAFT_WARNING
variant
"info"
dataQa
nonDraftWarning
onClose
handleCloseInfoMessage
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SCHEMA_NAME_DUPLICATION_MESSAGE
dataQa
duplicateNamesError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
`Selected ${
+					AUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]
+				} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(
+					entityType
+				)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
message
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
EVENT_NAME_DUPLICATION_MESSAGE
dataQa
duplicateNamesError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+
+ Unable to import + + + {invalidAudits.length} of {audits.length} selected {auditEntityType} + + + because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others. +
+ + Deselect + +
dataQa
auditValidationErrorWithDeselect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`
dataQa
auditValidationError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
onClose
handleCloseInfoMessage
message

+							If you plan to create objects on the event broker, consider to tag them as 
+							To Be Created
+							 using the Quick Actions.
+						
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
{`${status} ${subStatus ?? ""}`}
+ {actionText && ( + +
+ {actionIcon} + {actionText} +
+
+ )} +
variant
variant
showCloseButton
false
onClose
onAuditImportDone
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.kpiMetricsDashboard.appDomainFilterError
showCloseButton
true
onClose
() => {
+									setAppDomainFilterError(false);
+									setSelectedAppDomainId("all");
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.kpiMetricsDashboard.tableFilterError
showCloseButton
true
onClose
() => {
+											setTableFiltersError(false);
+											setSelectedSharedType(null);
+											setSelectedBrokerType(null);
+										}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
message
variant
info
showCloseButton
!!onClose
onClose
onClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
action?.label && !!action?.onClick ? (
+						
+							
+								{message}
+							
+							
+								{action.label}
+							
+						
+					) : (
+						message
+					)
variant
error
dense
dense
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
{error}
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`runtimeConfigurationBanner-${applicationVersion.id}`
message

+							{application.configuration.warningOutOfSync}
+						
variant
"warn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
getEmptyMessageDetails(true)
variant
info
showIcon
true
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message
EXPORT_MESSAGE
variant
"info"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
message
variant
messageType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
message
unsavedChangesWarningMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
dataQa
versionWarningMsg
message
versionWarningMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
message
unsavedChangesWarningMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.eventApiProduct.labels.downloadInfo
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"error"
message
conflictMessage
details
getErrorDetails()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
+
+ setTriggerVersionDuplication(true)}> + Duplicate Version + +
+
variant
info
dense
true
showCloseButton
true
onClose
() => setShowImportedSchemaInfoBanner(false)
dataQa
editImportedSchemaWarning
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
schemaVersionReferencesError.message
dataQa
manageReferencedSchemasErrorText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SCHEMA_TYPE_MISMATCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SHARED_VALUE_MISMATCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SCHEMA_VERSION_NOT_FOUND
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
noOptionSelectedError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
kafkaWarningMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
backendValidationErrorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
kafkaWarningMessage
dense
userHasEditorAccess
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message

+							Cannot delete the last topic domain when{" "}
+							All topic addresses within this application domain must use a topic domain is selected.
+						
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
applicationDomainMessage
variant
success
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
topicDomainSuccessMessage
variant
success
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"One or more topic domains were not created successfully."
variant
error
details
renderTopicDomain(failedTopicDomains, false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
duplicateTopicDomainMessage
variant
warn
details
renderTopicDomain(duplicateTopicDomainEntries, true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices.
variant
warn
dataQa
topicAddressResourcesWarning
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"All versions of an event have the same broker type. It cannot be changed after the event is created"
showCloseButton
true
onClose
handleCloseBrokerTypeHelp
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
brokerTypeWarning
dense
userHasEditorAccess
dataQa
"brokerTypeWarning"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errors.event.shared.message
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+ + All versions of a Kafka event use the same topic address and use versions from the same schema object. + + + {"Learn more about creating Kafka events"} + +
variant
info
showCloseButton
true
onClose
() => handleCloseInfoMessage()
dataQa
kafkaEventInfoBanner
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
onClose
handleCloseInfoMessage
message
`This ${pageID === PageID.eventSearchSchemas ? "event" : "schema"} is shared. Only shared schemas can be selected.`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
messages.credentials.removeCredentialsWarning
variant
"warn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? "s" : ""}. `}
+								
    + {renderWarningDetails()} +
+
variant
warn
showIcon
true
dataQa
nonSharedEventWarning
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NO_TOPIC_ADDRESS_MSG
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NO_PUBLISHER_MSG
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NO_MATCHED_SUBSCRIPTION
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
subEventVersionsErrorMessage
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageForPubEvents
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageForPubEvents || subEventVersionsErrorMessage
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
ADDITIONAL_CONSUMED_EVENTS_INFO
showCloseButton
true
onClose
() => setDismissAdditionalConsumedEventsInfo(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`
showCloseButton
true
onClose
() => setDismissAdditionalConsumedEventsWarning(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageForAdditionalEvents
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showCloseButton
true
onClose
() => setShowUndeployedInformation(false)
message
messages.add.addApplicationDescription
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : "You do not have access to this event."
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
messages.credentials.configurationWarning
dataQa
configurationError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error
showCloseButton
true
onClose
onCloseError
dataQa
credentialsError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
`Returning to an earlier step will reset your progress. `
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message

+							
+							{messages.info}
+							{getWizardButton("text", goToWizard, false)}
+						
onClose
() => setShowMessageBox(false)
showCloseButton
true
showIcon
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
messages.projectDefinition.guide
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
sourceTransformationGraphError
variant
"error"
key
`${direction}GraphError`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
targetTransformationGraphError
variant
"error"
key
`${direction}GraphError`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
en.connectors.helperText.payloadMessage
onClose
() => setPayloadInfoDismissed(!payloadInfoDismissed)
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.connectors.labels.reImportWarning(direction.toLowerCase())
variant
"warn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
payloadMappingsValidationErrors.apiError
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
max-header-count-info-msg
message
en.connectors.labels.maxConstantCountReached
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
max-header-count-info-msg
message
en.connectors.labels.maxHeaderCountReached
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
{renderErrorMessages(step, validationErrors)}
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
down_state_error_message
message

+									
+										
+											
+												{selectedRowData?.state === ConnectorState.error
+													? en.connectors.labels.errorStateMessage
+													: en.connectors.labels.downStateMessage}
+											
+											{selectedRowData?.state === ConnectorState.error && (
+												
+													{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? "Unknown error"}
+												
+											)}
+											
+												{en.connectors.labels.additionalSupportMessage}
+												
+													{en.connectors.buttons.contactSupport}
+												
+											
+										
+										
+											
+												
+													{en.connectors.buttons.viewErrorLogs}
+												
+											
+										
+									
+								
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? "")
variant
"info"
dataQa
deploying_state_message
showIcon
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
buildSummaryErrorMessage(
+								vendorValidationErrors,
+								solaceValidationErrors,
+								detailsStepValidationErrors,
+								isEqual(connectorTypeDetails.direction, ConnectorDirection.Source),
+								true,
+								payloadMappingsValidationErrors,
+								apiErrorResponseError,
+								sourceTransformationGraphError,
+								targetTransformationGraphError,
+								showGaMiTransformation
+							) ?? ""
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
buildSummaryErrorMessage(
+								vendorValidationErrors,
+								solaceValidationErrors,
+								initialStepValidationErrors,
+								vendorSourceDirection,
+								false,
+								payloadMappingsValidationErrors,
+								apiErrorResponseError,
+								sourceTransformationGraphError,
+								targetTransformationGraphError,
+								showGaMiTransformation
+							) ?? ""
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
downErrorMessage
variant
"error"
onClose
() => setShowDownError(false)
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								{errorMessageDetails ?? ""}
+								
+									{en.connectors.buttons.contactSupport}
+								
+								
+									
+										{en.connectors.buttons.viewErrorLogs}
+									
+								
+							
variant
"error"
dataQa
error_message_box
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.connectors.labels.stateInfoBanner(connectorState ?? "")
showIcon
true
variant
info
dataQa
deploying_message_box
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_edit_msg_spool_info", message: "This change will not impact queue size." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_customize_msg_spool_info", message: "You cannot decrease the message spool size after creating the service, but you can increase it without service interruption." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
message
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
type
message
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
showCloseButton
message
error
onClose
() => setError(null)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventMesh.errorMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
<>
+									Sorry, a problem occurred trying to create your service.{" "}
+									
+										Open Support Ticket
+									
+								
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({
+									id: "id_sso_out_of_sync",
+									message: "The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details."
+								})
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (
+						
+							{message}
+							
+								Plan Upgrade
+							
+						
+					) : (
+						message
+					)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
dense
true
message

+						
+							{t({
+								id: "id_auto_upgrade_failed",
+								message: `Upgrade steps have failed. Contact Solace for support.`
+							})}
+						
+						
+							 setViewLogs(true)}>
+								View Upgrade Logs
+							
+						
+					
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
Upgrade steps have failed. Contact Solace for support.
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_error_facilities", message: "At least one facility must be selected." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_warn_auth_disabled", message: "You have authentication disabled. Your event broker service is accessible by everyone." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
warningMessage.join(" ")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
pickMessage(isProfileConfigured, isAccessConfigured)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_dt_error_deployment", message: "There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace." })
dataQa
disable-distributed-tracing-error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_dt_destination_out_of_date", message: "Tracing destination is out of date on this service." })
dataQa
event-broker-version-banner
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_dt_error_retrieving_details", message: "An error occurred while retrieving Distributed Tracing details, please try again." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
enableDistributedTracingErrorMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
patchBrandingText(t({ id: "id_dt_error_disabling", message: "An error occurred while disabling Distributed Tracing. For support, contact Solace." }))
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_dt_not_supported", message: "Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature." })
dataQa
event-broker-version-banner
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_configuration_progress", message: "Configuration in progress..." })
dataQa
configuration-progress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
message
t({ id: "id_collector_running", message: "Collector is running." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_collector_down", message: "Collector is down." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_retrieving_collector_status", message: "Retrieving collector status..." })
dataQa
pending-collector-status
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
message
t({ id: "id_connection_service_active", message: "Connection to the service is active." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
brokerConnectionErrorMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_retrieving_service_status", message: "Retrieving service status..." })
dataQa
pending-service-status
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_syslog_error", message: "Failed to retrieve the configuration for Syslog Forwarding." })
dataQa
syslog-error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_warn_auth_disabled", message: "You have authentication disabled. Your event broker service is accessible by everyone." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({
+					id: "id_nodeport_info",
+					message: "You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation."
+				})
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
i18n._(meta.errorMessage)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
i18n._(meta.warningMessage)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_warn_not_latest_version", message: "Consider using the latest version. (Recommended)" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_error_max_spool_size", message: "Select a different region. You have reached your limits for this service." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
isSAP
+									? t({
+											id: "id_error_limits_sap",
+											message: "You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit."
+									  })
+									: t({ id: "id_error_limits", message: "Select another service type. You have either reached your limits, or the region does not support this service type." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
showCloseButton
message
error
onClose
() => setError(null)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message

+										
+											{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} 
+											{en.brokerSSOConfig.message.brokerSsoSetup}
+										
+										
+											
+												{en.brokerSSOConfig.message.viewSettings}
+											
+										
+									
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+
+ {text + " "} + + {link} + +
+
+ + I Agree + +
+
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
en.viewMessageSpoolDetails.dialog.info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
+ {environmentsStr.messages.firstOpenTopInfo}{" "} + + {environmentsStr.messages.firstOpenBottomInfoLearnMore} + +
dataQa
environmentFirstUseCardTop
showCloseButton
true
onClose
handleCloseTopMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
deleteError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+ {en.environments.labels.deleteDialogMessage} + + Learn more in the documentation + +
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.environments.errors.duplicateName
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.environments.createDialogLabels.error.typeRequired
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
en.environments.createDialogLabels.info.typeCannotBeChanged
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
showIcon
true
message
messages.warning
dataQa
configurationTemplateWarning
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.accountSettings.configNotComplete
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.accountSettings.configNotYetApplied
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
userGroupManagement.jitInfoMessage
showCloseButton
true
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message

+							{userGroupManagement.saveChangesText}
+							
+								{userGroupManagement.testAccess}
+							
+						
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
userGroupManagement.noAdminMessage
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.overview.banner.WE_HIT_AN_ISSUE
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.forgotPassword.errorSendingResetEmail
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.notifications.fetchingNotificationsErrorNotLoggedIn
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+ + {environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)} + + + {environments.moveDialogLabels.warningMessages.learnMore} + +
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+					{en.privateRegions.emaInfoBanner.title}{" "}
+					
+						{en.privateRegions.emaInfoBanner.linkText}
+					
+				
variant
info
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.tokens.text.anyApplicationsOrScriptsUsingThisToken
variant
"warn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.tokens.text.thisCannotBeUndone
variant
"warn"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
variant
"error"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+									{en.tokens.text.description}
+									
+										{en.tokens.text.learnMore}
+									
+								
variant
info
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
failed-to-synch
key
item.serviceId
message
tracingSynchDialog.error(item.serviceName)
variant
error
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+								{modifyError.message}
+								{modifyError.id && {"Error ID: " + modifyError.id}}
+							
variant
error
dataQa
errorModifyingProfile
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+								{tracingProfile.infoMessage.text}
+								
+									{tracingProfile.infoMessage.link.text}
+								
+							
variant
info
dataQa
infoBox
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message

+								{outOfSynchMessageBox.outOfDate({
+									outOfSynchServices: outOfSynchServices.length,
+									associatedServices: associateServicesCount
+								})}
+
+								
+									 setSynchTracingDialog(true)}>
+										{outOfSynchMessageBox.viewServices}
+									
+								
+							
variant
warn
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
tracingLimits.errorMessage.retrieve
variant
error
dataQa
errorRetrievingTracingLimits
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
tracingProfile.errorMessage.delete
variant
error
dataQa
errorDeletingTracingDestination
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
tracingProfile.errorMessage.retrieve
variant
error
dataQa
errorRetrievingTracingDestinations
+
+ +
+
+ +
+
+
+ SolaceGrid + 227 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep120
intg29
mc8
saas70
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
item167
xs115
container55
spacing27
alignItems26
style20
className19
key16
mt15
data-qa14
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (227)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
width
"800px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
pt
2
width
"100%"
style
{ display: "flex", justifyContent: "space-between", alignItems: "center", marginTop: theme.spacing(1) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "flex", flexDirection: "column", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
pt
2
width
"100%"
style
{ display: "flex", justifyContent: "space-between", alignItems: "center", marginTop: theme.spacing(1) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ marginLeft: theme.spacing(4) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
width
"800px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "grid", gridTemplateColumns: "1fr 1fr", gap: "8px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
2
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
data-qa
"attributeName-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
data-qa
"type-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
data-qa
"scope-label"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
alignItems
isEditable || nameInEditMode ? "flex-start" : "center"
display
"flex"
data-qa
`${caKey}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
color
(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)
data-qa
`${caKey}-name`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
color
(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)
data-qa
`${caKey}-valueType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
color
(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)
data-qa
`${caKey}-scope`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
isEditable ? 1 : 2
style
{ display: "flex", justifyContent: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
alignItems
"flex-start"
display
"flex"
data-qa
`${caErrorKey}-message`
key
`${caErrorKey}-message`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
key
`${caKey}-errorMsg-content`
display
"flex"
alignItems
"flex-start"
columnGap
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
key
`${caKey}-errorMsg-action`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-name`
data-qa
`${caKey}-name`
xs
2
mt
index !== 0 ? 1 : 0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-value`
data-qa
`${caKey}-value`
xs
10
mt
index !== 0 ? 1 : 0
display
flex
columnGap
"8px"
alignItems
"flex-start"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
key
`${caKey}-name`
data-qa
`${caKey}-name`
className
name edit
mt
index !== 0 ? 1 : 0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
key
`${caKey}-value`
mt
index !== 0 ? 1 : 0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
padding
0
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem additionalFilter
key
`${filterType}-select`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${selectedFilter.type}Select`
item
true
xs
numOfGridColumns
className
filterItem customAttribute
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columns
3
spacing
1.5
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
"0"
direction
"row"
wrap
nowrap
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
minWidth
"450px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
7
minWidth
"538px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
paddingRight
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
padding
3
width
100%
height
`calc(100% - 65px)`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ width: SIDE_PANEL_WIDTH }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: "flex", flexDirection: "column" }
pl
3
maxHeight
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-name`
data-qa
`${caKey}-name`
xs
2
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-value`
data-qa
`${caKey}-value`
xs
10
mt
1
display
flex
alignItems
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
key
`${caKey}-name`
data-qa
`${caKey}-name`
className
name edit
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
key
`${caKey}-value`
mt
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
md
2
alignSelf
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
md
10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
md
2
alignSelf
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
md
10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ paddingTop: "24px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
display
"flex"
gap
theme.spacing(1)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "flex", flexDirection: "row", alignItems: "center", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "flex", flexDirection: "column", rowGap: theme.spacing(1) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
row
justifyContent
center
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
ml
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2.5
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
row
justifyContent
center
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
className
filterItem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
borderRight
`1px solid ${theme.palette.ux.secondary.w20}`
overflow
"scroll"
height
"inherit"
onScroll
(e) => {
+									const { scrollTop } = e.target as HTMLElement;
+
+									if (leftScrollTop !== scrollTop && relations.length > 0) {
+										setLeftScrollTop(scrollTop);
+									}
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
style
{ backgroundColor: theme.palette.ux.background.w20 }
justifyItems
"center"
height
"inherit"
alignContent
relations.length === 0 && !initalDrag ? "center" : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
borderLeft
`1px solid ${theme.palette.ux.secondary.w20}`
overflow
"scroll"
height
"inherit"
onScroll
(e) => {
+									const { scrollTop } = e.target as HTMLElement;
+
+									if (rightScrollTop !== scrollTop && relations.length > 0) {
+										setRightScrollTop(scrollTop);
+									}
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
key
`${id}-key`
alignItems
center
spacing
2
className
classNames
style
style
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
7
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
8
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
8
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
alignItems
center
justify-content
flex-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
8.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.5
textAlign
right
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
display
flex
justifyContent
flex-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
display
flex
justifyContent
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
display
flex
justifyContent
flex-start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
7
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
textAlign
"end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
direction
column
alignItems
center
justifyContent
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1.4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10.6
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
9
mt
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
mr
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
mr
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
container
true
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
mt
1.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 2 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 2 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
alignItems
center
spacing
10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ padding: 2 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ padding: 2 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
alignItems
center
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ padding: 4 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
container
true
direction
"column"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
item
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
item
isParentCategory
key
permission.id
paddingTop
theme.spacing(0.5)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
style
categoryDetailsSectionStyle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
style
categoryDetailsSectionStyle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
style
categoryDetailsSectionStyle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
item
true
key
categoryName
style
{ padding: theme.spacing(0.25) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
style
permissionTitleSectionStyle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
style
bulkPermissionCheckboxStyle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
style
bulkPermissionCheckboxStyle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
marginTop
categoryName ? theme.spacing(0.5) : theme.spacing(0.25)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
"column"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10.8
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
className
readWrite
+
+ +
+
+ +
+
+
+ SolaceConfirmationDialog + 192 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep112
intg12
mc34
saas34
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
actions192
isOpen191
title191
maxWidth70
linearProgressIndicator61
contentText22
key8
contentLayout5
customAction1
data-qa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (192)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
confirmationObj.title
actions
[
+					{
+						label: confirmationObj.cancelLabel,
+						dataQa: "returnToForm",
+						onClick: () => closeModal(false)
+					},
+					{
+						label: confirmationObj.okLabel,
+						variant: "outline",
+						dataQa: "leaveAndDiscard",
+						onClick: () => closeModal(true)
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Delete Modeled Event Mesh
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{ label: "Delete", variant: "outline", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Add Existing Event Broker
isOpen
open && !openMessagingServiceDialog
actions
[
+					{
+						label: "Cancel",
+						variant: "text",
+						onClick: handleClose,
+						isDisabled: isLoading || addInProgress
+					},
+					{
+						label: "Add",
+						variant: "call-to-action",
+						onClick: () => {
+							handleAddExistingMessagingService();
+						},
+						isDisabled: isLoading || addInProgress || !!submitError?.message
+					}
+				]
linearProgressIndicator
addInProgress
maxWidth
md
contentLayout
contents
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
generateTitleDialog(mode)
isOpen
open
actions
generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title || "Event Broker Connection Details"
isOpen
open
actions
generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.eventApiProduct.headers.deployToEnvironment
actions
[
+				{ label: en.common.button.cancel, variant: "text", onClick: onClose },
+				{ label: en.common.button.add, variant: "call-to-action", onClick: handleSubmit }
+			]
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.entities.labels.bulkMove.move(
+				selectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)
+			)
isOpen
true
actions
[
+				{ label: en.common.button.cancel, onClick: onClose },
+				{ label: en.common.button.move, variant: "call-to-action", onClick: handleSubmit, isDisabled: moveDisabled }
+			]
linearProgressIndicator
startMove.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[{ label: en.common.button.close, onClick: onClose }]
isOpen
true
title
en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
messages.add.addToEnvironment
actions
[
+						{ label: common.button.cancel, variant: "text", onClick: onClose },
+						{
+							label: common.button.add,
+							variant: "call-to-action",
+							onClick: handleSubmit,
+							dataQa: "addEntityToEnvironment",
+							isDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError
+						}
+					]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
messages.add.addToEnvironment
actions
[
+						{ label: common.button.cancel, variant: "text", onClick: onClose },
+						{
+							label: messages.credentials.saveCredentialsAndContinue,
+							variant: "call-to-action",
+							onClick: onSave,
+							dataQa: "saveCredentialsAndContinue",
+							isDisabled: !!error || !!previewError || !isValid
+						}
+					]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`
actions
[
+					{ label: common.button.cancel, variant: "text", onClick: onClose },
+					{
+						label: common.button.add,
+						variant: "call-to-action",
+						onClick: handleSubmit,
+						dataQa: "addEntityToEnvironment",
+						isDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError
+					}
+				]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
messages.title
actions
[
+				{ label: en.common.button.cancel, variant: "text", onClick: () => onClose(false) },
+				{
+					label: messages.action,
+					variant: "call-to-action",
+					onClick: handleOnClick,
+					dataQa: "updateEntityInEnvironment",
+					isDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError
+				}
+			]
linearProgressIndicator
submitting || isDeploymentPreviewLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title

+					
+ + + +
+ Detected Event Flow Mismatches + + + + + +
+
+
+ + Edit Application + +
+
isOpen
open
actions
generateDialogActionButtons(cancel)
maxWidth
xl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.eventApiProduct.headers.addEventApiProduct
actions
[
+				{ label: en.common.button.cancel, variant: "text", onClick: onClose },
+				{ label: en.common.button.add, variant: "call-to-action", onClick: handleSubmit }
+			]
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
Add to Environment
actions
[
+				{ label: "Cancel", variant: "text", onClick: onClose },
+				{
+					label: "Add",
+					variant: "call-to-action",
+					onClick: handleSubmit,
+					dataQa: "addEntityToEnvironment",
+					isDisabled: !!submitError
+				}
+			]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Unable to Delete ${entityTypeToLabel(entityType)}`
actions
[{ label: "Close", onClick: handleCloseWithErrors }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Delete ${entityTypeLabel}`
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{ label: "Delete", variant: "outline", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionError ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
applicationVersionId
actions
dialogActions
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.title
actions
[
+				{
+					label: messages.cancelButton,
+					onClick: () => onDone("cancel"),
+					dataQa: "cancelUserAccess"
+				},
+				{
+					label: messages.saveButton,
+					variant: "call-to-action",
+					onClick: onSave,
+					isDisabled: isDisabled,
+					dataQa: "saveUserAccess"
+				}
+			]
isOpen
true
linearProgressIndicator
progressIndicator
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
contentText
typeof errorObject.message === "string" ? errorObject.message : null
actions
[{ label: "Close", dataQa: "catalogErrorDialog", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getTitle
actions
getButtons
isOpen
true
key
KafkaSampleSuccessDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.selectDialog.title
isOpen
isOpen
actions
[
+				{
+					label: messages.selectDialog.cancel,
+					variant: "text",
+					dataQa: "select-environment-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: messages.selectDialog.select,
+					variant: "call-to-action",
+					dataQa: "select-environment-ok",
+					isDisabled: !value,
+					onClick: handleSelect
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle
actions
getButtons
linearProgressIndicator
showProgressIndicator
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
details.label
isOpen
true
actions
[{ label: en.common.button.close, onClick: () => setDetails(null), variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
error.title
isOpen
true
contentText
error.message
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: () => {
+						setIsDialogOpen(false);
+						setErrorDialogOpen(false);
+					}
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Manage Custom Attributes
isOpen
true
maxWidth
md
actions
[
+				{ label: "Cancel", dataQa: "customAttributes-cancel", onClick: () => setIsDialogOpen(false) },
+				{
+					label: "Save",
+					dataQa: "customAttributes-save",
+					variant: "call-to-action",
+					isDisabled: disabled || isSaving === true,
+					onClick: () => handleSave()
+				}
+			]
linearProgressIndicator
isSaving
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
contentText
typeof errorObject.message === "string" ? errorObject.message : null
actions
[
+					{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: "catalogErrorDialog", onClick: closeErrorDialog, variant: "outline" }
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
versionStateDialogOpen
title
Manage Lifecycle
actions
[
+				{
+					label: "Cancel",
+					onClick: handleCancel,
+					variant: "text"
+				},
+				{
+					label: "Save",
+					onClick: handleLifecycleChanges,
+					variant: "call-to-action",
+					isDisabled: isSaveDisabled()
+				}
+			]
maxWidth
"md"
linearProgressIndicator
changeEntityVersionStateHook?.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
[
+				{ label: "Cancel", variant: "text", onClick: handleCancel },
+				{ label: resetButtonLabel, variant: "outline", onClick: handleSave }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
confirmExitDialogOpen
title
`Unable to Close ${entityTypeToLabel(entityType)}`
actions
[{ label: "Return To Form", variant: "outline", onClick: handleCancel }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteVersionDialogOpen
title
`Delete ${entityTypeLabel} Version`
actions
[
+				{ label: "Cancel", onClick: handleCancel },
+				{ label: !isLastVersion || keepParent ? "Delete Version" : `Delete Version & ${entityTypeLabel}`, variant: "outline", onClick: handleDelete }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Duplicate Application Version`
actions
[
+				{ label: "Cancel", onClick: onClose, id: "cancel", dataQa: "cancel" },
+				{ dataQa: "save", label: "Save", variant: "call-to-action", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }
+			]
linearProgressIndicator
duplicateEntityVersion.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title ?? "Warning"
actions
[
+				{ label: "Return to Form", onClick: onClose },
+				{ label: "Reload", variant: "outline", onClick: handleReload }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Configure Variable
actions
actions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
actions
[
+					{ label: refreshGraphRequiredOnClosingErrorDialog ? "Close & Refresh Graph" : "Close", onClick: closeErrorDialog, variant: "outline" }
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Publish Graph Layout"
isOpen
layoutConflictDialogOpen
maxWidth
"sm"
actions
[
+				{ label: `Return to ${entityLabel}`, onClick: handleClose, id: "cancel", dataQa: "cancel" },
+				{
+					label: "Publish Layout",
+					variant: "outline",
+					isDisabled: graphUpdating,
+					onClick: handleContinuePublishLayout,
+					dataQa: "continuePublishLayout"
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Changes Partially Published"
isOpen
partialPublishDialogOpen
maxWidth
"sm"
actions
[
+				{ label: "Close", onClick: handleClose, id: "cancel", dataQa: "cancel" },
+				{ label: "Refresh", variant: "outline", onClick: handleRefreshGraph, id: "refreshGraph", dataQa: "refreshGraph" }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title ?? defaultTilte
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{ label: "Remove", dataQa: "removeAssociation", variant: "outline", onClick: () => onRemove(idToRemove) }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionError ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
"fail-download-async-api"
actions
[{ label: en.common.button.close, variant: "outline" as const, onClick: action("onClose") }]
linearProgressIndicator
false
maxWidth
"md"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteConfirmationDialogOpen
title
Delete Event Broker From Event Portal
actions
[
+					{ label: "Cancel", variant: "text", onClick: handleCloseDeleteConfirmationDialog },
+					{ label: "Delete From Event Portal", variant: "outline", onClick: handleDeleteMessagingServiceConfirmation }
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
unableToDeleteDialogOpen
title
Unable to Delete
actions
[
+					{ label: "Close", variant: "text", onClick: handleCloseUnableToDeleteDialog },
+					{ label: "Open Modeled Event Mesh", variant: "outline", onClick: handleOpenModeledEventMesh }
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
"md"
isOpen
isOpen
title
Skip and Install
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{
+					label: "Skip",
+					variant: "outline",
+					onClick: handleSkip
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
"md"
isOpen
isOpen
title
Connection File Created
actions
[{ label: "Close", variant: "outline", onClick: onClose, dataQa: "connectionFileDialogCloseButton" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Setting Up Offline Event Management Agent
isOpen
standaloneDialogOpen
actions
[{ label: "Close", onClick: handleStandaloneClose, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Event Management Agent Set Up Complete
isOpen
emaSetupCompleteDialog
actions
[
+						{
+							label: "Close",
+							onClick: handleEmaSetupCompleteDialogClose,
+							variant: "text"
+						},
+						{
+							label: "Go to Modeled Event Meshes",
+							onClick: handleGotoMEM,
+							variant: "outline"
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Unable to Delete ${runtimeAgentName}`
actions
[{ label: "Close", onClick: onClose }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
"sm"
isOpen
isOpen
title
Delete Event Management Agent Connection
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{
+							label: "Delete",
+							variant: "outline",
+							isDisabled: deleteEventManagementAgent.isLoading,
+							onClick: handleDelete
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Custom Discovery Scan
maxWidth
sm
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{
+					label: "Run Discovery Scan",
+					variant: "call-to-action",
+					isDisabled: isRunDiscoveryScanButtonDisabled,
+					onClick: initiateCustomScan
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Delete Data Collection"
actions
[{ label: "Close", onClick: onClose }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Delete Data Collection
maxWidth
sm
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{ label: "Delete", variant: "outline", isDisabled: deleteScan.isLoading, onClick: handleDelete }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Run Discovery Scan
actions
renderDialogActionButtons(messagingServicesForDataCollection)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
actions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteConfirmationDialogOpen
title
Delete Event Broker From Event Portal
actions
[
+						{ label: "Cancel", variant: "text", onClick: handleCloseDeleteConfirmationDialog },
+						{ label: "Delete From Event Portal", variant: "outline", onClick: handleDeleteMessagingServiceConfirmation }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
eventManagementAgentNeedsUpdateDialogOpen
title
Event Management Agent Needs Update
actions
[
+						{ label: "Close", variant: "text", onClick: handleCloseEMAUpdateDialog },
+						{ label: "Open Event Management Agent", variant: "outline", onClick: handleGoToEMA }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Data Collection Logs"
isOpen
open
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: onClose
+				}
+			]
maxWidth
"xl"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Add Environment Association"
isOpen
open
actions
generateDialogActionButtons(
+				isLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,
+				cancel,
+				update
+			)
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
isAddMode ? (
+					
+ setIsAddMode(false)}> + + + Add Environment Association +
+ ) : ( + <>{showViewOnly ? "View Environment Associations" : "Manage Environment Associations"} + )
actions
showViewOnly
+					? [{ label: "Close", variant: "call-to-action", onClick: handleClose }]
+					: [
+							{ label: "Cancel", variant: "text", onClick: handleClose },
+							{ label: isAddMode ? "Add" : "Save", variant: "call-to-action", onClick: handleClick }
+					  ]
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeCompareDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? "Configuration" : "Runtime Configuration"
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeDetailsDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
dialogTitle
actions
[
+				{ label: "Cancel", dataQa: "closeConfirmDialog", onClick: onClose },
+				{
+					label: "Apply",
+					dataQa: "applyConfirmDialog",
+					onClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),
+					variant: "call-to-action"
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Import Progress
isOpen
true
actions
[
+				{
+					label: "Close",
+					dataQa: "auditImport-close",
+					variant: "outline",
+					onClick: () => setAuditImportProgressDialogOpen(false)
+				}
+			]
maxWidth
md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeConfigDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeConfigDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
title
linearProgressIndicator
!!isLoading
actions
[
+				{ label: "Cancel", variant: "text", onClick: onClose, dataQa: "cancelAuditButton" },
+				{ label: "Import", variant: "call-to-action", isDisabled: auditInError, onClick: handleImport, dataQa: "importAuditButton" }
+			]
customAction
customAction
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
renderHeader()
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: onClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
application.configuration.setDefaultTemplate
actions
[
+						{
+							label: en.common.button.cancel,
+							onClick: () => setOpenConfirmationDialog(false)
+						},
+						{
+							label: application.configuration.setDefaultTemplate,
+							variant: "call-to-action",
+							onClick: () => {
+								setObservedConfiguration({
+									name: configurationName,
+									value: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)
+								});
+								setOpenConfirmationDialog(false);
+							}
+						}
+					]
isOpen
true
data-qa
defaultTemplateConfirmationDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
[
+				{ label: en.common.button.cancel, onClick: () => onClose() },
+				{ label: en.common.button.delete, dataQa: "deleteTemplate", variant: "outline", onClick: handleDeleteTemplate }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"learningCenterErrorDialog"
isOpen
true
title
title
contentText
description
actions
[{ label: "Close", onClick: closeErrorDialog }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle
actions
[{ label: "Close", variant: "outline", onClick: () => setApiError(null) }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate
actions
[
+						{
+							label: messagesCommon.button.cancel,
+							dataQa: "cancelAction",
+							onClick: () => {
+								setModeSelectionToConfirm(null);
+							}
+						},
+						{
+							label: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,
+							dataQa: `confirmSwitchFrom_${mode}`,
+							variant: "outline",
+							onClick: () => {
+								if (modeSelectionToConfirm === Mode.template) {
+									updateUserConfigValues({}, true);
+								}
+
+								resetTemplate();
+								setMode(modeSelectionToConfirm);
+								setModeSelectionToConfirm(null);
+							}
+						}
+					]
isOpen
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.application.configuration.restDeliveryPoint.addRequestHeader
isOpen
true
actions
[
+				{
+					label: en.common.button.cancel,
+					onClick: () => handleClose()
+				},
+				{
+					dataQa: "add-request-header-submit",
+					variant: "call-to-action",
+					label: en.application.configuration.restDeliveryPoint.addRequestHeader,
+					onClick: () => {
+						handleAddRequestHeader();
+					}
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate
actions
[
+						{
+							label: messagesCommon.button.cancel,
+							dataQa: "cancelAction",
+							onClick: () => {
+								setModeSelectionToConfirm(null);
+							}
+						},
+						{
+							label:
+								modeSelectionToConfirm === Mode.custom
+									? messagesConfiguration.solaceClientProfileName.customize
+									: messagesConfiguration.selectTemplate,
+							dataQa: `confirmSwitchFrom_${mode}`,
+							variant: "outline",
+							onClick: () => {
+								if (modeSelectionToConfirm === Mode.custom) {
+									setValue(FormCustomizedClientProfileName, observedConfiguration ?? "");
+								}
+
+								reset(modeSelectionToConfirm === Mode.template);
+								setMode(modeSelectionToConfirm);
+								setModeSelectionToConfirm(null);
+							}
+						}
+					]
isOpen
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
contentText
errorObject.message ?? ""
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Delete Application Domain"
actions
[{ label: "Close", onClick: onClose }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Delete Application Domain`
actions
[
+						{ label: "Cancel", onClick: onClose, id: "cancel", dataQa: "cancel" },
+						{ dataQa: "delete", label: "Delete", variant: "outline", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }
+					]
linearProgressIndicator
deleteApplicationDomain.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
error.title
isOpen
true
contentText
error.message
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								onDone();
+							}
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Application Domain Export Preview
isOpen
true
actions
[
+				{ label: "Cancel", dataQa: "domainExport-cancel", onClick: () => onCancel() },
+				{
+					label: "Export",
+					dataQa: "domainExport-confirm",
+					variant: "call-to-action",
+					isDisabled: !!errorMsg,
+					onClick: () => onExport()
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
customAttributeValidations?.title
isOpen
!!customAttributeValidations
actions
customAttributeValidations?.actions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Error Importing Application Domains"
isOpen
true
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								setErrorMsg("");
+							}
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
appDomainCount === 1 ? "Importing Application Domain" : "Importing Application Domains"
isOpen
true
maxWidth
"sm"
contentText
"The import may take several minutes."
actions
null
linearProgressIndicator
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Error Importing Application Domains"
isOpen
true
maxWidth
"sm"
contentText
errorMsg
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								onDone(false);
+							}
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Kafka Settings"
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{ label: "Save", variant: "outline", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
details.label
isOpen
true
actions
[{ label: en.common.button.close, onClick: () => setDetails(null), variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
details.label
isOpen
true
actions
[{ label: en.common.button.close, onClick: () => setDetails(null), variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Select Shared Events
isOpen
open
actions
generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))
maxWidth
"lg"
contentLayout
contents
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionError ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
eventApi.id
actions
dialogActions
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
showErrorDialog
title
error.title
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionErrors ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
eventApi.id
actions
dialogActions
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.eventApiProduct.labels.availability.dialogTitle
actions
[
+						{ label: en.common.button.cancel, onClick: () => setOpen(false) },
+						{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }
+					]
linearProgressIndicator
updatePublishState.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
error.title
isOpen
true
contentText
error.message
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								setOpen(false);
+								setErrorDialogOpen(false);
+							}
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
userNotFoundDialogOpen
title
User No Longer Exist
actions
[
+									{
+										label: "Close & Clear Filters",
+										variant: "outline",
+										onClick: handleCloseAndClearFilters
+									}
+								]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Revoke Event Access"
actions
[{ label: "Close", onClick: onCancel }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Revoke Event Access
actions
[
+						{
+							label: "Cancel",
+							onClick: handleCancel,
+							variant: "text"
+						},
+						{
+							label: "Revoke Access",
+							onClick: handleSendReview,
+							variant: "outline",
+							isDisabled: declineEventAccessRequest.isLoading
+						}
+					]
maxWidth
"sm"
linearProgressIndicator
declineEventAccessRequest.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Review Event Access Request"
actions
[{ label: "Close", onClick: onCancel }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Review Event Access Request
actions
[
+						{
+							label: "Cancel",
+							onClick: handleCancel,
+							variant: "text"
+						},
+						{
+							label: "Send Review",
+							onClick: handleSendReview,
+							variant: "call-to-action",
+							isDisabled: sendReviewButtonDisabled,
+							dataQa: "sendReviewButton"
+						}
+					]
maxWidth
"sm"
linearProgressIndicator
approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteDialogOpen
title
`Delete Subscription`
actions
[
+				{ label: "Cancel", onClick: handleCloseDeleteDialog, id: "cancel", dataQa: "cancelDeleteSubscriptionButton" },
+				{ label: "Delete", variant: "outline", onClick: () => handleDelete(consumerId, index), dataQa: "deleteSubscriptionButton" }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteDialogOpen
title
`Delete Consumer`
actions
[
+				{ label: "Cancel", onClick: handleCloseDeleteDialog, id: "cancel", dataQa: "cancelDeleteConsumerButton" },
+				{ label: "Delete", variant: "outline", onClick: handleDelete, dataQa: "deleteConsumerButton" }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
title
errorObject.title || "Error"
contentText
errorObject.message
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
failedTopicDomains?.length > 0
+					? [{ label: "Edit Topic Domains", variant: "text", onClick: onReturn }]
+					: [
+							{ label: "Edit Topic Domains", variant: "text", onClick: onReturn },
+							{ label: "Use Duplicates", variant: "outline", onClick: onContinue }
+					  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
title
actions
[
+				{ dataQa: "topicAddressResourcesCancel", label: "Cancel", variant: "outline", onClick: onReset },
+				{ dataQa: "topicAddressResourcesDone", label: ctaLabel, variant: "call-to-action", onClick: onDone }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
"Topic Address Required"
actions
actions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
!!error
title
"Error Sending Requests"
contentText
error ?? ""
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
messages.action.removeCredentials
actions
[
+						{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },
+						{
+							label: common.button.remove,
+							variant: "call-to-action",
+							onClick: async () => {
+								try {
+									await deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {
+										refreshApplicationDeploymentPreviews.refresh();
+									});
+								} catch (error) {
+									handleBackendError(messages.credentials.removeCredentialsErrorTitle, error);
+								}
+
+								// close the dialog
+								setRemoveCredentialsData(null);
+							}
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
title
actions
isEditing
+					? [
+							{ label: common.button.cancel, variant: "text", onClick: () => setOpen(false), dataQa: "credentialsCancel" },
+							{
+								label: common.button.save,
+								variant: "call-to-action",
+								onClick: () => onSave(),
+								isDisabled: isLoading || !isValid || !!error,
+								dataQa: "credentialsSave"
+							}
+					  ]
+					: [{ label: common.button.close, variant: "call-to-action", onClick: () => setOpen(false), dataQa: "credentialsClose" }]
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isLoading
title
getInProgressTitle(activeStep)
actions
[]
linearProgressIndicator
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorMessage !== ""
title
Encountered Error while Creating Assets
actions
[{ label: "Close", variant: "outline", onClick: () => setErrorMessage("") }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
genAiErrorMessage !== ""
title
`Encountered Error while ${getInProgressTitle(activeStep)}`
actions
[{ label: "Close", variant: "call-to-action", onClick: () => setGenAiErrorMessage("") }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isMoreInformationDialogOpen
title
More Information Required
actions
[
+					{
+						label: "OK",
+						variant: "outline",
+						onClick: () => setIsMoreInformationDialogOpen(false)
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
activeStepToConfirm !== -1
title
Progress Reset Warning
actions
[
+					{
+						label: "Cancel",
+						variant: "outline",
+						onClick: () => setActiveStepToConfirm(-1)
+					},
+					{
+						label: "Continue",
+						variant: "call-to-action",
+						onClick: () => handleSetActiveStep(activeStepToConfirm)
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
title
"Disclaimer"
actions
[{ label: "Close", variant: "outline", onClick: () => setIsDialogOpen(false) }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
showTransformationDialog !== ShowTransformation.NONE
maxWidth
xl
actions
showTransformationDialog === ShowTransformation.READ_ONLY
+					? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: "text" }]
+					: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: "text" }]
title

+					{en.connectors.labels.transformationDetails}
+					
+						{en.connectors.buttons.transformationsLink.label}
+					
+				
key
transformation-dialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
showTransformationDialog !== ShowTransformation.NONE
maxWidth
xl
actions
showTransformationDialog === ShowTransformation.READ_ONLY
+					? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: "text" }]
+					: [
+							{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: "text" },
+							{
+								label: en.connectors.buttons.apply,
+								onClick: onApplyTransformation,
+								variant: "call-to-action",
+								dataQa: "applyTransformationButton"
+							}
+					  ]
title

+					{en.connectors.labels.transformationDetails}
+					
+						{en.connectors.buttons.transformationsLink.label}
+					
+				
key
transformation-dialog
contentLayout
contents
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.importPayloads(direction)
isOpen
uploadDialog
maxWidth
lg
actions
[
+					{
+						label: en.connectors.buttons.cancel,
+						variant: "text",
+						dataQa: "close-upload-dialog",
+						onClick: () => {
+							setUploadDialogErrorText("");
+							setUploadDialog(false);
+						}
+					},
+					{
+						label: en.connectors.buttons.import,
+						variant: "call-to-action",
+						dataQa: "upload-file",
+						onClick: handleUploadFile
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
fieldType === FieldType.constant
+							? en.connectors.labels.deleteConstantField
+							: en.connectors.labels.deleteHeaderField
contentText
en.connectors.labels.deleteHeaderFieldContext
isOpen
showDeleteDialog
maxWidth
sm
actions
[
+						{
+							label: en.connectors.buttons.cancel,
+							onClick: () => {
+								setIdToDelete("");
+								setShowDeleteDialog(false);
+							},
+							variant: "text"
+						},
+						{
+							label: en.connectors.buttons.delete,
+							onClick: () => handleDeleteButtonClick(),
+							variant: "outline"
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+				{ label: "Cancel", dataQa: "deleteEdgeDialog-cancel", onClick: onClose },
+				{
+					label: en.connectors.buttons.delete,
+					dataQa: "deleteEdgeDialog-delete",
+					variant: "outline",
+					onClick: removeRelation
+				}
+			]
isOpen
true
title
en.transformations.labels.deleteMapping
contentText
!isEmpty(affectedTransformations) && affectedTransformations.length > 1
+					? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)
+					: en.transformations.labels.deleteDialogText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.errorDeploymentTitle
isOpen
dialogOpen
actions
[
+					{
+						label: connectors.buttons.close,
+						dataQa: "connectordeployerror-close",
+						onClick: () => setDeployErrorDialogClose(false)
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+				{ label: "Cancel", dataQa: "connectorStateChange-cancel", onClick: () => setShowDeployDialog(false) },
+				{
+					label: action === "deploy" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,
+					dataQa: "connectorStateChange-deploy",
+					variant: "call-to-action",
+					onClick: handleStateChange
+				}
+			]
isOpen
true
maxWidth
lg
title
action === "deploy" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
en.connectors.labels.deleteDialogTitle
contentText
en.connectors.deleteConfirmationMsg
actions
[
+				{ label: en.connectors.buttons.close, onClick: onClose },
+				{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: "outline" }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title

+						
+							{en.connectors.labels.mapWithAI}
+						
+						
+					
isOpen
isOpen
actions
[
+					{
+						label: en.connectors.buttons.cancel,
+						variant: "link",
+						dataQa: "close-ai-mapping-dialog",
+						onClick: () => setMapAiDialogClose(false),
+						isDisabled: isReqLoading
+					},
+					{
+						label: en.connectors.buttons.map,
+						variant: "call-to-action",
+						dataQa: "confirm-ai-mapping",
+						onClick: handleAiMapping,
+						isDisabled: isReqLoading
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"An error occurred"
isOpen
isOpen
actions
[
+				{
+					label: "Open Support Ticket",
+					variant: "link",
+					dataQa: "open-ticket",
+					onClick: handleOpenTicket
+				},
+				{
+					label: "Close",
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.errorAiMap
isOpen
isOpen
actions
[
+					{
+						label: en.connectors.buttons.close,
+						variant: "outline",
+						dataQa: "close-ai-mapping-error-dialog",
+						onClick: () => setMapAiErrorDialogClose(false)
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_environments", message: "Environments" })
isOpen
isOpen
contentLayout
contents
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "select-environment-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_select", message: "Select" }),
+					variant: "call-to-action",
+					dataQa: "select-environment-ok",
+					onClick: handleSelect
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
isEdit ? t({ id: "id_dlg_edit_msg_spool_title", message: "Edit Message Spool Size" }) : t({ id: "id_dlg_customize_msg_spool_title", message: "Customize Message Spool Size" })
isOpen
true
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "customizeMessageSpoolCancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: isEdit ? t({ id: "id_save", message: "Save" }) : t({ id: "id_apply", message: "Apply" }),
+					variant: "call-to-action",
+					dataQa: isEdit ? "customizeMessageSpoolSave" : "customizeMessageSpoolApply",
+					isDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,
+					onClick: handleApply
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_delete_service_title", message: "Delete Service" })
isOpen
true
actions
[
+					{
+						label: t({ id: "id_ok", message: "OK" }),
+						variant: "outline",
+						dataQa: "delete-service-cancel",
+						onClick: onCancel
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
count ? t({ id: "id_dlg_delete_services_title", message: "Delete Services" }) : t({ id: "id_dlg_delete_service_title", message: "Delete Service" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "delete-service-cancel",
+					onClick: onCancel
+				},
+				{
+					label: count ? t({ id: "id_delete_services", message: "Delete Services" }) : t({ id: "id_delete_service", message: "Delete Service" }),
+					variant: "call-to-action",
+					dataQa: "delete-service-ok",
+					isDisabled: matchText.trim() !== matchName,
+					onClick: onDelete
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_rename_service_title", message: "Edit Service Name" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "rename-service-cancel",
+					onClick: onCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "rename-service-ok",
+					isDisabled: hasErrors,
+					onClick: handleRename
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_clone_service_title", message: "Clone Service: Pre-Check" })
isOpen
true
actions
isReady && (results.errors.length > 0 || results.warnings.length > 0)
+					? [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "clone-service-cancel",
+								onClick: onCancel
+							},
+							{
+								label: t({ id: "id_continue", message: "Continue" }),
+								variant: "call-to-action",
+								dataQa: "clone-service-continue",
+								isDisabled: results.errors.length > 0,
+								onClick: onContinue
+							}
+					  ]
+					: []
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_error_title", message: "An error occurred" })
isOpen
isOpen
maxWidth
md
actions
[
+				{
+					label: t({ id: "id_open_support_ticket", message: "Open Support Ticket" }),
+					variant: "link",
+					dataQa: "open-ticket",
+					onClick: handleOpenTicket
+				},
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_environments", message: "Environments" })
isOpen
isOpen
contentLayout
contents
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "select-environment-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_select", message: "Select" }),
+					variant: "call-to-action",
+					dataQa: "select-environment-ok",
+					onClick: handleSelect
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.title
actions
[
+				{
+					label: messages.cancelButton,
+					onClick: () => onDone("cancel"),
+					dataQa: "cancelUserAccess"
+				},
+				{
+					label: messages.saveButton,
+					variant: "call-to-action",
+					onClick: onSave,
+					isDisabled: isDisabled,
+					dataQa: "saveUserAccess"
+				}
+			]
isOpen
true
linearProgressIndicator
progressIndicator
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
t({ id: "id_auto_upgrade_plan_title", message: "Plan Upgrade" })
actions
[
+				{ label: "Close", onClick: handleClose },
+				{ label: "Run Upgrade", onClick: handleUpgrade, variant: "call-to-action", isDisabled: !!formError || upgradeMutation.isLoading }
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
actions
[{ variant: "outline", label: "Close", onClick: () => onClose() }]
title
getTitle()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
id ? t({ id: "id_dlg_client_profile_edit_title", message: "Edit Client Profile" }) : t({ id: "id_dlg_client_profile_create_title", message: "Create Client Profile" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
canConfigure
+					? [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "client-profile-cancel",
+								onClick: handleCancel
+							},
+							{
+								label: id ? t({ id: "id_save", message: "Save" }) : t({ id: "id_create", message: "Create" }),
+								variant: "call-to-action",
+								dataQa: id ? "client-profile-save" : "client-profile-create",
+								isDisabled: saveDisabled,
+								onClick: handleSave
+							}
+					  ]
+					: [
+							{
+								label: t({ id: "id_close", message: "Close" }),
+								variant: "outline",
+								dataQa: "client-profile-close",
+								onClick: handleCancel
+							}
+					  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
addMode
+					? t({ id: "id_dlg_client_cert_auth_title", message: "Add Client Certificate Authority" })
+					: t({ id: "id_dlg_client_cert_auth_edit_title", message: "Edit Client Certificate Authority" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
canConfigure
+					? [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "client-cert-auth-dialog-cancel",
+								onClick: handleCancel
+							},
+							{
+								label: t({ id: "id_save", message: "Save" }),
+								variant: "call-to-action",
+								dataQa: "client-cert-auth-dialog-save",
+								isDisabled: saveDisabled,
+								onClick: handleSave
+							}
+					  ]
+					: [
+							{
+								label: t({ id: "id_close", message: "Close" }),
+								variant: "outline",
+								dataQa: "client-cert-auth-dialog-close",
+								onClick: handleCancel
+							}
+					  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
maxWidth
md
title
t({ id: "id_dlg_view_logs_title", message: "View Logs" })
actions
[
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					dataQa: "close-error-dialog",
+					variant: "outline",
+					onClick: () => onClose()
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
isEdit
+					? t({ id: "id_dlg_edit_syslog_config_title", message: "Edit Syslog Forwarding Destination" })
+					: t({ id: "id_dlg_create_syslog_config_title", message: "Create Syslog Forwarding Destination" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
canConfigure
+					? [
+							{
+								label: t({ id: "id_close", message: "Close" }),
+								variant: "outline",
+								dataQa: "syslog-config-close",
+								onClick: handleCancel
+							}
+					  ]
+					: [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "syslog-config-cancel",
+								onClick: handleCancel
+							},
+							{
+								label: isEdit ? t({ id: "id_save", message: "Save" }) : t({ id: "id_create", message: "Create" }),
+								variant: "call-to-action",
+								dataQa: "syslog-config-save",
+								isDisabled: saveDisabled,
+								onClick: handleSave
+							}
+					  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_view_logs_title", message: "View Logs" })
isOpen
isOpen
maxWidth
lg
linearProgressIndicator
inProgress
actions
[
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
create ? t({ id: "id_dlg_create_endpoint_title", message: "Create Endpoint" }) : t({ id: "id_dlg_edit_endpoint_title", message: "Edit Endpoint" })
isOpen
true
linearProgressIndicator
progress
maxWidth
lg
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "endpoint-dialog-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "endpoint-dialog-save",
+					isDisabled: saveDisabled || progress,
+					onClick: handleSave
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_create_hostname_title", message: "Create Hostname" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "create-hostname-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_create", message: "Create" }),
+					variant: "call-to-action",
+					dataQa: "create-hostname-save",
+					isDisabled: isLoadingCertificates || saveDisabled,
+					onClick: handleCreate
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
maxWidth
lg
actions
[
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					variant: "outline",
+					dataQa: "library-close",
+					onClick: onClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_client_auth_title", message: "Edit Client Authentication" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "client-auth-dialog-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "client-auth-dialog-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_edit_cluster_name_title", message: "Edit Cluster Name" })
isOpen
true
linearProgressIndicator
progress
maxWidth
lg
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "cluster-name-dialog-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "cluster-name-dialog-save",
+					isDisabled: saveDisabled || progress,
+					onClick: handleSave
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_distributed_tracing_title", message: "Distributed Tracing" })
isOpen
isOpen
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "dt-dialog-disable-cancel",
+					isDisabled: inProgress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_disable", message: "Disable" }),
+					variant: "outline",
+					dataQa: "dt-dialog-disable-confirm",
+					isDisabled: inProgress,
+					onClick: handleDisable
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_move_hostname_title", message: "Move Hostname" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "create-hostname-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_move", message: "Move" }),
+					variant: "call-to-action",
+					dataQa: "move-hostname-save",
+					isDisabled: saveDisabled,
+					onClick: handleMove
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_distributed_tracing_title", message: "Configure Data Collection" })
isOpen
true
maxWidth
md
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "dt-dialog-deploy-cancel",
+					isDisabled: inProgress,
+					onClick: onCancel
+				},
+				{
+					label: t({ id: "id_dt_confirmDeploy", message: "Confirm and Deploy" }),
+					variant: "call-to-action",
+					dataQa: "dt-dialog-deploy-confirm",
+					onClick: handleConfirmDeploy,
+					isDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_rotate_passwords_title", message: "Rotate Broker Passwords" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "rotate-passwords-dialog-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_rotate", message: "Rotate" }),
+					variant: "call-to-action",
+					dataQa: "rotate-passwords-dialog-rotate",
+					onClick: handleRotate
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_delete_hostname_title", message: "Delete Hostname" })
isOpen
true
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "delete-hostname-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_delete", message: "Delete" }),
+					variant: "outline",
+					dataQa: "delete-hostname-confirm",
+					isDisabled: progress,
+					onClick: handleDelete
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_ldap_mgmt_access_title", message: "Set LDAP Group Access" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "ldap-mgmt-access-access-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "ldap-mgmt-access-access-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_mate_link_encryption_title", message: "Mate-Link Encryption" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "mate-link-encryption-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_disable", message: "Disable" }),
+					variant: "call-to-action",
+					dataQa: "mate-link-encryption-disable",
+					onClick: handleDisable
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_ldap_profile_title", message: "Edit LDAP Profile" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "ldap-mgmt-profile-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "ldap-mgmt-profile-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_domain_cert_auth_title", message: "Add Domain Certificate Authority" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "domain-cert-auth-dialog-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "domain-cert-auth-dialog-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_endpoint", message: "Delete Endpoint" })
actions
[
+						{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", dataQa: "delete-endpoint-cancel", onClick: handleCancelDelete },
+						{ label: t({ id: "id_delete", message: "Delete" }), variant: "outline", dataQa: "delete-endpoint-confirmed", onClick: handleDeleteEndpoint }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_syslog_config", message: "Deactivate Syslog Forwarding" })
contentText
t({ id: "id_prompt_delete_syslog_config", message: "Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server." })
actions
[
+						{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", dataQa: "syslog-config-cancel-delete", onClick: handleCancelDelete },
+						{ label: t({ id: "id_deactivate", message: "Deactivate" }), variant: "outline", dataQa: "syslog-config-delete", onClick: handleDelete }
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_disable_standard_domain_cert_auth", message: "Disable Standard Domain Certificate Authorities" })
contentText
t({
+							id: "id_disable_standard_domain_cert_auth_desc",
+							message: "This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates."
+						})
actions
[
+							{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", onClick: handleCancelConfirmDisable },
+							{ label: t({ id: "id_disable", message: "Disable" }), variant: "call-to-action", onClick: handleConfirmDisable }
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_cert_auth", message: "Delete Certificate Authority" })
contentText
t({
+							id: "id_prompt_delete_cert_auth",
+							message: "Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? "
+						})
actions
[
+							{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", onClick: handleCancelDelete },
+							{ label: t({ id: "id_delete", message: "Delete" }), variant: "outline", isDisabled: !allowServiceQueries, onClick: handleDelete }
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_client_profile", message: "Delete Client Profile" })
contentText
t({ id: "id_prompt_delete_client_profile", message: "Are you sure you want to permanently delete this client profile?" })
actions
[
+							{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", dataQa: "client-profile-cancel-delete", onClick: handleCancelDelete },
+							{ label: t({ id: "id_delete", message: "Delete" }), variant: "outline", dataQa: "client-profile-delete", onClick: handleDelete }
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.title
actions
[
+				{
+					label: messages.cancelButton,
+					onClick: () => onDone("cancel"),
+					dataQa: "cancelUserAccess"
+				},
+				{
+					label: messages.saveButton,
+					variant: "call-to-action",
+					onClick: onSave,
+					isDisabled: isDisabled,
+					dataQa: "saveUserAccess"
+				}
+			]
isOpen
true
linearProgressIndicator
progressIndicator
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.brokerSSOConfig.dialog.title
isOpen
dialogOpen
actions
[
+				{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: "outline" }
+			]
maxWidth
lg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.viewMessageSpoolDetails.dialog.title
actions
[
+				{
+					label: en.viewMessageSpoolDetails.buttons.close,
+					onClick: onClose,
+					variant: "outline"
+				}
+			]
isOpen
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
`Change Request - ${editLimitsRow.name}`
isOpen
true
maxWidth
sm
actions
[
+						{
+							label: en.common.buttons.cancel,
+							onClick: () => setEditLimitsRow(null),
+							isDisabled: submittingTicket
+						},
+						{
+							label: en.serviceLimits.buttons.sendRequest,
+							onClick: onSubmit,
+							variant: "call-to-action",
+							isDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit
+						}
+					]
linearProgressIndicator
submittingTicket
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
md
title
messages.menuLabel
linearProgressIndicator
isLoading
actions
[
+				{
+					label: messages.dialogCancel,
+					onClick: handleClose
+				},
+				{
+					label: messages.dialogAction,
+					id: "updateConfiguration",
+					variant: "outline",
+					onClick: handleUpdate,
+					isDisabled: isLoading
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
sm
title
en.environments.labels.deleteEnvironment
linearProgressIndicator
isDeleting
actions
[
+				{
+					label: en.common.buttons.cancel,
+					onClick: handleClose
+				},
+				{
+					label: en.common.buttons.delete,
+					id: "deleteButtonTest",
+					variant: "outline",
+					onClick: handleDelete,
+					isDisabled: !confirmDelete || isDeleting
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
sm
title
en.environments.labels.deleteEnvironment
actions
[
+				{
+					variant: "outline",
+					label: en.common.buttons.close,
+					onClick: handleClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
lg
title
dialogState.type === "create"
+					? en.environments.labels.createEnvironment
+					: en.environments.labels.editEnvironment
actions
[
+				{
+					label: en.common.buttons.cancel,
+					onClick: handleClose
+				},
+				{
+					label: dialogState.type === "create" ? en.environments.button.create : en.common.buttons.save,
+					variant: "call-to-action",
+					onClick: handleCreateOrEdit,
+					isDisabled:
+						isDuplicate || isLoading || hasError || hasDescError || (dialogState.type === "create" ? false : !isEdited)
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
title
environmentsStr.labels.ASEnvironment
linearProgressIndicator
isUpdating
actions
[
+				{
+					label: en.common.buttons.cancel,
+					onClick: handleCloseDialog
+				},
+				{
+					label: en.common.buttons.save,
+					id: "deleteButton",
+					variant: "call-to-action",
+					onClick: handleUpdateEnvironment,
+					isDisabled: isError || isUpdating
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
md
title
messages.menuLabel
linearProgressIndicator
isLoading
actions
[
+				{
+					label: messages.dialogCancel,
+					onClick: handleClose,
+					dataQa: "cancelConfigurationTemplatesDialog"
+				},
+				{
+					label: messages.dialogAction,
+					id: "updateConfiguration",
+					variant: "call-to-action",
+					onClick: handleUpdate,
+					dataQa: "applyConfigurationTemplatesDialog",
+					isDisabled: isLoading
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
title
dialogState.type === "create" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG
actions
[
+				{
+					label: userGroups.ugDialog.cancel,
+					variant: "text",
+					onClick: handleClose,
+					dataQa: "ugDialogCancelQa"
+				},
+				{
+					label: dialogState.type === "create" ? userGroups.ugDialog.create : userGroups.ugDialog.save,
+					variant: "call-to-action",
+					onClick: handleCreateOrEdit,
+					isDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,
+					dataQa: "ugDialogSaveQa"
+				}
+			]
maxWidth
"xl"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
md
title
userGroups.ugDeleteDialog.deleteUG
linearProgressIndicator
isDeleting
actions
[
+				{
+					label: userGroups.ugDeleteDialog.cancel,
+					onClick: handleClose,
+					dataQa: "ugDialogCancelQa"
+				},
+				{
+					label: userGroups.ugDeleteDialog.delete,
+					id: "deleteButtonTest",
+					variant: "call-to-action",
+					onClick: handleDelete,
+					isDisabled: isError || isDeleting,
+					dataQa: "ugDialogDeleteQa"
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
sm
title
en.accountSettings.enableSsoConfig
actions
[
+					{
+						label: en.accountSettings["cancel"],
+						onClick: cancelEnableSso
+					},
+					{
+						label: en.accountSettings.activate,
+						variant: "outline",
+						onClick: enableSsoConfiguration
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
xl
title
en.accountSettings.configureSsoSettings
actions
[
+					{
+						label: en.accountSettings["cancel"],
+						onClick: cancelConfigureSettings
+					},
+					{
+						label: en.accountSettings.save,
+						variant: "outline",
+						onClick: saveStagedSsoConfiguration,
+						isDisabled: !canSaveSettings
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
sm
title
en.accountSettings[cannotTestSso ? "testSsoConfigError" : "testSsoConfig"]
actions
[
+					{
+						label: en.accountSettings[cannotTestSso ? "close" : "cancel"],
+						onClick: cancelSsoTest
+					},
+					{
+						label: en.accountSettings.test,
+						variant: "outline",
+						onClick: testSsoConfiguration,
+						isDisabled: cannotTestSso
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
sm
title
en.accountSettings.setUpSso
actions
[
+					{
+						label: en.accountSettings.cancel,
+						onClick: cancelSsoSetup
+					},
+					{
+						label: en.accountSettings.sendRequest,
+						variant: "outline",
+						onClick: sendSsoSetupRequest,
+						isDisabled: !canSendRequest || submittingTicket,
+						dataQa: "sendRequestButton"
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
md
title
title
actions
[
+				{
+					label: cancelButtonLabel || userGroupManagement.cancel,
+					onClick: cancelHandler,
+					dataQa: "cancelNotificationHandlerQa"
+				},
+				{
+					label: actionButtonLabel,
+					id: "notificationModalActionButton",
+					variant: "outline",
+					onClick: actionHandler,
+					dataQa: "notificationModalActionButton"
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
md
title
userGroupManagement.removeClaimMapping
actions
[
+				{
+					label: userGroupManagement.cancel,
+					onClick: () => setIsClaimMappingRemoveDialogOpen(false),
+					dataQa: "cancelClaimMappingQa"
+				},
+				{
+					label: userGroupManagement.remove,
+					id: "deleteClaimMappingId",
+					variant: "call-to-action",
+					onClick: deleteClaimMapping,
+					dataQa: "deleteClaimMappingQa"
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
confirmDialogOpen || errorDialogOpen
maxWidth
sm
title
confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error
linearProgressIndicator
submittingTicket
actions
[
+					{
+						label: supportPage.dialog.close,
+						onClick: handleClose,
+						dataQa: "supportTicketModelOKButton",
+						variant: "outline"
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isRequestLimitChangeDialogOpen
title
en.overview.eventPortalSection.requestLimitChangeDialogTitle
actions
[
+						{
+							label: en.overview.eventPortalSection.close,
+							dataQa: "requestLimitChangeCloseAction",
+							onClick: onCloseRequestLimitChange
+						},
+						{
+							label: en.overview.eventPortalSection.sendRequest,
+							dataQa: "requestLimitChangeSendRequestAction",
+							onClick: onRequestLimitChange,
+							variant: "outline",
+							isDisabled: !limitRequestNumber
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isRequestUpgradeDialogOpen
title
en.overview.banner.dialogTitle
maxWidth
lg
actions
[
+					{
+						label: en.overview.banner.cancel,
+						dataQa: "requestUpgradeCloseAction",
+						onClick: onCloseRequestUpgradeDialog
+					},
+					{
+						label: en.overview.banner.sendRequest,
+						dataQa: "requestUpgradeSendRequestAction",
+						onClick: RequestUpgradeHandler,
+						variant: "outline",
+						isDisabled:
+							(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||
+							(!!contactEmail && !isValidEmail(contactEmail))
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDeleteAccountDialogOpen
title
en.overview.advancedSettingsSection.deleteAccountQuestion
actions
[
+					{
+						label: en.overview.advancedSettingsSection.cancel,
+						dataQa: "cancelDeleteAccountButton",
+						onClick: onCloseDeleteAccountDialog
+					},
+					{
+						label: en.overview.advancedSettingsSection.delete,
+						dataQa: "confirmDeleteAccountButton",
+						onClick: deleteAccountHandler,
+						variant: "outline",
+						isDisabled: !password
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Deactivate Service Notifications
contentText
Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed.
isOpen
openConfirmationDialog
actions
[
+					{ label: "Cancel", dataQa: "cancel", onClick: () => setOpenConfirmationDialog(false), variant: "text" },
+					{
+						label: "Deactivate",
+						dataQa: "deactivate",
+						onClick: () => {
+							stopNotifications();
+							setOpenConfirmationDialog(false);
+						},
+						variant: "outline"
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
environments.moveDialogLabels.title
isOpen
true
actions
[
+				{
+					label: environments.moveDialogLabels.cancel,
+					variant: "text",
+					dataQa: "move-datacenter-cancel",
+					onClick: onCancel
+				},
+				{
+					label: environments.moveDialogLabels.move,
+					variant: "call-to-action",
+					dataQa: "move-datacenter-ok",
+					onClick: handleMove,
+					isDisabled: !!errors.environment
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
downloadDialog.errorDialogOpen
title
en.privateRegions.labels.downloadFailed
actions
[{ label: "OK", onClick: handleCloseDialog }]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
actions
actions
contentText
undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.privateRegions.labels.new
actions
[
+					{
+						label: en.common.buttons.cancel,
+						onClick: onClose
+					},
+					{
+						label: en.privateRegions.button.sendRequest,
+						onClick: onRequest,
+						variant: "call-to-action",
+						isDisabled: loading
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
state.open
title
en.tokens.text.copyToken.title
actions
[
+					{
+						label: en.common.buttons.close,
+						variant: isCopied ? "outline" : "call-to-action",
+						onClick: handleCancel,
+						isDisabled: !isCopied,
+						dataQa: "closeTokenButton"
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
!!errorMessage
title
en.tokens.text.genericError.title
actions
[
+				{
+					label: en.common.buttons.close,
+					onClick: handleClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
state.open
title
en.tokens.text.regenerateToken.title
actions
[
+					{
+						label: en.common.buttons.cancel,
+						onClick: handleCancel
+					},
+					{
+						label: "Regenerate",
+						onClick: handleRegenerate,
+						variant: "outline",
+						dataQa: "confirmRegenerateTokenButton"
+					}
+				]
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
state.open
title
en.tokens.text.deleteToken.title
actions
[
+					{
+						label: en.common.buttons.cancel,
+						onClick: handleCancel
+					},
+					{
+						label: "Delete",
+						onClick: handleDelete,
+						variant: "outline",
+						dataQa: "confirmDeleteTokenButton"
+					}
+				]
linearProgressIndicator
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tracingProfile.title.details
isOpen
isOpen
actions
[
+				{
+					label: tracingProfile.button.close,
+					variant: "outline",
+					onClick: onClose
+				}
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tracingSynchDialog.title
contentText
tracingSynchDialog.contentText
isOpen
isOpen
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: close
+				}
+			]
maxWidth
md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit
contentText
tracingProfile.contentText
isOpen
isOpen
linearProgressIndicator
modifyingTracingProfile
actions
actions
+
+ +
+
+ +
+
+
+ SolaceTextField + 161 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep71
intg35
mc21
saas34
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name161
value159
onChange125
dataQa120
hasErrors101
helperText101
label83
readOnly66
required60
onBlur51
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (161)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchInput
dataQa
searchInput
placeholder
Filter by Name
value
searchText
onChange
handleSearchTextChange
width
50%
endAdornment
[
+												searchText ? (
+													
+														
+													
+												) : null,
+												
+											]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleNameChange
onBlur
handleNameOnBlur
id
eventMesh[name]
name
eventMesh[name]
dataQa
eventMesh[name]
label
LABEL_NAME
value
memContent.name
required
mode === "create" || mode === "edit"
readOnly
mode === "view"
hasErrors
!!getNameErrorMessage
helperText
getNameErrorMessage
disabled
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][schemaRegistry][registryUrl]
disabled
isDisabled
hasErrors
!!error
helperText
!readOnly ? error?.message ?? renderKafkaAuthHelperText("registryUrl") : ""
id
schemaRegistry[registryUrl]
label
Registry URL
name
name
onBlur
onBlur
onChange
(e) => {
+									onChange(e.value);
+								}
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][management][sempUsername]
disabled
loading
hasErrors
!!error
helperText
error?.message ?? ""
id
eventBroker[solace][management][sempUsername]
label
eventBrokerFormFieldLabels.sempUsername
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][management][sempUrl]
disabled
loading
hasErrors
!!error
helperText
error?.message ?? ""
id
eventBroker[solace][management][sempUrl]
label
eventBrokerFormFieldLabels.sempUrl
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][messaging][host]
disabled
loading
hasErrors
!!error
helperText
!readOnly ? error?.message ?? "e.g. ########.messaging.solace.cloud or 123.89.40.72" : ""
id
eventBroker[solace][messaging][host]
label
eventBrokerFormFieldLabels.host
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
disabled
disabled
hasErrors
!!error
helperText
!readOnly ? error?.message ?? helperText : ""
id
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
inlineLabel
true
label
label
name
name
onBlur
() => {
+												onBlur();
+												setValue(name, value.trim());
+											}
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
!readOnly && isRequired
value
value
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][authentication][${authKey}][${inputField}]`
disabled
disabled
hasErrors
!!error
helperText
!readOnly ? error?.message ?? helperText : ""
id
`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`
label
eventBrokerFormFieldLabels[inputField]
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
isRequired
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][authentication][bootstrapServers]
hasErrors
!!error
helperText
!readOnly ? error?.message ?? "Use a comma (,) to separate the messaging services in the Kafka cluster." : ""
id
eventBroker[kafka][authentication][bootstrapServers]
label
eventBrokerFormFieldLabels.bootstrapServers
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
disabled
loading || kafkaDelimiterIsNotSet
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
!!error
helperText
error?.message ?? ""
label
eventBrokerFormFieldLabels.port
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
selectedMode === "view"
type
number
value
value
width
250px
dataQa
`eventBroker[solace][messaging][protocol][${index}][port]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`messagingServiceDetails[${attribute}]`
name
`messagingServiceDetails[${attribute}]`
dataQa
`messagingServiceDetails[${attribute}]`
value
attributeValue
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[name]
disabled
isLoading
hasErrors
!!error
helperText
error?.message ?? ""
label
eventBrokerFormFieldLabels.name
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly || !!content.solaceCloudMessagingServiceId
required
!readOnly
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][messageVpn]
disabled
isLoading
hasErrors
!!error
helperText
error?.message ?? ""
id
eventBroker[solace][messageVpn]
label
eventBrokerFormFieldLabels.messageVPN
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"authenticationB"
dataQa
"authenticationB"
value
getCredentialsFieldValue(credentials, "inputB")
type
inputBType
disabled
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!nameErrorMsg || !!attributeErrorMsg
helperText
nameErrorMsg || null
onChange
(e) => {
+													onChange(e.value);
+													handleNameUpdate(e.value);
+												}
onBlur
() => {
+													onBlur();
+													onChange(value.trim());
+													handleNameUpdate(value.trim());
+												}
dataQa
`${caKey}-input`
dataTags
`hasFocus=${customAttribute.hasFocus}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!nameErrorMsg || !!attributeErrorMsg
helperText
nameErrorMsg || null
onChange
(e) => {
+												onChange(e.value);
+												handleNameUpdate(e.value);
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleNameUpdate(value.trim());
+											}
dataQa
`${caKey}-input`
dataTags
`hasFocus=${customAttribute.hasFocus}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || null
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
maxLength
251
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? getVersionErrorMessage(value, error) : ""
onChange
(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())
onBlur
() => {
+										onBlur();
+										onUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);
+									}
dataQa
`${versionObjectName}[version]`
autoFocus
mode === "edit"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
() => {
+								onBlur();
+								onUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());
+							}
dataQa
`${versionObjectName}[displayName]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? getVersionErrorMessage(value, error) : ""
onChange
(e) => {
+										const newValue = e.value.trim();
+										const validVersion = semverValid(newValue) ?? newValue;
+
+										onChange(validVersion);
+										checkVersionAndSetWarning(validVersion);
+									}
dataQa
"DuplicateEntityVersion[version]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
required
true
label
Name
value
variableName
onChange
handleNameChange
onBlur
() => handleNameValidate()
hasErrors
!!nameErrorMsg
helperText
nameErrorMsg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
textFieldName ?? "entityNameTextField"
dataQa
dataQa ?? ""
label
label
value
entityName
required
true
readOnly
readOnly
maxLength
maxLength + 1
hasErrors
!!validationErrorMsg
helperText
validationErrorMsg
onChange
handleEntityNameChange
onBlur
handleOnBlur
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
createInlineApplicationDomain
dataQa
createInlineApplicationDomain
label
New Application Domain Name
value
name
required
true
hasErrors
!!validationErrorMsg || !!backendErrorMsg
helperText
validationErrorMsg || backendErrorMsg || SHARE_WARNING
onChange
handleEntityNameChange
onBlur
handleOnBlur
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
textFieldName ?? "entityVersionTextField"
dataQa
dataQa ?? ""
label
Version
value
version
required
true
hasErrors
!!validationErrorMsg
helperText
validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText
onChange
handleVersionChange
onBlur
handleOnBlur
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
createInlineApplication
dataQa
createInlineApplication
label
New Application Name
value
name
required
true
hasErrors
!!validationErrorMsg || !!backendErrorMsg
helperText
validationErrorMsg || backendErrorMsg || ""
onChange
handleEntityNameChange
onBlur
handleOnBlur
disabled
!domainId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleNameChange
onBlur
handleNameOnBlur
id
runtimeAgent[name]
name
runtimeAgent[name]
dataQa
runtimeAgent[name]
value
eventManagementAgent.name
hasErrors
!!getNameErrorMessage
helperText
getNameErrorMessage
disabled
loading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[id]
name
runtimeAgent[id]
dataQa
runtimeAgent[id]
value
agentId
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchInput
dataQa
searchInput
placeholder
Search
value
searchText
onChange
handleSearchTextChange
width
100%
endAdornment
[
+						searchText ? (
+							
+								
+							
+						) : null,
+						
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"Event Broker"
readOnly
true
inlineLabel
true
label
"Event Broker"
value
scan.messagingServiceName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
topicAddress
label
Topic Address
value
selectedAudits[0].identifier
required
true
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
dataQa
`detailsName`
maxLength
256
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
clientProfileName
hasErrors
!!error
helperText
error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText
onChange
(e) => {
+								setClientProfileName(e.value);
+								onChange(e.value);
+							}
dataQa
`clientProfileName`
maxLength
33
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
email-input
name
email-input
type
email
label
en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress
helperText
!isValid ? (
+													en.eventPortalResources.labels.startJourney.inviteUsers.helperTextError
+												) : (
+													
+														{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}
+														
+															{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}
+														
+													
+												)
hasErrors
!isValid
onChange
handleEmailInput
value
email
fullWidth
true
onBlur
validateEmail
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
onChange
(e) => {
+										onChange(e.value);
+										updateConfiguration();
+									}
onBlur
() => {
+										onBlur();
+										onChange(value?.trim());
+										updateConfiguration();
+									}
dataQa
`${configurationName}-postRequestTarget`
hasErrors
!!error
helperText
error?.message || ""
maxLength
2001
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.configuration.restDeliveryPoint.requestHeaderName
name
name
value
value || ""
required
true
onChange
(e) => {
+									onChange(e.value);
+								}
onBlur
() => {
+									onBlur();
+									value && onChange(value.trim());
+								}
dataQa
configurationNameRequestHeaderName
hasErrors
!!error
helperText
error ? error.message : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription
onChange
(e) => {
+												onChange(e.value);
+												handleUpdateRestDeliveryPointName(value);
+											}
onBlur
() => {
+												onBlur();
+												handleUpdateRestDeliveryPointName(value ? value.trim() : "");
+											}
dataQa
`restDeliveryPointName-editor`
readOnly
!getValues(`${formName}.configurationTypeId`)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
FormCustomizedClientProfileName
id
name
name
name
dataQa
name
value
value || ""
label
messagesConfiguration.solaceClientProfileName.clientProfileName
onChange
(e) => {
+												onChange(e.value);
+
+												if (e.value) {
+													setObservedConfiguration(e.value);
+												}
+											}
onBlur
() => {
+												onChange(value.trim());
+												onBlur();
+											}
helperText
error ? error.message : ""
hasErrors
!!error
required
true
maxLength
33
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsg
helperText
errorMsg || null
onChange
(e) => {
+								onChange(e.value);
+								handleFilenameUpdate(e.value);
+							}
onBlur
() => {
+								onBlur();
+								onChange(value.trim());
+								handleFilenameUpdate(value.trim());
+							}
dataQa
`filenameInput`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"enumeration[name]"
autoFocus
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || null
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+													setIsDirty(true);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
maxLength
251
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? getVersionErrorMessage(value, error) : ""
onKeyDown
blockEnterKey
onChange
(e) => {
+												setIsDirty(true);
+
+												const newValue = e.value.trim();
+
+												if (semverValid(newValue) !== null) {
+													checkIfVersionStillLatestAfterUpdate(newValue, versionId);
+												}
+
+												onChange(semverValid(newValue) ?? newValue);
+											}
dataQa
`${versionObjectName}[version]`
autoFocus
isDuplicateVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => {
+											setIsDirty(true);
+											onChange(e.value);
+										}
dataQa
`${versionObjectName}[displayName]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventSearchInput
dataQa
eventSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+								internalSearchText ? (
+									 setInternalSearchText("")}>
+										
+									
+								) : null,
+								
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
nodeNameTextField
dataQa
appDomain-graph-object-name-field
value
nodeName
onChange
handleChange
onKeyDown
handleKeyDown
onFocus
(e) => {
+						setTimeout(() => e.target.select(), 100); // Delay to ensure select() works
+					}
hasErrors
!!errorMessage
helperText
errorMessage
autoFocus
true
width
`${nameEditorWidth}px`
maxLength
maxNameLength + 1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventApiSearchInput
dataQa
eventApiSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								 setInternalSearchText("")}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${level.name}-${index}`
name
name
hasErrors
!!error
onBlur
() => {
+										onBlur();
+									}
helperText
error && "Invalid Format"
value
value || ""
onChange
(e) => onChange(e.value.trim())
dataQa
name
fullWidth
true
minWidth
622px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
dataQa
"eventApi[name]"
autoFocus
true
width
"526px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`maxTTLTextField-${index}`
name
name
value
value || ""
onChange
(e) => onChange(e.value.trim())
dataQa
name
hasErrors
!!error
helperText
error ? error.message : null
readOnly
mode === "view"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`maxMsgSpoolUsageTextField-${index}`
name
name
value
value || ""
onChange
(e) => onChange(e.value.trim())
dataQa
name
hasErrors
!!error
helperText
error ? error.message : null
readOnly
mode === "view"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`planNameTextField-${index}`
dataQa
name
name
name
value
value || ""
onChange
(e) => onChange(e.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"eventApiProduct[name]"
autoFocus
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"schema[name]"
autoFocus
true
maxLength
2049
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
autoFocus
value === ""
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
onBlur
dataQa
`applicationVersion[consumers].${index}.name`
maxLength
256
readOnly
!isGlobal
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"applicationDomain[name]"
autoFocus
true
maxLength
256
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
() => {
+									onBlur();
+									onChange(value.trim());
+								}
dataQa
topicAddressResourcesDisplayName
required
true
autoFocus
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
() => {
+									onBlur();
+									onChange(value.trim());
+								}
dataQa
topicAddressResourcesLink
required
true
type
url
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"event[name]"
autoFocus
true
maxLength
2049
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
schemaSearchInput
dataQa
schemaSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								
+									
+								
+							) : null,
+							
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchInput
dataQa
searchInput
placeholder
Search
value
searchText
onChange
handleSearchTextChange
width
100%
endAdornment
[
+						searchText ? (
+							
+								
+							
+						) : null,
+						
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Name"
required
true
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"schema[name]"
autoFocus
true
maxLength
2049
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
getVersionErrorMessage(value, error)
onChange
(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())
dataQa
"schemaVersion[version]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Name"
required
true
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"event[name]"
autoFocus
true
maxLength
2049
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
getVersionErrorMessage(value, error)
onChange
(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())
dataQa
"eventVersion[version]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventSearchInput
dataQa
eventSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								 setInternalSearchText("")}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"application[name]"
autoFocus
true
maxLength
256
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationSearchInput
dataQa
applicationSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								 setInternalSearchText("")}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
en.common.labels.name
autoFocus
value === ""
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
onBlur
dataQa
`consumerName`
maxLength
256
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"configurationInputA"
dataQa
"configurationInputA"
label
messages.credentials[configuration.typeId].inputA
value
inputA ?? ""
required
isEditing
disabled
isLoading
hasErrors
!!inputAValidationError
helperText
inputAValidationError
onChange
onChangeInputA
readOnly
!isEditing
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"configurationInputB"
dataQa
"configurationInputB"
label
messages.credentials[configuration.typeId].inputB
value
inputB || ""
type
inputBType
required
isEditing
disabled
isLoading || (configuration.inputB.type === "password" && !isEditing)
hasErrors
!!inputBValidationError
helperText
inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext
onChange
onChangeInputB
readOnly
configuration.inputB.type !== "password" && !isEditing
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name ?? "emptyName"
label
label ?? "Name"
value
name
onChange
(e) => {
+				const newName = e.value ?? "";
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newName));
+				}
+
+				setName(newName);
+			}
onBlur
() => {
+				const newName = name.trim();
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newName));
+				}
+
+				setName(newName);
+			}
hasErrors
!!errorMsg
helperText
errorMsg
dataQa
"name"
maxLength
256
required
true
placeholder
placeholder
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
topic ?? "emptyTopic"
label
label
value
topic
onChange
(e) => {
+				const newTopic = e.value ?? "";
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newTopic));
+				}
+
+				setTopic(newTopic);
+			}
onBlur
() => {
+				const newTopic = topic.trim();
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newTopic));
+				}
+
+				setTopic(newTopic);
+			}
hasErrors
!!errorMsg
helperText
errorMsg
dataQa
label
maxLength
maxLength
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
name
host
value
solaceConnectionValues.authentication.host
label
en.connectors.labels.host
dataQa
connectionDetailsHostTextField
onBlur
() => {
+										if (isEmpty(solaceConnectionValues.authentication.host)) {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												host: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)
+											});
+										} else {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												host: ""
+											});
+										}
+									}
onChange
({ value: host }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											authentication: {
+												...solaceConnectionValues.authentication,
+												host: host
+											}
+										});
+									}
hasErrors
validationEnabled && !!solaceValidationErrors.host
helperText
validationEnabled && solaceValidationErrors.host
+											? solaceValidationErrors.host
+											: en.connectors.helperText.host
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
msgVpn
value
solaceConnectionValues.authentication.messageVpn
label
en.connectors.labels.msgVpn
dataQa
msgVpnTextField
onChange
({ value: msgVpn }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											authentication: {
+												...solaceConnectionValues.authentication,
+												messageVpn: msgVpn
+											}
+										});
+									}
onBlur
() => {
+										if (isEmpty(solaceConnectionValues.authentication.messageVpn)) {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												messageVpn: en.connectors.labels.validationErrors.missingRequiredField(
+													en.connectors.labels.msgVpn
+												)
+											});
+										} else {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												messageVpn: ""
+											});
+										}
+									}
required
true
hasErrors
validationEnabled && !!solaceValidationErrors.messageVpn
helperText
validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
solaceBindingDestination
onChange
({ value: destination }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											binding: {
+												...solaceConnectionValues.binding,
+												destination: destination
+											}
+										});
+									}
value
solaceConnectionValues.binding.destination
label
en.connectors.labels.bindingDestination
required
true
dataQa
solaceBindingDestinationTextField
onBlur
() => {
+										validateDestination();
+									}
hasErrors
validationEnabled && !!solaceValidationErrors.destination
helperText
solaceValidationErrors.destination && validationEnabled
+											? solaceValidationErrors.destination
+											: // flipped because solaceDirection is the opposite of the actual connector direction
+											isEqual(solaceDirection, ConnectorDirection.Source)
+											? en.connectors.helperText.destinationTarget
+											: en.connectors.helperText.destinationSource
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
constantName
label
en.connectors.labels.customConstantValue
required
true
dataQa
constant-name-textfield
maxLength
255
hasErrors
!!constantNameError
helperText
constantNameError
value
String(constantField.constantValue)
onChange
(e) => {
+							setConstantNameError("");
+							setConstantField({ ...constantField, constantValue: e.value });
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
headerName
label
en.connectors.labels.customHeaderName
required
true
dataQa
header-name-textfield
maxLength
255
hasErrors
!!headerNameError
helperText
headerNameError
value
customHeaderField.headerName
onChange
(e) => {
+						setHeaderNameError("");
+						setCustomHeaderField({ ...customHeaderField, headerName: e.value });
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
headerName
label
en.connectors.labels.customHeaderName
required
true
dataQa
header-name-textfield
maxLength
255
value
headerName
hasErrors
!!headerNameError
helperText
headerNameError
onChange
(e) => {
+						setHeaderName(e.value);
+						setHeaderNameError("");
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
constantName
label
en.connectors.labels.customConstantValue
required
true
dataQa
constant-name-textfield
maxLength
255
value
constantValue
hasErrors
!!constantNameError
helperText
constantNameError
onChange
(e) => {
+							onConstantValueChange(e);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
targetHeaderExample
value
en.connectors.targetHeaderMapping.targetHeaderExample
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
headerExpressionExample
value
en.connectors.targetHeaderMapping.headerExpressionExample
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
type
sensitiveField && !showSensitiveField ? "password" : "text"
label
props.label
name
props.name
onChange
(e) => onChangeTrigger(props, e)
value
fieldValue
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
endAdornment
endAdornment
dataQa
`${props.label}-form-textField`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslKeyStoreReadOnlyBlank
value
props.value ? "" : "-"
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
values.name
dataQa
details_name_field
onChange
({ value: name }) => setValues({ ...values, name })
label
en.connectors.labels.name
required
true
onBlur
() => {
+							if (isEmpty(values.name)) {
+								setInitialStepValidationErrors({
+									...initialStepValidationErrors,
+									name: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)
+								});
+							} else {
+								setInitialStepValidationErrors({ ...initialStepValidationErrors, name: "" });
+							}
+						}
hasErrors
validationEnabled && !!initialStepValidationErrors.name
helperText
validationEnabled ? initialStepValidationErrors.name : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
tokenUri
value
readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri
readOnly
readOnly
label
en.connectors.labels.tokenUri
dataQa
tokenUriTextField
onChange
({ value: tokenUri }) => {
+					setOauthValues({
+						...oauthValues,
+						tokenUri: tokenUri
+					});
+				}
onBlur
() => {
+					if (isEmpty(oauthValues.tokenUri)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							tokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							tokenUri: ""
+						});
+					}
+				}
hasErrors
!!solaceValidationErrors.tokenUri
helperText
!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientId
value
readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId
readOnly
readOnly
label
en.connectors.labels.clientId
dataQa
tclientIdTextField
onChange
({ value: clientId }) => {
+					setOauthValues({
+						...oauthValues,
+						clientId: clientId
+					});
+				}
onBlur
() => {
+					if (isEmpty(oauthValues.clientId)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientId: ""
+						});
+					}
+				}
hasErrors
!!solaceValidationErrors.clientId
helperText
!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientSecret
value
readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret
readOnly
readOnly
label
en.connectors.labels.clientSecret
dataQa
clientSecretTextField
onChange
({ value: clientSecret }) => {
+					setOauthValues({
+						...oauthValues,
+						clientSecret: clientSecret
+					});
+				}
onBlur
() => {
+					if (isEmpty(oauthValues.clientSecret)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientSecret: en.connectors.labels.validationErrors.missingRequiredField(
+								en.connectors.labels.clientSecret
+							)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientSecret: ""
+						});
+					}
+				}
hasErrors
!!solaceValidationErrors.clientSecret
helperText
!readOnly && validationEnabled && solaceValidationErrors.clientSecret
+						? solaceValidationErrors.clientSecret
+						: ""
type
showClientSecret ? "text" : "password"
endAdornment
[
+					 setShowClientSecret(!showClientSecret)}
+					>
+						{showClientSecret ?  : }
+					
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
scopes
value
readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes
readOnly
readOnly
label
en.connectors.labels.scopes
dataQa
scopesTextField
onChange
({ value: scopes }) => {
+								setOauthValues({
+									...oauthValues,
+									scopes: scopes
+								});
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
clientName
value
readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName
readOnly
readOnly
label
en.connectors.labels.clientName
dataQa
clientNameTextField
onChange
({ value: clientName }) => {
+								setOauthValues({
+									...oauthValues,
+									clientName: clientName
+								});
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientUsername
value
basicAuthValues.clientUsername
label
en.connectors.labels.clientUsername
dataQa
clientUsernameBasicAuthTextField
onChange
({ value: clientUsername }) => {
+					setBasicAuthValues({
+						...basicAuthValues,
+						clientUsername: clientUsername
+					});
+				}
onBlur
() => {
+					if (isEmpty(basicAuthValues.clientUsername)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							basicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(
+								en.connectors.labels.clientUsername
+							)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							basicAuthUsername: ""
+						});
+					}
+				}
hasErrors
validationEnabled && !!solaceValidationErrors.basicAuthUsername
helperText
!readOnly
+						? solaceValidationErrors.basicAuthUsername && validationEnabled
+							? solaceValidationErrors.basicAuthUsername
+							: en.connectors.helperText.clientUsername
+						: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientPassword
label
en.connectors.labels.clientPassword
dataQa
clientPasswordTextField
value
basicAuthValues.clientPassword
readOnly
readOnly
onChange
({ value: clientPassword }) => {
+					setBasicAuthValues({
+						...basicAuthValues,
+						clientPassword: clientPassword
+					});
+				}
type
showPassword ? "text" : "password"
endAdornment
[
+					 setShowPassword(!showPassword)}
+					>
+						{showPassword ?  : }
+					
+				]
onBlur
() => {
+					if (isEmpty(basicAuthValues.clientPassword)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientPassword: en.connectors.labels.validationErrors.missingRequiredField(
+								en.connectors.labels.clientPassword
+							)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientPassword: ""
+						});
+					}
+				}
hasErrors
validationEnabled && !!solaceValidationErrors.clientPassword
helperText
!readOnly
+						? solaceValidationErrors.clientPassword && validationEnabled
+							? solaceValidationErrors.clientPassword
+							: en.connectors.helperText.clientPassword
+						: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslKeyStoreReadOnlyBlank
value
"-"
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslKeyStorePassword
value
readOnly
+									? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)
+									: clientCertValues.sslKeyStorePassword
readOnly
readOnly
label
en.connectors.labels.sslKeyStorePassword
dataQa
sslKeyStorePasswordTextField
onChange
({ value: sslKeyStorePassword }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStorePassword: sslKeyStorePassword
+								});
+							}
type
showSslKeyStorePassword ? "text" : "password"
endAdornment
[
+								 setShowSslKeyStorePassword(!showSslKeyStorePassword)}
+								>
+									{showSslKeyStorePassword ?  : }
+								
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslPrivateKeyAliasName
value
readOnly
+									? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)
+									: clientCertValues.sslPrivateKeyAliasName
readOnly
readOnly
label
en.connectors.labels.sslPrivateKeyAliasName
dataQa
sslPrivateKeyAliasNameTextField
onChange
({ value: sslPrivateKeyAliasName }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyAliasName: sslPrivateKeyAliasName
+								});
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslPrivateKeyPassword
value
readOnly
+									? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)
+									: clientCertValues.sslPrivateKeyPassword
readOnly
readOnly
label
en.connectors.labels.sslPrivateKeyPassword
dataQa
sslPrivateKeyPasswordTextField
onChange
({ value: sslPrivateKeyPassword }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyPassword: sslPrivateKeyPassword
+								});
+							}
type
showSslPrivateKeyPassword ? "text" : "password"
endAdornment
[
+								 setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}
+								>
+									{showSslPrivateKeyPassword ?  : }
+								
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
clientUsername
value
readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername
readOnly
readOnly
label
en.connectors.labels.clientUsername
dataQa
clientUsernameClientCertAuthTextField
onChange
({ value: clientUsername }) => {
+								setClientCertValues({
+									...clientCertValues,
+									clientUsername: clientUsername
+								});
+							}
onBlur
() => {
+								if (isEmpty(clientCertValues.clientUsername)) {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(
+											en.connectors.labels.clientUsername
+										)
+									});
+								} else {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: ""
+									});
+								}
+							}
hasErrors
!readOnly && !!solaceValidationErrors.clientCertUsername
helperText
!readOnly
+									? solaceValidationErrors.clientCertUsername && validationEnabled
+										? solaceValidationErrors.clientCertUsername
+										: en.connectors.helperText.clientUsername
+									: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
connectorDetails.name
dataQa
details_name_field
onChange
({ value: name }) => {
+						setConnectorDetails({ ...connectorDetails, name });
+					}
label
en.connectors.labels.name
required
true
onBlur
() => {
+						if (isEmpty(connectorDetails.name)) {
+							setDetailsStepValidationErrors({
+								...detailsStepValidationErrors,
+								name: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)
+							});
+						} else {
+							setDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: "" });
+						}
+					}
hasErrors
!!detailsStepValidationErrors.name
helperText
detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName
autoFocus
clone
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
eventBrokerService
label
en.connectors.labels.eventBrokerService
value
getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
host
required
true
label
en.connectors.labels.host
value
getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
msgVpn
required
true
label
en.connectors.labels.msgVpn
value
getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
required
true
name
authenticationTypeReadOnlyField
label
en.connectors.labels.authenticationType
value
getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
required
true
name
clientUsername
label
en.connectors.labels.clientUsername
value
getConnectorSummaryValue(basicAuthValues.clientUsername)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
required
true
name
clientPassword
label
en.connectors.labels.clientPassword
value
clientPassword
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
destinationType
required
true
label
en.connectors.labels.destinationType
value
getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
bindingDestination
required
true
label
en.connectors.labels.bindingDestination
value
getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
key
value
getConnectorSummaryValue(key)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
value
value
getConnectorSummaryValue(value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
(hasBlurred || isSubmitted) && hasErrors
helperText
(hasBlurred || isSubmitted ? errorText : "") || helperText
value
value
onChange
handleChange
onBlur
handleBlur
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
new_msg_spool_size
name
new_msg_spool_size
dataQa
newMessageSpoolSize
label
t({ id: "id_new_msg_spool_size_label", message: "New Message Spool Size (GB)" })
required
true
disabled
progress
autoFocus
true
size
4
value
messageStorage.value
onChange
handleMessageStorageChange
hasErrors
hasMessageStorageErrors
helperText
hasMessageStorageErrors ? messageStorageErrorText : t({ id: "id_default_size_gb", message: "Default: {0} GB", values: { 0: formatter.format(defaultMessageSpoolSize) } })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
service_name
name
service_name
dataQa
delete-service-confirm-name
label

+								Please type {matchText} to confirm.
+							
value
matchName
onChange
(e) => setMatchName(e.value)
autoFocus
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
service_name
name
service_name
dataQa
rename-service-name
label
t({ id: "id_new_service_name_label", message: "Service Name" })
value
newName
onChange
(e) => setNewName(e.value)
required
true
hasErrors
hasErrors
helperText
isEmpty
+							? t({ id: "id_rule_enter_value", message: "Required. Enter a value." })
+							: hasErrors
+							? t({ id: "id_rule_less_n_chars", message: "Exceeds limit. Enter a value under {0} characters.", values: { 0: 50 } })
+							: "\xa0"
inlineLabel
true
autoFocus
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
accessType
readOnly
true
inlineLabel
true
label
t({ id: "id_access_type", message: "Access Type" })
value
i18n._(accessTypes[endpoint.accessType])
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
telemetryProfileName
inlineLabel
true
label
t({ id: "id_telemetry_profile", message: "Telemetry Profile" })
value
telemetryProfileName
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
selectedTracingProfileId
dataQa
selectedTracingProfileId
inlineLabel
true
label
t({ id: "id_tracing_destination", message: "Tracing Destination" })
value
tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : "-"
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
msg_spool_size
inlineLabel
true
label
t({ id: "id_cur_msg_spool_size", message: "Current Message Spool Size (GB)" })
value
messageSpoolSize
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingProfileName
inlineLabel
true
label
t({ id: "id_tracing_destination", message: "Tracing Destination" })
value
tracingProfileName
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingClientUsername
inlineLabel
true
label
t({ id: "id_tracing_client_username", message: "Tracing Client Username" })
value
"sc-dt-trace-collector"
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
telemetryProfileName
inlineLabel
true
label
t({ id: "id_telemetry_profile", message: "Telemetry Profile" })
value
telemetryProfileName
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationBasicEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_basic_auth", message: "Basic Authentication" })
value
getEnablingText(msgVpn?.authenticationBasicEnabled)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationBasicEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_basic_auth", message: "Basic Authentication" })
value
getEnablingText(msgVpn?.authenticationBasicEnabled)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationClientCertEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_client_cert_auth", message: "Client Certificate Authentication" })
value
getEnablingText(msgVpn?.authenticationClientCertEnabled)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationOauthEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_oauth_provider_auth", message: "OAuth Provider Authentication" })
value
getEnablingText(msgVpn?.authenticationOauthEnabled)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
filterName
name
filterName
dataQa
services-filter-name
value
filter
onChange
handleSetFilter
placeholder
t({ id: "id_filter_services", message: "Filter by service name" })
customIcon
{
+								icon: filter ?  : ,
+								position: "end",
+								handleClick: filter ? handleClearFilter : undefined
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messageStorage
name
messageStorage
dataQa
messageStorage
type
number
label
t({ id: "id_message_storage_gb", message: "Message Spool Size (GB)" })
value
activeServiceClasses.length === 0 ? "" : formatter.format(parseInt(messageStorage.value))
onChange
handleMessageStorageChange
readOnly
true
inlineLabel
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messageStorage
name
messageStorage
dataQa
messageStorage
type
number
label
t({ id: "id_message_storage_gb", message: "Message Spool Size (GB)" })
disabled
activeServiceClasses.length === 0
value
activeServiceClasses.length === 0 ? "" : messageStorage.value
onChange
handleMessageStorageChange
hasErrors
hasMessageStorageErrors
helperText
messageStorageErrorText
readOnly
activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
namePort
name
namePort
dataQa
namePort
type
number
label
""
inlineLabel
true
size
5
disabled
disabled
hasErrors
hasErrors
helperText
errorText
value
port
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
msgVpnName
name
msgVpnName
dataQa
msgVpnName
type
text
readOnly
isCloning
hasErrors
hasErrors
helperText
errorText ? errorText : t({ id: "id_message_vpn_name_help", message: "The message VPN name cannot be changed once the service is created." })
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
dataQa
name
type
text
autoFocus
true
hasErrors
hasAnyErrors
helperText
anyErrorText
value
value
onChange
handleChange
onBlur
handleBlur
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
serviceLimitValue
label
en.serviceLimits.labels.newServiceLimit
type
number
required
true
onChange
onServiceLimitChange
value
newServiceLimit
dataQa
"serviceLimitValue"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environmentFilter
placeholder
environmentsStr.environmentList.filterPlaceholder
endAdornment
[]
onChange
handleSearch
dataQa
environmentFilterInput
width
"313px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.environments.labels.environmentName
value
dialogState.name
name
environmentName
maxLength
100
onChange
handleEnvNameChange
required
true
hasErrors
isDuplicate || hasError || hasNameRequiredError
helperText
handleErrorText()
disabled
isLoading
dataQa
envNameTestId
autoFocus
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
firstNameError
helperText
firstNameError ? myProfile.firstNameError : ""
name
userFirstName
id
userFirstName
dataQa
userFirstName
value
firstNameValue
maxLength
150
onChange
handleFirstName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
lastNameError
helperText
lastNameError ? myProfile.lastNameError : ""
name
userLastName
id
userLastName
dataQa
userLastName
value
lastNameValue
maxLength
150
onChange
handleLastName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
oldPasswordReq
helperText
oldPasswordReq ? myProfile.oldPasswordReq : ""
name
userOldPassword
type
password
id
userOldPassword
dataQa
userOldPassword
value
oldPasswordValue
maxLength
50
onChange
handleOldPasswordChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
newPasswordError.length > 0
helperText
newPasswordError
name
userNewPassword
id
userNewPassword
type
password
dataQa
userNewPassword
value
newPasswordValue
maxLength
50
onChange
handleNewPasswordChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
confirmPasswordError
helperText
confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning
name
userNewConfirmation
id
userNewConfirmation
type
password
dataQa
userNewConfirmation
value
newPasswordValueConfirm
maxLength
50
onChange
handleNewPasswordConfirmChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
userGroups.ugDialog.ugName
value
dialogState.name
name
userGroupName
maxLength
100
onChange
handleUGNameChange
disabled
isLoading
hasErrors
hasNameError || isDuplicate || hasNoNameError || isDefaultError
helperText
handleErrorText()
dataQa
userGroupNameQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userGroupSearch
dataQa
userGroupSearchQa
value
userGroupSearchValue
onChange
handleUserGroupSearchValue
placeholder
userGroups.userGroupsHome.search
size
155
endAdornment
[
+							userGroupSearchValue ? (
+								
+									
+								
+							) : null,
+							
+								
+							
+						]
width
20rem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.clientId?.errors?.length > 0
helperText
configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : ""
width
100%
name
clientId
onChange
({ name, value }) => {
+								const errors: string[] = [];
+
+								if (value.length < 1) {
+									errors.push(en.accountSettings.clientIdErrorMsg);
+								}
+
+								handleConfigureSettingsChange();
+
+								setConfigSettings((config) => {
+									return { ...config, [name]: { ...config.clientId, value, errors } };
+								});
+							}
title
en.accountSettings.clientId
value
configSettings.clientId.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.clientSecretKey.errors?.length > 0
helperText
configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : ""
type
hideSecretKey ? "password" : "text"
width
100%
name
clientSecretKey
onChange
({ name, value }) => {
+									const errors: string[] = [];
+
+									if (value.length < 1) {
+										errors.push(en.accountSettings.clientSecretKeyErrorMsg);
+									}
+
+									handleConfigureSettingsChange();
+
+									setConfigSettings((config) => {
+										return { ...config, [name]: { ...config.clientSecretKey, value, errors } };
+									});
+								}
title
en.accountSettings.clientSecretKey
value
configSettings.clientSecretKey.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.oidcDiscoveryUrl.errors?.length > 0
helperText
configSettings.oidcDiscoveryUrl.errors?.length > 0
+									? configSettings.oidcDiscoveryUrl.errors[0]
+									: en.accountSettings.discoveryUrlExpectedFormat
width
100%
name
oidcDiscoveryUrl
onChange
({ name, value }) => {
+								const errors: string[] = [];
+
+								if (value.length < 1) {
+									errors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);
+								}
+
+								handleConfigureSettingsChange();
+
+								setConfigSettings((config) => {
+									return { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };
+								});
+							}
title
en.accountSettings.discoveryUrl
value
configSettings.oidcDiscoveryUrl.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.additionalScopes.errors?.length > 0
helperText
configSettings.additionalScopes.errors?.length > 0
+									? configSettings.additionalScopes.errors[0]
+									: en.accountSettings.additionalScopesExpectedFormat
width
100%
name
additionalScopes
onChange
({ name, value }) => {
+								const errors: string[] = [];
+
+								if (value.indexOf(" ") >= 0) {
+									errors.push(en.accountSettings.noWhiteSpaceAllowed);
+								}
+
+								handleConfigureSettingsChange();
+
+								setConfigSettings((config) => {
+									return { ...config, [name]: { ...config.additionalScopes, value, errors } };
+								});
+							}
title
en.accountSettings.additionalScopes
value
configSettings.additionalScopes.value as string
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.accountSettings.preferredSubdomain
name
preferredSubdomain
onChange
(e) => setPreferredSubdomainText({ edited: true, text: e.value })
required
true
title
en.accountSettings.preferredSubdomain
value
preferredSubdomain.text
hasErrors
preferredSubdomain.edited && !canSendRequest
helperText
preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : ""
width
100%
dataQa
preferredSubdomainTextField
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
helperText
userGroupManagement[
+									claimIdChanged && claimId.trim().length < 1 ? "claimIdError" : "identityProviderHelperText"
+								]
hasErrors
claimIdChanged && claimId.trim().length < 1
label
userGroupManagement.identityProviderLabel
name
claimId
onChange
({ value }) => claimIdChangeHandler(value)
value
claimId
dataQa
roleId
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
editClaimValuesFieldId
name
editClaimValuesField
value
claimValuesMapping
onChange
({ value }) => setClaimValuesMapping(value)
helperText
claimValueError ? userGroupManagement.claimValueErrorMessage :  
hasErrors
claimValueError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
addClaimValuesField
name
addClaimValuesField
value
claimValuesMapping
onChange
({ value }) => setClaimValuesMapping(value)
helperText
claimValueError ? userGroupManagement.claimValueErrorMessage : undefined
hasErrors
claimValueError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
summaryError
helperText
handleSummaryError()
name
summaryfield
id
supportPageSummary
dataQa
supportPageSummary
value
summaryValue
onChange
handleSummaryFieldValue
maxLength
150
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
errorIdError
helperText
handleErrorIdError()
name
errorField
id
supportPageErrorId
dataQa
supportPageErrorId
value
errorIdValue
onChange
handleErrorIdFieldValue
maxLength
350
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
limitRequestNumber
name
limitRequestNumber
onChange
({ value }) => setLimitRequestNumber(+value)
type
number
value
limitRequestNumber
label
en.overview.eventPortalSection.totalObjects
required
true
width
15rem
data-qa
limitRequestNumberInput
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.overview.banner.contactEmail
name
en.overview.banner.contactEmail
onChange
(e) => setContactEmail(e.value)
title
en.overview.banner.contactEmail
value
contactEmail
hasErrors
!!contactEmail && !isValidEmail(contactEmail)
helperText
!!contactEmail && !isValidEmail(contactEmail) ? (
+								
+									{en.overview.banner.errorHelperText}
+								
+							) : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
en.overview.advancedSettingsSection.password
name
en.overview.advancedSettingsSection.password
onChange
({ value }) => setPassword(value)
title
en.overview.advancedSettingsSection.password
value
password
type
password
width
45rem
hasErrors
inCorrectPassword
dataQa
password
helperText
inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fullWidth
true
id
resetPasswordEmail
name
resetPasswordEmail
onChange
handleChange
title
en.forgotPassword.resetPasswordFieldTitle
placeholder
en.forgotPassword.email
dataQa
resetPasswordEmailInput
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
name
name
dataQa
name
label
List of Emails
value
handle
onChange
({ value }) => setHandle(value)
onFocus
() =>
+					!helper.hasErrors &&
+					setHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))
onBlur
() =>
+					!helper.hasErrors &&
+					setHelper((previous: any) => ({
+						...previous,
+						[name]: { hasErrors: false, helperText: handle ? "" : helperText.warning(name) }
+					}))
hasErrors
helper.hasErrors
helperText
helper.helperText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
search
width
45%
placeholder
Search...
onChange
(event) => setSearch(event.value)
value
search
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
tokenFormValues.name
aria-label
Name
data-lpignore
true
width
500px
name
name
required
true
hasErrors
!!nameError
helperText
nameError ?? undefined
onChange
(e) => dispatch(setTokenName(e.value))
dataQa
tokenName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
dataQa
details_displayName
name
tracingProfile.formFields.name.field
value
tracingDestination?.displayName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.type.field
value
tracingProfile.tracingType[tracingDestination?.tracingBackendType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.connectionType.field
value
tracingProfile.tlsConnectionType[tracingDestination.connectionType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.region.field
value
tracingProfile.datadogSite[tracingDestination.datadogSite]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.endpoint.field
value
tracingDestination.endpoint
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
dataQa
details_apiKey
name
tracingProfile.formFields.datadogApiKey.field
value
tracingDestination.datadogApiKey
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
!!readOnly
name
name
value
value || ""
hasErrors
!_.isEmpty(error)
helperText
error?.message
onChange
(e) => onChange(e.value)
onBlur
onBlur
dataQa
dataQa ?? name
+
+ +
+
+ +
+
+
+ SolaceStack + 132 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep64
intg53
mc3
saas12
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
spacing57
direction29
width10
justifyContent10
padding10
alignItems7
height7
bgcolor4
paddingLeft3
paddingTop3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (132)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
width
600
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
justifyContent
space-between
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
paddingLeft
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
paddingLeft
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
paddingLeft
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
flex-start
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
0.25
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
paddingTop
theme.spacing(3)
spacing
1.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
0.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
spacing
5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
p
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
direction
row
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
maxHeight
"360px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
4
width
"100%"
mb
5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
m
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
textAlign
"center"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
my
2.5
width
"fit-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
spacing
2.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
marginTop
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
gap
1
marginBottom
1
data-qa
manageCredentialsEditor
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
height
84
bgcolor
theme.palette.ux.background.w10
borderBottom
showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined
alignItems
"center"
padding
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
height
84
bgcolor
theme.palette.ux.background.w10
borderBottom
showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined
alignItems
"center"
padding
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
margin
createMode ? 0 : 3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
alignItems
"center"
padding
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
padding
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
padding
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
padding
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
padding
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
margin
createMode ? 0 : 3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
useFlexGap
true
flexWrap
wrap
height
data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
margin
createMode ? 0 : 3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
height
`calc(100vh - 80px)`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
useFlexGap
true
flexWrap
"wrap"
pl
3
pr
3
height
data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
connectorsSidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
6
direction
"row"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
ml
"auto"
mt
"auto"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
4.5
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
4
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
padding
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
start
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ml
3
mt
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
height
allItems.length !== 0 ? `calc(100vh + 80px)` : "100%"
bgcolor
theme.palette.ux.background.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
38rem
height
auto
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
style
{ minHeight: "45vh" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
paddingTop
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
marginTop
2
bgcolor
theme.palette.ux.background.w20
padding
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
paddingTop
1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
spacing
1
marginTop
marginTop
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
padding
2
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
gap
0.5
+
+ +
+
+ +
+
+
+ SolaceSelect + 104 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep72
intg10
mc12
saas10
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name104
value104
onChange102
dataQa90
label61
id58
hasErrors43
helperText43
required36
disabled34
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (104)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleTypeChange
id
eventMesh[type]
name
eventMesh[type]
dataQa
eventMesh[type]
label
LABEL_TYPE
value
memContent.brokerType
required
mode === "create"
readOnly
mode !== "create"
disabled
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
schemaRegistry[type]
id
schemaRegistry[type]
label
Type
name
schemaRegistry[type]
onChange
() => undefined
readOnly
true
value
content.type
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
disabled
disabled
id
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
inlineLabel
true
label
eventBrokerFormFieldLabels[inputField]
name
name
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
true
value
value
hasErrors
!!error
onClose
onBlur
helperText
error?.message ? en.common.error.selectValueRequired : ""
getOptionDisplayValue
(value) => {
+													const match = environmentVariableMenuOptions.find((props) => props.value === value);
+
+													return match ? match.name : "";
+												}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][schemaRegistry][authType]
disabled
disabled
id
eventBroker[kafka][schemaRegistry][authType]
label
eventBrokerFormFieldLabels.authentication
name
name
onChange
(e) => {
+							clearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);
+							onChange(e.value);
+						}
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][authentication][${authKey}][${inputField}]`
disabled
kafkaDelimiterIsNotSet || loading
id
`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`
label
eventBrokerFormFieldLabels[inputField]
name
name
onChange
(e) => onChange(e.value)
readOnly
isJaasConfigPassword || readOnly
required
true
value
value
hasErrors
!!error
onClose
onBlur
helperText
error?.message ? en.common.error.selectValueRequired : ""
getOptionDisplayValue
(value) => {
+													const match = environmentVariableMenuOptions.find((props) => props.value === value);
+
+													return match ? match.name : "";
+												}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][authentication][authType]
disabled
kafkaDelimiterIsNotSet || loading
id
eventBroker[kafka][authentication][authType]
label
eventBrokerFormFieldLabels.authentication
name
name
onChange
(e) => {
+							clearErrors(`kafka.authentication.auth.${selectedAuthType}`);
+							onChange(e.value);
+						}
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][authentication][saslscram][saslMechanism]`
disabled
kafkaDelimiterIsNotSet || loading
id
eventBroker[kafka][authentication][saslscram][saslMechanism]
label
eventBrokerFormFieldLabels.saslMechanism
name
name
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][messaging][type]
disabled
readOnly
id
eventBroker[type]
label
eventBrokerFormFieldLabels.transport
name
name
onChange
(e) => handleTransportChange(e.value)
readOnly
readOnly
value
value
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[type]
disabled
isLoading
id
eventBroker[type]
label
eventBrokerFormFieldLabels.type
name
name
onChange
(e) => onChange(e.value)
readOnly
readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
name
name
dataQa
environment[select]
label
`Environment`
onChange
onEnvironmantChange
value
selectedEnvironmentId
required
true
hasErrors
!!selectQueryError.environmentError || !!validationError.environmentError
helperText
selectQueryError.environmentError ?? validationError.environmentError
maxHeight
DROPDOWN_LIST_MAX_HEIGHT
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[environment]
name
memAssociation[environment]
dataQa
memAssociation[environment]
label
en.eventApiProduct.labels.environment
onChange
handleEnvironmentSelectChange
value
selectedEnvironmentId
required
true
hasErrors
!!validationError.environmentError
helperText
validationError.environmentError
maxHeight
dropdownListMaxHeight
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[eventMesh]
name
memAssociation[eventMesh]
dataQa
memAssociation[eventMesh]
label
en.eventApiProduct.labels.mem
onChange
handleEventMeshSelectChange
value
selectedEventMeshId
required
true
disabled
!selectedEnvironmentId
hasErrors
!!validationError.eventMeshError
helperText
validationError.eventMeshError
maxHeight
dropdownListMaxHeight
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[messagingService]
name
memAssociation[messagingService]
dataQa
memAssociation[messagingService]
label
en.eventApiProduct.labels.messagingService
onChange
handleMessagingServiceSelectChange
value
selectedMessagingServiceId
required
true
disabled
!selectedEventMeshId
hasErrors
!!validationError.messagingServiceError
helperText
validationError.messagingServiceError
maxHeight
dropdownListMaxHeight
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
name
name
dataQa
applicationVersion[select]
label
`Application version to add`
onChange
onApplicationVersionChange
value
selectedApplicationVersion?.id
required
true
maxHeight
DROPDOWN_LIST_MAX_HEIGHT
helperText
helperText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[domain]
name
eapAssociation[domain]
dataQa
eapAssociation[domain]
label
en.eventApiProduct.labels.applicationDomain
onChange
handleApplicationDomainChange
value
selectedApplicationDomainId
required
true
hasErrors
!!validationError.applicationDomainError
helperText
validationError.applicationDomainError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[eventApiProduct]
name
eapAssociation[eventApiProduct]
dataQa
eapAssociation[eventApiProduct]
label
en.eventApiProduct.labels.eventApiProduct
onChange
handleEventApiProductSelectChange
value
selectedEventApiProductId
required
true
disabled
!selectedApplicationDomainId
hasErrors
!!validationError.eventApiProductError
helperText
validationError.eventApiProductError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[eventApiProductVersion]
name
eapAssociation[eventApiProductVersion]
dataQa
eapAssociation[eventApiProductVersion]
label
en.eventApiProduct.labels.eventApiProductVersion
onChange
handleEventApiProductVersionSelectChange
value
selectedEventApiProductVersionId
required
true
disabled
!selectedEventApiProductId
hasErrors
!!validationError.eventApiProductVersionError
helperText
validationError.eventApiProductVersionError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
resourceRoleSelect
name
resourceRoleSelect
dataQa
resourceRoleSelect
disabled
isDisabled
value
role
onChange
(event) => onResourceRoleChange(resourceAssignment, event.value)
getOptionDisplayValue
(value: string) => RESOURCE_LABEL_BY_ROLE[value]
menuAnchorOrigin
{ vertical: "bottom", horizontal: "left" }
menuTransformOrigin
{ vertical: "top", horizontal: "left" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
envDialog-select-environment
name
envDialog-select-environment
dataQa
envDialog-select-environment
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
version.id
name
Entity List
onChange
onChangeVersion
dataQa
entityVersionSelect
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+													onChange(e.value);
+													handleSelectUpdate(e.value, "valueType");
+												}
getOptionDisplayValue
(value) => {
+													const match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);
+
+													return match ? match.name : "";
+												}
value
value
dataQa
`${caKey}-value-type-select`
width
"100%"
hasErrors
!nameErrorMsg && !!attributeErrorMsg
menuAnchorOrigin
{ vertical: "bottom", horizontal: "left" }
menuTransformOrigin
{ vertical: "top", horizontal: "left" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+													onChange(e.value);
+													handleSelectUpdate(e.value, "scope");
+												}
value
value
dataQa
`${caKey}-scope-select`
width
"100%"
readOnly
isDomainManager
hasErrors
!nameErrorMsg && !!attributeErrorMsg && !isDomainManager
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`${entityName}[versionState]`
onChange
handleStateSelectionChange
value
versionStateId
required
true
dataQa
stateSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
enumerationVersion
label
Version
dataQa
enumerationVersionName
onChange
handleVersionChange
value
selectedEnumVersionId
disabled
!selectedEnumOption || getEnumVersions.isLoading
getOptionDisplayValue
(value) => valueToMenuItemMap.get(value) || ""
width
35%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationDomainSelect-readOnly
label
title ? title : "Application Domain"
inlineLabel
inlineLabel
value
selectedApplicationDomain?.value
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
`${entityTypeToLabel(entityType)} Version`
required
true
value
selectedEntityVersionId
name
Entity List
onChange
handleEntityVersionChange
dataQa
entityVersionSelect
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
versionIncrementStrategySelect
onChange
handleStateSelectionChange
value
selectedVersionIncrementStrategy
required
true
dataQa
dataQa ?? "versionIncrementStrategySelect"
label
Version Incrementing
width
width ?? "100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
FilterTypeLabel[filterType]
onChange
handleSharedTypeChange
value
selectedValue
displayEmpty
true
onOpen
handleOpen
onClose
handleClose
open
openDropdown
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleTypeChange
id
objectRelationship[type]
name
objectRelationship[type]
dataQa
objectRelationship[type]
label
"Graph Type"
value
layoutType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
Agent Mode
disabled
loading
getOptionDisplayValue
(value: string) => EMA_MODES_LABELS[value]
hasErrors
!!getRuntimeAgentModeErrorMessage
helperText
getRuntimeAgentModeErrorMessage
name
agent mode
onChange
handleDiscoveryScanModeChange
readOnly
!!agentId
width
620px
value
eventManagementAgent.runtimeAgentMode
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingServiceTypeSelect
name
messagingServiceTypeSelect
dataQa
messagingServiceTypeSelect
label
Type
onChange
handleMessagingServiceTypeChange
value
selectedMessagingServiceType
width
30%
inlineLabel
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"layoutOptions"
name
"layoutOptions"
dataQa
"layoutOptions"
value
layoutType
onChange
handleLayoutTypeChange
width
"90px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"levelDepthOptions"
name
"levelDepthOptions"
dataQa
"levelDepthOptions"
value
levelDepthString
onChange
handleLevelDepthChange
width
"55px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleEnvironmentChange
id
addToAppVersions[environmentSelect]
name
addToAppVersions[environmentSelect]
dataQa
addToAppVersionsBulkPromotion[environmentSelect]
label
"Environment"
value
selectedEnvironmentId
disabled
isLoading
hasErrors
!!validationError.environmentInputError
helperText
validationError.environmentInputError
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleEventMeshChange
id
addToAppVersions[eventMeshSelect]
name
addToAppVersions[eventMeshSelect]
dataQa
addToAppVersionsBulkPromotion[eventMeshSelect]
label
"Modeled Event Mesh"
disabled
isLoading || selectedEnvironmentId === "" || eventMeshSelectOptions.length === 0
value
selectedEventMeshId
hasErrors
!!validationError.eventMeshInputError
helperText
validationError.eventMeshInputError
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleMessagingServiceChange
id
addToAppVersions[messagingServiceSelect]
name
addToAppVersions[messagingServiceSelect]
dataQa
addToAppVersionsBulkPromotion[messagingServiceSelect]
label
"Event Broker"
disabled
isLoading || selectedEventMeshId === "" || messagingServiceOptions.length === 0
value
selectedMessagingServiceId
hasErrors
!!validationError.messagingServiceInputError
helperText
validationError.messagingServiceInputError
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleEventFlowFilterChange
id
eventFlowSelect
name
eventFlowSelect
dataQa
eventFlowSelect
value
eventFlowOption
disabled
graphLoading || graphUpdating || drawInProgress || graphNodeExceeded
width
280px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"configurationVersionSelect"
onChange
handleOnChange
value
audits[0].id
dataQa
"configurationVersionSelect"
width
"100%"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
filterLabel
onChange
handleChange
value
selectedValue
displayEmpty
true
onOpen
handleOpen
onClose
handleClose
open
openDropdown
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
selectMessagingService
name
selectMessagingService
dataQa
selectMessagingService
onChange
handleSelectMessagingServiceChange
value
selectedMessagingServiceId
disabled
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
onChange
handleVersionChange
id
version-selector-runtime
name
version-selector-runtime
dataQa
versionSelectorRuntime
label
Version
value
selectedVersionId
width
350px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleVersionChange
id
version-selector-runtime
name
version-selector-runtime
dataQa
versionSelectorRuntime
label
Version
value
selectedVersionId
width
315px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleSecondVersionChange
id
version-selector-runtime
name
version-selector-runtime
dataQa
versionSelectorRuntime
label
Version
value
selectedSecondVersionId
width
315px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
async (e) => {
+										onChange(e.value);
+										trigger(`${configurationName}-postRequestTarget`);
+										updateConfiguration();
+									}
disabled
!getValues(`${configurationName}-postRequestTarget`)
dataQa
`${configurationName}-requestTargetEvaluation`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.configuration.restDeliveryPoint.requestHeaderType
name
`${configurationName}-request`
value
requestHeaderType
onChange
(e) => setRequestHeaderType(e.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : ""
onChange
(e) => {
+											onChange(e.value);
+											handleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);
+										}
dataQa
restDeliveryPointConfigurationType-selector
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
context.value
name
contextSelector
dataQa
contextSelector
onChange
handleContextOptionChange
inlineLabel
true
disabled
!!isDisabled
width
400px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
kafkaDelimiter
dataQa
kafkaDelimiter
onChange
handleDelimiterChange
value
delimiter
disabled
hasFetchError
width
150px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"AsyncAPI Version"
name
AsyncAPI Version
value
version
onChange
(e) => {
+				setVersion(e.value as EPSupportedAsyncApiVersion);
+
+				if (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);
+			}
getOptionDisplayValue
(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Document Extensions"
name
documentExtensions
value
extension
onChange
(e) => {
+				setExtension(e.value as SupportedAsyncApiExtensionOptions);
+
+				if (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);
+			}
getOptionDisplayValue
(value) => {
+				const match = documentExtensionOptions.find((props) => props.value === value);
+
+				return match ? match.name : "";
+			}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+							}
hasErrors
!!error
helperText
error ? en.eventApi.error.requiredPlan : null
label
en.eventApiProduct.labels.plan
width
621px
required
true
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+								// borkerType is used in the parent, pass the value back.
+								onBrokerTypeChange?.(e.value);
+							}
hasErrors
!!error
helperText
error ? error.message : null
value
value
readOnly
isEdit
dataQa
eventApi[brokerType]
width
"526px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`messagingSelect-${index}`
name
name
onChange
(e) => {
+										onChange(e.value);
+									}
hasErrors
!!error
helperText
error ? error.message : null
width
"556px"
value
`${value}`
dataQa
name
readOnly
mode === "view"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`accessTypeSelect-${index}`
name
name
onChange
(e) => {
+												onChange(e.value);
+											}
hasErrors
!!error
helperText
error ? error.message : null
width
"556px"
dataQa
name
readOnly
mode === "view"
value
value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`queueTypeSelect-${index}`
name
name
onChange
(e) => {
+												onChange(e.value);
+											}
hasErrors
!!error
helperText
error ? error.message : null
width
"556px"
dataQa
name
readOnly
mode === "view"
value
`${value}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+							}
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
`${versionObjectName}[approvalType]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
value
value || brokerTypes[0].value
readOnly
isEdit
getOptionDisplayValue
(value) => brokerTypes.find((type) => type.value === value)?.name || ""
dataQa
eventApiProduct[brokerType]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									setSelectedSchemaType(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
value
value || schemaTypes[0]?.value
dataQa
"schema[schemaType]"
readOnly
isEdit
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
name
name
value
value || ""
readOnly
!isNew || consumerTypeMenuItems?.length === 1
disabled
consumerIdInSidepanel === id && sidePanelOpen
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => {
+										const consumerTypeSelection = e.value;
+
+										// clear any configuration when changing consumer type
+										setValue(`applicationVersion[consumers].${index}.configuration`, undefined);
+										setValue(`applicationVersion[consumers].${index}.configurations`, []);
+
+										onChange(consumerTypeSelection);
+										onBlur();
+									}
getOptionDisplayValue
getOptionDisplayValue
dataQa
`applicationVersion[consumers].${index}.consumerType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"memSelect"
name
"memSelect"
label
`Modeled Event Mesh`
onChange
onChangeHandler
value
selectedEventMeshId
dataQa
memSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`brokerType-${topicDomain.id}`
dataQa
brokerType
onChange
(e) => updateBrokerType(e.value, index)
value
topicDomain.brokerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`brokerType-${topicDomain.id}`
dataQa
brokerType
value
topicDomain.brokerType
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+												handleBrokerTypeChange(e.value);
+												onChange(e.value);
+											}
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
"event[brokerType]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
"event[requiresApproval]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
schemaVersionSelect
onChange
handleChangeSchemaVersion
value
viewedSchemaVersion?.id
dataQa
schemaVersionSelect
width
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Schema Type"
required
true
name
name
onChange
(e) => {
+										onChange(e.value);
+										setImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);
+									}
hasErrors
!!error
helperText
error ? error.message : null
value
value || schemaTypes[0]?.value
dataQa
"schema[schemaType]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
label
"Access Approval"
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
"event[accessApproval]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+								onBrokerTypeChange?.(e.value);
+							}
hasErrors
!!error
helperText
error ? error.message : null
value
value
readOnly
isEdit || !onBrokerTypeChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
selectedMem
value
memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value
onChange
(e) => {
+						const memId = e.value === designedEventFlowOption.value ? "" : e.value;
+
+						setSelectedMemId(memId);
+					}
getOptionDisplayValue
getOptionDisplayValue
width
100%
dataQa
`appVersionDetailMemFilter`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
en.application.consumer.consumerType
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => {
+								const consumerTypeSelection = e.value;
+
+								onChange(consumerTypeSelection);
+								onBlur();
+							}
dataQa
`consumerType`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.consumer.label
value
value
name
name
onChange
(e) => {
+							onChange(e.value);
+							trigger("subscriptions"); // trigger validation
+						}
hasErrors
!!error
helperText
error ? error.message : null
dataQa
consumerSelect
width
100%
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
configurationTypeId
name
configurationTypeId
dataQa
configurationTypeId
label
messages.credentials.configurationTypeId
onChange
onChangeConfigurationType
value
configuration.typeId
required
isEditing
disabled
isLoading
readOnly
!isEditing
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
label
onChange
handleSharedTypeChange
value
selectedValue
displayEmpty
true
onOpen
handleOpen
onClose
handleClose
open
openDropdown
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
authenticationType
id
authenticationType
label
en.connectors.labels.authenticationType
name
"authenticationType"
onChange
({ value: authType }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											authenticationType: authType as AuthenticationType
+										});
+									}
value
solaceConnectionValues.authenticationType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"solaceDestinationType"
onChange
({ value: destinationType }) =>
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											binding: {
+												...solaceConnectionValues.binding,
+												destinationType: destinationType
+											}
+										})
value
solaceConnectionValues.binding.destinationType
label
en.connectors.labels.destinationType
required
true
readOnly
isEqual(solaceDirection, ConnectorDirection.Source) ? true : false
dataQa
solaceDestinationType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setConstantNameError("");
+						setConstantField({
+							...constantField,
+							dataType: dataType,
+							constantValue: getDefaultConstantValue(dataType)
+						});
+					}
label
en.connectors.labels.dataType
required
true
value
constantField.dataType
dataQa
constant-datatype-selection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setCustomHeaderField({ ...customHeaderField, dataType: dataType });
+					}
label
en.connectors.labels.dataType
required
true
value
customHeaderField.dataType
dataQa
header-datatype-selection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setHeaderDataType(dataType);
+					}
label
en.connectors.labels.dataType
required
true
value
headerDataType
dataQa
header-datatype-selection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setConstantDataType(dataType);
+						setDefaultConstantValue(dataType);
+						setConstantNameError("");
+					}
label
en.connectors.labels.dataType
required
true
value
constantDataType
dataQa
header-datatype-selection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
props.label
name
props.name
onChange
(e) => onChangeTrigger(props, e)
value
props.value
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
title
props.title
id
props.id
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
sslKeyStoreFormatTypeField
id
sslKeyStoreFormatType
label
en.connectors.labels.sslKeyStoreFormat
name
"sslKeyStoreFormat"
onChange
({ value: sslKeyStoreFormat }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType
+								});
+							}
value
clientCertValues.sslKeyStoreFormat
readOnly
readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environment
name
environment
dataQa
environment
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environment
name
environment
dataQa
environment
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
resourceRoleSelect
name
resourceRoleSelect
dataQa
resourceRoleSelect
disabled
isDisabled
value
role
onChange
(event) => onResourceRoleChange(resourceAssignment, event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
view
inlineLabel
true
label
t({ id: "id_view_by", message: "View by" })
value
view
onChange
handleChangeView
dataQa
"connect-view-by"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
protocol
name
protocol
dataQa
protocol
label
t({ id: "id_protocol", message: "Protocol" })
inlineLabel
true
value
protocolIndex.toString()
onChange
handleProtocolChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
hosturi
name
hosturi
dataQa
hosturi
label
t({ id: "id_hosturi", message: "Host URI" })
inlineLabel
true
value
hostUri
onChange
handleHostUriChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
selectedTracingProfileId
data-qa
selectedTracingProfileId
inlineLabel
true
label
t({ id: "id_tracing_destination", message: "Tracing Destination" })
value
selectedTracingProfileId
required
true
hasErrors
!selectedTracingProfileId && isSubmitted
helperText
selectedTracingProfileId || !isSubmitted ? "" : t({ id: "id_dt_select_tracing_dest", message: "Required. Select a tracing destination." })
onChange
(event) => setSelectedTracingProfileId(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceClass
name
serviceClass
dataQa
serviceClass
value
serviceClass.value
onChange
handleServiceClassChange
hasErrors
hasServiceClassErrors
helperText
serviceClassErrorText
label
isSAP ? t({ id: "id_service_class", message: "Service Class" }) : t({ id: "id_connections", message: "Connections" })
disabled
activeServiceClasses.length === 0
readOnly
readOnly
required
true
inlineLabel
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceClass
name
serviceClass
dataQa
serviceClass
value
serviceClass.value
onChange
handleServiceClassChange
hasErrors
hasServiceClassErrors
helperText
serviceClassErrorText
label
isSAP ? t({ id: "id_service_class", message: "Service Class" }) : t({ id: "id_connections", message: "Connections" })
disabled
activeServiceClasses.length === 0
readOnly
readOnly
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerFamilyVersion
name
brokerFamilyVersion
dataQa
brokerFamilyVersion
hasErrors
hasErrors
helperText
errorText
readOnly
readOnly
value
value
disabled
disabled
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerVersion
name
brokerVersion
dataQa
brokerVersion
hasErrors
hasErrors
helperText
errorText
readOnly
readOnly
value
value
disabled
disabled
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloud
name
cloud
dataQa
cloud
value
value
onChange
handleChange
hasErrors
hasErrors
helperText
errorText
disabled
cloudDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
resourceRoleSelect
name
resourceRoleSelect
dataQa
resourceRoleSelect
disabled
isDisabled
value
role
onChange
(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
20rem
id
userGroupDropdownId
name
userGroupDropdown
dataQa
userGroupDropdownQa
onChange
handleSelectedUserGroupRole
title
User Group Select
value
selectedUserGroupRole
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.timeRange
name
timeRange
onChange
(e) => handleFilterChange(e)
title
Time Range
value
filters.timeRange.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.status
name
status
onChange
(e) => handleFilterChange(e)
title
Status
value
filters.status.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.category
name
category
onChange
(e) => handleFilterChange(e)
title
Category
value
filters.category.value
id
categoryFilter
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
!filters.category.value
label
en.auditLogs.event
name
event
onChange
(e) => handleFilterChange(e)
title
Event
value
filters.event.value
helperText
!filters.category.value ? en.auditLogs.selectCategory : ""
id
eventFilter
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environment
name
name
label
environments.moveDialogLabels.destinationEnvironment
value
value || ""
onChange
(e) => onChange(e.value)
required
true
hasErrors
!!error
helperText
error?.message
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
readOnly
!!readOnly
value
value || ""
onChange
(e) => onChange(e.value)
hasErrors
!_.isEmpty(error)
helperText
error?.message
dataQa
dataQa ?? name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
readOnly
!!readOnly
value
value
onChange
(e) => onChange(e.value)
hasErrors
!_.isEmpty(error)
helperText
error?.message
dataQa
dataQa ?? name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
readOnly
!!readOnly
value
value || ""
onChange
(e) => onChange(e.value)
hasErrors
!_.isEmpty(error)
helperText
error?.message
dataQa
dataQa ?? name
getOptionDisplayValue
(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)
+
+ +
+
+ +
+
+
+ SolaceCheckBox + 82 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep45
intg1
mc9
saas27
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name81
checked78
onChange72
dataQa70
label58
id29
readOnly20
hasErrors11
helperText11
disabled10
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (82)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
value
dataQa
eventBroker[kafka][schemaRegistry][tls]
disabled
disabled
id
schemaRegistry[tls]
label
eventBrokerFormFieldLabels.addTLS
name
name
onChange
(e) => {
+												onChange(e.value);
+
+												if (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);
+											}
readOnly
readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
isTLSChecked
dataQa
schemaRegistry[tls]
id
schemaRegistry[tls]
label
eventBrokerFormFieldLabels.addTLS
name
name
onChange
(e) => {
+									onChange(e.value);
+
+									if (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);
+								}
disabled
readOnly || loading || kafkaDelimiterIsNotSet
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.name
name
option.name
checked
namingStrategy[option.name]
onChange
handleCheckboxChange
dataQa
option.name
label
option.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.value
name
option.name
checked
checkedItems[option.value]
onChange
handleCheckboxChange
dataQa
option.name
disabled
optionDisabled(option, selectedMessagingService)
label
option.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
subscribeToEvent
onChange
(e) => {
+									if (eventFlowError) {
+										setEventFlowError(null);
+									}
+
+									setSubscribeToEvent(e.value);
+								}
checked
subscribeToEvent
readOnly
isSubscribeReadOnly
dataQa
addEventToApplicationSubscribeToEvent
label
Subscribe to Event
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
publishEvent
onChange
(e) => {
+									if (eventFlowError) {
+										setEventFlowError(null);
+									}
+
+									setPublishEvent(e.value);
+								}
checked
publishEvent
readOnly
isPublishReadOnly
dataQa
addEventToApplicationPublishEvent
label
Publish Event
hasErrors
!!eventFlowError
helperText
eventFlowError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"keepParent"
dataQa
"keepEntityCheckbox"
onChange
(e) => handleKeepParentChange(e.value)
subTextProps
{ label: `Creates a new version of the ${entityType}`, light: true }
checked
keepParent
label
`I want to keep the ${entityType}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
checkboxName ?? "customhookCheckbox"
dataQa
dataQa ?? ""
label
label
checked
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.applicationDomain
label
FilterTypeLabel.applicationDomain
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.applicationDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.state
label
FilterTypeLabel.state
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.state
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.shared
label
FilterTypeLabel.shared
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.shared
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.brokerType
label
FilterTypeLabel.brokerType
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.brokerType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.eventMesh
label
FilterTypeLabel.eventMesh
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.eventMesh
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.applicationType
label
FilterTypeLabel.applicationType
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.applicationType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
filterType
label
FilterTypeLabel[filterType]
checked
currentFilters.includes(filterType)
onChange
(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)
dataQa
dataQa + "-" + filterType
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
filterType
label
renderCheckboxLabel(customAttributes[0].name)
checked
!!selectedFilters.find((filter) => filter.type === filterType)
dataQa
dataQa + "-" + filterType
onChange
(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
broker
label
Broker
onChange
handleBrokerOnChange
checked
!!brokerEnabled && !toDisableBrokerScan()
subTextProps
{
+						label: "Discover consumer groups and topics.",
+						light: true
+					}
disabled
toDisableBrokerScan()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
confluentSchemaRegistry
label
Confluent Schema Registry
onChange
handleSchemaRegistryOnChange
checked
!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()
subTextProps
{
+						label: "Discover schemas from Confluent.",
+						light: true
+					}
disabled
toDisableSchemaRegistryScan()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Show only the modeled event meshes I can access
name
Filter By Access
checked
filterByAccess
onChange
toggleFilterByAccessOnChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dontShowConfirmBoxCheckbox"
label
`Don't show this message again.`
checked
!showDialogAgain
dataQa
"dontShowConfirmBox-checkbox"
onChange
(event) => setShowDialogAgain(!event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"requiredConfirmBoxCheckbox"
label
"Require confirmation"
checked
showConfirmDialogBox
dataQa
"requiredConfirmBox-checkbox"
onChange
(event) => handleRequireConfirmCheckbox(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"hideAuditResults"
label
`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`
checked
showHiddenAudits !== "false"
dataQa
"hideAuditResults-checkbox"
onChange
(event) => handleHideTagCheckbox(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`checkDomain-${item.id}`
dataQa
`checkDomain-${item.id}`
onChange
(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)
checked
checked
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"selectAllDomains"
dataQa
"selectAllDomainsCheckbox"
onChange
onAllDomainsCheck
checked
isChecked
indeterminate
isChecked && selectedDomainIds.length !== items.length
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
dataQa
enumeration[shared]
label
Allow Enumeration to be shared across application domains
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+										setIsDirty(true);
+										onChange(e.value);
+									}
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`
dataQa
`${entityType}[shared]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.name
name
option.name
checked
namingStrategy[option.name]
onChange
handleNamingStrategyChange
dataQa
option.name
label
option.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
en.eventApi.labels.sharedCheckbox
dataQa
"eventApi[shared]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
en.eventApiProduct.labels.sharedCheckbox
dataQa
"eventApiProduct[shared]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									onSharedChange?.(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
Allow schema to be shared across application domains
dataQa
"schema[shared]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
onlyShowEventsWithoutSubscription
onChange
(e) => {
+						setOnlyShowEventsWithoutSubscription(e.value);
+					}
checked
onlyShowEventsWithoutSubscription
label
Show events without a consumer subscription
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
checked
value
dataQa
uniqueTopicAddressEnforcementEnabled
label

+										All topic addresses within this application domain must be unique
+									
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									setTopicDomainEnforcement(e.value);
+								}
disabled
!value && !hasValidTopicDomain
hasErrors
!!error
helperText
error ? error.message : null
checked
value
dataQa
topicDomainEnforcementEnabled
label

+										All topic addresses within this application domain must use a topic domain
+									
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
checked
value
dataQa
nonDraftDescriptionsEditable
label
Allow object descriptions to be editable in all lifecyle states
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"applicationDomain[uniqueTopicAddressEnforcementEnabled]"
checked
domainValues?.uniqueTopicAddressEnforcementEnabled
dataQa
"uniqueTopicAddressEnforcementEnabled"
label

+											All topic addresses within this application domain must be unique
+										
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"applicationDomain[topicDomainEnforcementEnabled]"
checked
domainValues?.topicDomainEnforcementEnabled
dataQa
topicDomainEnforcementEnabled
label

+											All topic addresses within this application domain must use a topic domain
+										
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"applicationDomain[nonDraftDescriptionsEditable]"
checked
domainValues?.nonDraftDescriptionsEditable
dataQa
nonDraftDescriptionsEditable
label
Allow object descriptions to be editable in all lifecyle states
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									onSharedChange?.(e.value);
+								}
checked
value || false
label
Allow event to be shared across application domains
dataQa
"event[shared]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
checked
value || false
disabled
sharedSchema
label
Allow schema to be shared across application domains
dataQa
"schema[shared]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+										onChange(e.value);
+										handleSharedChanged(e.value);
+									}
checked
value || false
label
Allow event to be shared across application domains
dataQa
"event[shared]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+										if (eventFlowError) {
+											setEventFlowError(null);
+										}
+
+										onChange(e.value);
+									}
checked
value || false
dataQa
subscribeToEvent
label
Subscribe to Event
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+											if (eventFlowError) {
+												setEventFlowError(null);
+											}
+
+											onChange(e.value);
+										}
checked
value || false
dataQa
publishEvent
label
Publish Event
hasErrors
!!eventFlowError
helperText
eventFlowError
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
filter.value
name
filter.name
checked
filtersMap[application?.id]?.[filter.value]
label
filter.name
onChange
() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])
dataQa
`environment-filters-${filter.value}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"doNotShowAgain"
label
"Do not show this warning again"
onChange
handleCloseInfoMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
props.name
label
props.label
onChange
(e) => props.onChange(e.value)
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
checked
props.value
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
checked
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_mc_manager", message: "Rotate Mission Control Manager permissions" })
name
mc_manager
checked
usernames.includes("manager")
onChange
handleManagerChange
dataQa
checkbox_mc_manager
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_mc_editor", message: "Rotate Mission Control Editor permissions" })
name
mc_editor
checked
usernames.includes("admin")
onChange
handleEditorChange
dataQa
checkbox_mc_editor
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_mc_viewer", message: "Rotate Mission Control Viewer permissions" })
name
mc_viewer
checked
usernames.includes("viewer")
onChange
handleViewerChange
dataQa
checkbox_mc_viewer
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showMyServices
name
showMyServices
dataQa
services-show-mine
label
t({ id: "id_only_my_services", message: "Only show my services" })
checked
userOnly
onChange
handleSetUserOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showDiffs
name
showDiffs
label
t({ id: "id_show_differences", message: "Show only differences" })
checked
showDiffs
onChange
handleShowDiffs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
mateLinkEncryption
name
mateLinkEncryption
dataQa
mateLinkEncryption
label
t({ id: "id_mate_link_label", message: "Enable mate-link encryption" })
boldLabel
true
subTextProps
{
+						label: t({ id: "id_mate_link_text", message: "This will encrypt the communication between the primary and backup brokers in a HA setup." }),
+						light: true
+					}
checked
value
readOnly
isCloning
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloneCertificateAuthorities
dataQa
cloneCertificateAuthorities
name
cloneCertificateAuthorities
label
t({ id: "id_clone_cert_auth", message: "Duplicate all Client and Domain Certificate Authorities" })
boldLabel
true
subTextProps
{
+					label: This will copy all certificates existing on the source event broker service to the new event broker service.,
+					light: true
+				}
checked
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
nameCheck
name
nameCheck
dataQa
nameCheck
label

+							{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: "id_port_label", message: `Enable ${meta.label}, use port:` })}
+						
boldLabel
true
checked
!disabled
readOnly
checkboxDisabled || !isPortDisablingEnabled
onChange
handleProtocolToggle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
confirmDeleteCheckbox
label
en.environments.labels.confirmDeleteEnvironment
name
confirmDeleteCheckbox
onChange
handleConfirmDelete
checked
confirmDelete
dataQa
confirmDeleteCheckbox
disabled
isDeleting
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceCreationCheckbox
label
en.environments.labels.confirmASEnvironment
name
serviceCreationCheckbox
onChange
handleCheckboxChange
checked
isServiceCreationAllowed
dataQa
serviceCreationCheckbox
disabled
isError || dialogState.updating
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
templateType
name
templateType
dataQa
`${templateType}Checkbox`
label

+							{environments.configurationTemplates[templateType].label}
+						
onChange
updateTemplateTypeEnforcement
checked
templateStatus.isEnforced
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scOutage"].email : false
id
scOutageEmail
name
scOutageEmail
dataQa
scOutageEmail
onChange
(value) => updateNotifyPreferences("scOutage", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scOutage"].console : false
id
scOutageConsole
name
scOutageConsole
dataQa
scOutageConsole
onChange
(value) => updateNotifyPreferences("scOutage", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scMaintenance"].email : false
id
scMaintenanceEmail
name
scMaintenanceEmail
dataQa
scMaintenanceEmail
onChange
(value) => updateNotifyPreferences("scMaintenance", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scMaintenance"].console : false
id
scMaintenanceConsole
name
scMaintenanceConsole
dataQa
scMaintenanceConsole
onChange
(value) => updateNotifyPreferences("scMaintenance", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceOutage"].email : false
id
serviceOutageEmail
name
serviceOutageEmail
dataQa
serviceOutageEmail
onChange
(value) => updateNotifyPreferences("serviceOutage", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceOutage"].console : false
id
serviceOutageConsole
name
serviceOutageConsole
dataQa
serviceOutageConsole
onChange
(value) => updateNotifyPreferences("serviceOutage", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceMaintenance"].email : false
id
serviceMaintenanceEmail
name
serviceMaintenanceEmail
dataQa
serviceMaintenanceEmail
onChange
(value) => updateNotifyPreferences("serviceMaintenance", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceMaintenance"].console : false
id
serviceMaintenanceConsole
name
serviceMaintenanceConsole
dataQa
serviceMaintenanceConsole
onChange
(value) => updateNotifyPreferences("serviceMaintenance", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessApprover"].email : false
id
scEpEventAccessApproverEmail
name
scEpEventAccessApproverEmail
dataQa
scEpEventAccessApproverEmail
onChange
(value) => updateNotifyPreferences("scEpEventAccessApprover", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessApprover"].console : false
id
scEpEventAccessApproverConsole
name
scEpEventAccessApproverConsole
dataQa
scEpEventAccessApproverConsole
onChange
(value) => updateNotifyPreferences("scEpEventAccessApprover", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessRequestor"].email : false
id
scEpEventAccessRequestorEmail
name
scEpEventAccessRequestorEmail
dataQa
scEpEventAccessRequestorEmail
onChange
(value) => updateNotifyPreferences("scEpEventAccessRequestor", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessRequestor"].console : false
id
scEpEventAccessRequestorConsole
name
scEpEventAccessRequestorConsole
dataQa
scEpEventAccessRequestorConsole
onChange
(value) => updateNotifyPreferences("scEpEventAccessRequestor", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings?.["scInfo"].email : false
id
scInfoEmail
name
scInfoEmail
dataQa
scInfoEmail
onChange
(value) => updateNotifyPreferences("scInfo", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings?.["scInfo"].console : false
id
scInfoConsole
name
scInfoConsole
dataQa
scInfoConsole
onChange
(value) => updateNotifyPreferences("scInfo", "console", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings?.["marketing"]?.email : false
id
marketingEmail
name
marketingEmail
dataQa
marketingEmail
onChange
(value) => updateNotifyPreferences("marketing", "email", value.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
jitProvisionCheckboxId
label

+						{userGroupManagement.jitProvisionMainText}
+						{userGroupManagement.jitProvisionSubText}
+					
name
jitProvisionCheckboxId
onChange
(e) => setIsJitProvisioningChecked(e.value)
subTextProps
{
+					label: (
+						
+							
+						
+					)
+				}
checked
isJitProvisioningChecked
title
Enable Just-in-Time provisioning
dataQa
jitProvisionCheckboxId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
customizeDefaultUserGroupCheckboxId
id
customizeDefaultUserGroupCheckboxId
label

+						{userGroupManagement.customizeGroupMainText}
+						{userGroupManagement.customizeGroupSubText}
+					
name
customizeDefaultUserGroupCheckboxId
checked
isCustomizeUserGroupChecked
onChange
(e) => customizeDefaultUserGroupCheck(e.value)
subTextProps
{
+					label: (
+						
+							{isCustomizeUserGroupChecked ? (
+								 {
+										return SolaceSelectAutocompleteItem({
+											name: item.name,
+											subText: item.roles?.join(", "),
+											value: item.name
+										});
+									}}
+									itemMappingCallback={(option) => option}
+									optionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}
+									onChange={handleUserGroupSelectChange}
+									fetchOptionsCallback={handleFetchProtocolOptionsCallback}
+									isOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}
+									width="30rem"
+								/>
+							) : null}
+						
+					)
+				}
title
Customize Default UserGroup
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventMeshCheckbox
dataQa
eventMeshCheckbox
label
en.overview.banner.eventMesh
name
eventMeshCheckbox
onChange
(e) => setIsEventMeshFeatureChecked(e.value)
title
en.overview.banner.eventMesh
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventPortalCheckbox
dataQa
eventPortalCheckbox
label
en.overview.banner.eventPortal
name
eventPortalCheckbox
onChange
(e) => setIsEventPortalFeatureChecked(e.value)
title
en.overview.banner.eventPortal
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(readPermissions)
name
`${categoryName}-read`
checked
readChecked
indeterminate
!readChecked && readIndeterminate
readOnly
!!readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(writePermissions)
name
`${categoryName}-write`
checked
writeChecked
indeterminate
!writeChecked && writeIndeterminate
readOnly
!!readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onPermissionCheckboxChange(permission.id)
name
permission.id
checked
!!isPermissionSelected[permission.id]
readOnly
!!readOnly
dataQa
permission.id
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(readPermissions)
name
`${categoryName}-read`
checked
readChecked
indeterminate
!readChecked && readIndeterminate
readOnly
!!readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(writePermissions)
name
`${categoryName}-write`
checked
writeChecked
indeterminate
!writeChecked && writeIndeterminate
readOnly
!!readOnly
+
+ +
+
+ +
+
+
+ SolaceAccordion + 75 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep52
intg4
mc12
saas7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
summary75
details75
expanded75
onChange75
dataQa48
border38
key26
backgroundColor11
hover7
indicatorVariant6
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (75)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
getEntityDetailsTitle
details
getEntityDetailsPanel
dataQa
`${entityType}DetailsAccordion`
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.noChange, null, null)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
applicationsToDelete
expanded
applicationsExpanded
onChange
handleApplicationClick
summary
renderEntitySummary("Application Domains", appDomains.length)
details
renderEntityDetails(appDomains)
dataQa
applicationsToDelete
border
false
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
memsToDelete
expanded
memsExpanded
onChange
handleMEMClick
summary
renderEntitySummary("Modeled Event Meshes", mems.length)
details
renderEntityDetails(mems)
dataQa
memsToDelete
border
false
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
environmentsToDelete
expanded
environmentsExpanded
onChange
handleEnvironmentClick
summary
renderEntitySummary("Environments", environments.length)
details
renderEntityDetails(environments)
dataQa
environmentsToDelete
border
false
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEventVersionDetails
summary
getEventDetailsTitle
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.background.default
onChange
() => toggleAccordion()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
entityType ? `customAttributes-${entityType}-accordion` : null
hover
true
expanded
expanded
onChange
() => setExpanded(!expanded)
summary

+						{`Custom Attributes (${count})`}
+						
+							
+								
+							
+						
+					
details
<>
+						{" "}
+						{errorMsg && (
+							
+								
+								{errorMsg}
+							
+						)}
+						{!errorMsg && <>{customAttributeValueList}}
+					
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
Appearance
details

+							{formMethods && (
+								
+							)}
+							
+						
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
entityAppearance
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
summary
details
details
expanded
isErrorDetailsExpanded
onChange
(event, expanded) => errorDetailsMessageExpandHandler(expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
summary
details
details
expanded
isErrorDetailsExpanded
onChange
(event, expanded) => errorDetailsMessageExpandHandler(expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
renderAccordionSummary()
details
renderAccordionDetails(associatedEnvironmentList)
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
eventApiProductVersion.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
renderAccordionDetail()
dataQa
dataQa ?? `eap-${eventApiProductVersion.id}`
hover
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
item.environmentId
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
renderAccordionDetail()
dataQa
dataQa ?? `messagingService-${item.environmentId}`
indicatorVariant
environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? "error" : undefined
hover
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
item.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
accordionDetails
indicatorVariant
indicatorVariant ?? null
dataQa
dataQa ?? null
hover
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+						{title}
+						
+ handleDownloadFile(evt, details, emaType, downloadButtonId)} + > + + + handleCopyFile(evt, details, emaType, copyButtonId)} + > + + +
+
details
{details}
onChange
() => onToggle()
expanded
expanded
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+							Connection File Details
+							
+ handleDownloadFile(evt)}> + Download + + + Copy + +
+
details
{confFileContent}
onChange
() => handleChange("confFile")
expanded
isExpanded
dataQa
connectionFileDownloadDialog
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.background.default
border
false
dataQa
EmaPreflightCheckListAccordion
details
renderSummary(emaMode)
expanded
isOpen
onChange
toggle
summary
renderSideInfoBlurbSummary()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
messagingService[Accordion]
summary

+						
+							 onTitleLinkClick(messagingService)}
+								dataQa="messagingService[Accordion][Title]"
+							/>
+							
+								{isCloudBased && } {!messagingService?.eventMeshId && }
+							
+						
+
+						
+							
+								{brokerTypeLabel[messagingService.messagingServiceType] ?? "Solace"}
+							
+							{messagingService.eventManagementAgentId && (
+								,
+										title: "More Actions"
+									}}
+									items={menuItems}
+								/>
+							)}
+							{!messagingService.eventManagementAgentId && (
+								 removeMessagingService(messagingService)} title="Remove" dataQa="removeMessagingService">
+									
+								
+							)}
+						
+					
details
+ Connected Modeled Event Mesh + {eventMesh ? ( + + {eventMesh?.name}{" "} + + + ) : ( + None + )} +
onChange
handleChange
expanded
isExpanded
indicatorVariant
hasIndicator ? "info" : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
demoAccordionList
expanded
serviceAccordionControl[item.id]
onChange
() => handleServiceAccordionControl(item.id)
details
renderAccordionDetail(item)
summary

+										{item.name}
+										{item?.solaceCloudMessagingServiceId && }
+										{isScanInProgress && Discovery Scan in progress}
+									
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
existingMessagingServiceList
summary
renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)
details
renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)
dataQa
existingMessagingServiceList
expanded
expanded
onChange
handleRuntimeAgentExpanded
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dataQa
summary
summaryElement
details
details
expanded
expanded
onChange
onChange
border
false
dataQa
dataQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
dataQa ?? "importPreviewAccordion"
summary
renderSummary()
details
renderDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
applicationVersion.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
renderDetails()
indicatorVariant
isSelected ? "success" : null
dataQa
dataQa ?? null
hover
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
summary
summary
{summary}
details
details
expanded
expanded
border
false
onChange
onChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEnumVersionDetails
summary
getEnumDetailsTitle
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEventApiProductVersionDetails
summary
getEventApiProductDetailsTitle(selectedEventApiProduct)
details
eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)
expanded
expanded
backgroundColor
theme.palette.ux.background.w20
onChange
onAccordionChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogSchemaVersionDetails
summary
getSchemaDetailsTitle
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogApplicationVersionDetails
summary
getApplicationDetailsTitle()
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEventApiVersionDetails
summary
getEventApiDetailsTitle(selectedEventApi)
details
eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)
expanded
expanded
backgroundColor
theme.palette.ux.background.w20
onChange
onAccordionChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
expanded
onChange
handleChange
summary
renderAccordionSummary()
details
disablePadding
true
dataQa
dataQa
backgroundColor
theme.palette.ux.background.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
renderAccordionSummary()
details
renderAccordionDetails()
expanded
isExpanded
onChange
handleAccordionClick
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${configurationName}-${type}-${index}-requestHeader`
summary
getRequestHeaderSummary(header, type, index)
details
getRequestHeaderDetails(header, type, index)
expanded
expandedHeaders[expandKey]
onChange
() => {
+					setExpandedHeaders((prev) => {
+						prev[expandKey] = !prev[expandKey];
+
+						return { ...prev };
+					});
+				}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
queueBindingSummary
details
queueBindingDetails
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
queueBindingSummary
details
getQueueBindingDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`restDeliveryPointAccordion`
summary
accordionSummary
details
restConsumers
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
getDomainAccordionSummary(domain)
details
getDomainAccordionDetails(domain)
dataQa
`domainAccordion-${domain.id}`
expanded
expandedDomainMap[domain.id] === true
onChange
() => onAccordionChange(domain.id, expandedDomainMap)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"importDomainValidationAccordion"
dataQa
importDomainValidationAccordion
summary
customAttributeValidations?.validationMessage
details
customAttributeValidations?.validations
expanded
expanded
onChange
() => setExpanded(!expanded)
backgroundColor
theme.palette.ux.background.w20
border
false
square
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`newNodeAccordion-${brokerType.value}`
key
brokerType.value
border
false
expanded
dragNDropPanelExpansions[brokerType.value]
onChange
() =>
+						setDragNDropPanelExpansions((prev) => {
+							const newState = { ...prev };
+
+							newState[brokerType.value] = !prev[brokerType.value];
+
+							return newState;
+						})
summary
{`${brokerType.label} Objects`}
details

+							
+								 {
+										onNodeClick(e, DraggableNewNodeId[brokerType.value].application);
+									}}
+								>
+									
+									New Application
+								
+							
+							
+								 {
+										onNodeClick(e, DraggableNewNodeId[brokerType.value].event);
+									}}
+								>
+									
+									New Event
+								
+							
+							
+								 {
+										onNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);
+									}}
+								>
+									
+									Shared Event
+								
+							
+							
+								{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (
+									
+										
+									
+								)}
+								{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (
+									
+										
+									
+								)}
+								{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (
+									
+										
+									
+								)}
+							
+						
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
Conflicting Objects
details
conflictingObjects
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
renderAccordionSummary()
details
renderAccordionDetails()
expanded
expanded
onChange
() => handleExpandClick()
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${consumer.name}-consumerAccordion`
summary
renderAccordionSummary()
details
renderAccordionDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
getAccordionSummary()
details
getAccordionDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
`${topicDomain.length} affected Topic Domains`
details

+							{topicDomain.map((topicDomainEntry) => (
+								
+ + + + {duplicate && ( + + Used in + {topicDomainEntry?.applicationDomains?.map(({ name }) => ( + +
+ +
+
+ ))} + {renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)} +
+ )} +
+ ))} +
expanded
accordionExpanded
onChange
() => toggleAccordion()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"topicAddressHelp"
details
summary

+									Tips and Tricks for Topic Addresses
+									
+										
+									
+								
expanded
expandTopicAddressHelp
onChange
() => setExpandTopicAddressHelp(!expandTopicAddressHelp)
backgroundColor
theme.palette.background.default
square
false
border
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
border
true
expanded
expanded
onChange
handleAccordianClick
summary
renderAccordionSummary()
details
renderAccordionDetail()
hover
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
request.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
accordionDetails
indicatorVariant
indicatorVariant ?? null
dataQa
dataQa ?? null
hover
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${application.applicationName}-events`
summary
{"Published Events"}
details
getDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
application.applicationName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${application.applicationName}-subscriptions`
summary
{"Subscribed Events"}
details
getDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
application.applicationName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
applicationDomainName
summary

+						{messages.applicationDomain.label}
+						{applicationDomainName}
+					
details
getDetails(applications)
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
applicationDomainName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
connectorTypeDetails?.name ?? ""
border
false
details
{renderVendorConfigurationDetails()}
expanded
showSourceDetails
onChange
() => setShowSourceDetails(!showSourceDetails)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
"Solace"
border
false
details

+						
+							
+								{en.connectors.labels.eventBrokerService}
+							
+							{(serviceDetails?.name && (
+								
+									{serviceDetails.name}
+								
+							)) || {"-"}}
+						
+						
+							
+								{en.connectors.labels.bindingDestination}
+							
+							{getConnectorSummaryValue(solaceDestination)}
+						
+					
expanded
showTargetDetails
onChange
() => setShowTargetDetails(!showTargetDetails)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
en.connectors.labels.advancedAuthenticationProperties
dataQa
advancedAuthenticationPropsAccordion
border
false
expanded
expanded
onChange
() => setExpanded(!expanded)
details

+						 {
+								setOauthValues({
+									...oauthValues,
+									scopes: scopes
+								});
+							}}
+						/>
+						 {
+								setOauthValues({
+									...oauthValues,
+									clientName: clientName
+								});
+							}}
+						/>
+					
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
en.connectors.labels.advancedAuthenticationProperties
dataQa
advancedAuthenticationPropsAccordion
border
false
expanded
expanded
onChange
() => setExpanded(!expanded)
details

+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType
+								});
+							}}
+							value={clientCertValues.sslKeyStoreFormat}
+							readOnly={readOnly}
+						>
+							{sslKeyStoreFormatTypes.map((option, index) => {
+								return (
+									
+										{option}
+									
+								);
+							})}
+						
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStorePassword: sslKeyStorePassword
+								});
+							}}
+							type={showSslKeyStorePassword ? "text" : "password"}
+							endAdornment={[
+								 setShowSslKeyStorePassword(!showSslKeyStorePassword)}
+								>
+									{showSslKeyStorePassword ?  : }
+								
+							]}
+						/>
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyAliasName: sslPrivateKeyAliasName
+								});
+							}}
+						/>
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyPassword: sslPrivateKeyPassword
+								});
+							}}
+							type={showSslPrivateKeyPassword ? "text" : "password"}
+							endAdornment={[
+								 setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}
+								>
+									{showSslPrivateKeyPassword ?  : }
+								
+							]}
+						/>
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									clientUsername: clientUsername
+								});
+							}}
+							onBlur={() => {
+								if (isEmpty(clientCertValues.clientUsername)) {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(
+											en.connectors.labels.clientUsername
+										)
+									});
+								} else {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: ""
+									});
+								}
+							}}
+							hasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}
+							helperText={
+								!readOnly
+									? solaceValidationErrors.clientCertUsername && validationEnabled
+										? solaceValidationErrors.clientCertUsername
+										: en.connectors.helperText.clientUsername
+									: undefined
+							}
+						/>
+					
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
t({ id: "id_spool_resource_calc", message: "Expanded Spool Size Billing" })
expanded
showCalculations
onChange
handleShowCalculations
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
expanded
expanded[id]
summary
onChange
handleExpanded
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
border
true
square
false
dataQa
client-profile-advanced-settings
summary
t({ id: "id_advanced_settings", message: "Advanced Settings" })
details
expanded
advancedSettings
onChange
(_, expanded) => setAdvancedSettings(expanded)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${endpoint.id}Accordion`
key
endpoint.id
border
false
summary

+										
+											
+												{endpoint.name}
+												{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }
+											
+										
+										{i18n._(accessTypes[endpoint.accessType])}
+										{endpoint.description}
+										
+											,
+													title: t({ id: "id_actions", message: "Actions" }),
+													variant: "icon"
+												}}
+												dataQa="actions"
+												id={`public_actions`}
+												items={[
+													{
+														name: t({ id: "id_edit", message: "Edit" }),
+														disabled: !allowServiceQueries,
+														onMenuItemClick: () => handleEditEndpoint(index)
+													},
+													{
+														name: t({ id: "id_delete", message: "Delete" }),
+														disabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,
+														onMenuItemClick: () => setShowDeleteDialog(endpoint)
+													}
+												]}
+											/>
+										
+									
details
+
+ + Protocols + Status + Port + + +
+ + {protocols.map((port) => { + const value = ports.get(port.protocol); + return ( + + {port.label} + {value?.port ? "Enabled" : "Disabled"} + {value?.port ? value.port : "-"} + + + ); + })} + +
expanded
expandPublicEndpoint[index]
onChange
(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
t({ id: "id_used_by_n_services", message: plural(cluster?.serviceNames.length ?? 0, { one: "Used by # service", other: "Used by # services" }) })
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
cluster-name-services
details
<>
+								{cluster.serviceNames.map((serviceName) => (
+									
{serviceName}
+ ))} +
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+								
+									
+										Step 1: Configuration on the Event Broker
+									
+								
+							
details
+ + You must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{" "} + + Open Broker Manager's Telemetry + + +
border
false
dataQa
step-1-accordion
expanded
expandStep1
onChange
handleExpandStep1Click
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+								
+									
+										Step 2: Trace Collection
+									
+									
+								
+								
+									
+										Check Status
+									
+									
+										{isConfigured ? Update Configuration : Deploy Configuration}
+									
+								
+							
details
+ {distributedTracingStatus === "notConfigured" || distributedTracingStatus === "pending" || !telemetryProfileName ? ( + <> + {distributedTracingStatus === "pending" ? ( + + ) : ( +
+ Data Collection is not configured. +
+ )} + + ) : ( + + {collectorRunningStatus === "success" && } + {collectorRunningStatus === "error" && } + {collectorRunningStatus === "pending" && ( + + )} + {brokerConnectionStatus === "success" && ( + + )} + {brokerConnectionStatus === "error" && } + {brokerConnectionStatus === "pending" && ( + + )} + + + + + + + + + + + )} +
border
false
dataQa
step-2-accordion
expanded
expandStep2
onChange
handleExpandStep2Click
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
section.label
expanded
expanded[index]
summary
section.label
onChange
() => handleSection(index)
details
{renderProperties(section.data, section.properties)}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+						Advanced Connection Options
+					
dataQa
advanced_connection_options
expanded
showAdvancedProps
onChange
handleShowAdvancedProps
border
false
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+						Clone Options
+					
dataQa
clone_options
expanded
showCloneProps
onChange
handleShowCloneProps
border
false
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
expanded
showEndpoints
onChange
handleShowEndpoint
square
false
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
expanded
expanded
onChange
handleExpanded
border
false
indicatorVariant
state.showError ? "error" : state.showWarning ? "warn" : undefined
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
brokerSSONestedAccordion
onChange
() => toggleBrokerAccordion()
summary
en.brokerSSOConfig.instructionsText
expanded
isBrokerAccordionExpanded
details

+							
+								1. Click Manage Brokers, then select which event broker services to
+								enable to use Broker SSO. 
+ 2. Click Enable SSO. +
+ 3. Click Copy Broker URIs.
+ 4. Add the URIs you've copied to your identity provider. +
+ 5. After you complete these steps for your event broker services, you can use SSO to access them. +
+
+ + Troubleshooting tip +

+ If a broker has more than one URI, the URIs are copied as comma-separated list. If your identity + provider does not support this format, manually enter each URI separately. +

+
+
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
summary
expanded
expanded[index]
onChange
() => handleExpanded(index)
border
true
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
usersAccordion
onChange
handleChange
summary
renderUserSummary(0)
details

+									
+										
+											{usersList.map((user, index) => {
+												return (
+													
+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}
+																	
+																	
+																		{user.firstName ? `${user.firstName} ${user.lastName}` : "-"}
+																	
+																
+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}
+																	
+																	{user.email}
+																
+															
+														}
+														placement="bottom"
+													>
+														
+ +
+
+ ); + })} +
+
+ {isLoading && ( + + + + )} + {hasMore && !showMore && !isLoading && ( + + + {userGroups.viewDetailsDialog.usersDropdown.showMore} + + + )} + {showMore && ( + + + {userGroups.viewDetailsDialog.usersDropdown.showLess} + + + )} +
expanded
isExpanded
border
false
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
openAuditFilterOptionsSection
details

+						
+							 handleFilterChange(e)}
+								title="Time Range"
+								value={filters.timeRange.value}
+							>
+								{timeRangeLabels?.map(({ label, value }, index) => (
+									
+										{label}
+									
+								))}
+							
+							 handleFilterChange(e)}
+								title="Status"
+								value={filters.status.value}
+							>
+								{statusLabels?.map(({ label, value }, index) => (
+									
+										{label}
+									
+								))}
+							
+							 handleFilterChange(e)}
+								title="Category"
+								value={filters.category.value}
+								id="categoryFilter"
+							>
+								{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (
+									
+										{item.category}
+									
+								))}
+							
+							{autoCompleteField()}
+							 handleFilterChange(e)}
+								title="Event"
+								value={filters.event.value}
+								helperText={!filters.category.value ? en.auditLogs.selectCategory : ""}
+								id="eventFilter"
+							>
+								{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (
+									
+										{item.description}
+									
+								))}
+							
+						
+					
onChange
() => setShowFilterOptions((state) => !state)
expanded
showFilterOptions
summary

+						
+							{en.auditLogs.filters}
+							
+								{selectedFilters?.map((filter, index) => (
+									 deleteFilter(filter.key)}
+									/>
+								))}
+								{selectedFilters.length > 0 ? (
+									
+										{en.auditLogs.clearAll}
+									
+								) : null}
+							
+						
+					
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
token.id
expanded
expanded
onChange
onChange
summary
renderAccordionSummary()
details
renderAccordionDetails()
square
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
isExpanded
onChange
onChange
summary
`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`
details
<>{renderDetails(false)}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
isExpanded
onChange
handleChange
summary
renderAccordionSummary()
details
renderAccordionDetails()
dataQa
tokenDetailsAccordion
+
+ +
+
+ +
+
+
+ SolaceMenu + 65 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep42
intg2
mc13
saas8
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
buttonProps65
items65
anchorOrigin37
transformOrigin37
dataQa25
id22
key11
closeOnSelect4
numOfMenuItemDisplayed2
maxWidth1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (65)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+												variant: "text",
+												children: "Add Protocol"
+											}
items
solaceAddProtocolMenuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							variant: "outline",
+							endIcon: ,
+							children: "Actions",
+							isDisabled: isEmpty(selectedRowIds),
+							dataQa: "selectedEntityActions"
+						}
items
menuItems
anchorOrigin
{
+							vertical: "bottom",
+							horizontal: "right"
+						}
transformOrigin
{
+							vertical: "top",
+							horizontal: "right"
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					title: messages.updateButton,
+					variant: "outline",
+					children: messages.updateButton,
+					isDisabled: isDisabled,
+					dataQa: "addUserAccess"
+				}
items
[
+					{
+						name: messages.addUserGroup,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),
+						dataQa: "addUserGroup"
+					},
+					{
+						name: messages.addUser,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.user),
+						dataQa: "addUser"
+					}
+				]
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								variant: "icon",
+								dataQa: "versionDetailMoreAction",
+								children: ,
+								title: en.eventPortalResources.labels.deleteSample.actionMenuTitle
+							}
items
getMenuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				variant: "icon",
+				dataQa: "versionMoreAction",
+				children: ,
+				title: "More Actions"
+			}
items
wrappedMenuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								dataQa: "eventDetailModalMoreAction",
+								variant: "icon",
+								children: ,
+								title: "More Actions"
+							}
items
menuItems
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								variant: "icon",
+								dataQa: "moreActionMenuButton",
+								children: ,
+								title: "More Actions"
+							}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+													variant: "icon",
+													dataQa: "versionDetailMoreAction",
+													children: ,
+													title: "More Actions"
+												}
items
getMenuItemsForEntityDetail()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${dataQa ? dataQa + "-" : ""}graphSettings`
buttonProps
{
+								variant: "icon",
+								children: ,
+								title: "Settings",
+								dataQa: `${dataQa ? dataQa + "-" : ""}graphSettings-button`
+							}
items
settingsMenuItemsProps
closeOnSelect
true
anchorOrigin
{
+								vertical: "bottom",
+								horizontal: "left"
+							}
transformOrigin
{
+								vertical: "top",
+								horizontal: "left"
+							}
dataQa
`${dataQa ? dataQa + "-" : ""}graphSettings-menu`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${dataQa ? dataQa + "-" : ""}graphSettings`
buttonProps
{
+								variant: "icon",
+								children: ,
+								title: "Settings",
+								isDisabled: graphEmpty,
+								dataQa: `${dataQa ? dataQa + "-" : ""}graphSettings-button`
+							}
items
settingsMenuItemsProps
closeOnSelect
true
anchorOrigin
{
+								vertical: "bottom",
+								horizontal: "left"
+							}
transformOrigin
{
+								vertical: "top",
+								horizontal: "left"
+							}
dataQa
`${dataQa ? dataQa + "-" : ""}graphSettings-menu`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
buttonProps
{
+				variant: "text",
+				children: "Add Filters"
+			}
items
filterMenuItems
closeOnSelect
false
numOfMenuItemDisplayed
9
dataQa
dataQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								dataQa: actionMenuDataQa ?? "accordionMoreAction",
+								variant: "icon",
+								children: ,
+								title: "More Actions"
+							}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							dataQa: "accordionMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					dataQa: actionMenuDataQa ?? "accordionMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							dataQa: actionMenuDataQa ?? "accordionMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							dataQa: actionMenuDataQa ?? "accordionMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createEventManagementAgent
buttonProps
{
+					variant: "call-to-action",
+					children: "Set Up Event Management Agent"
+				}
items
CREATE_MENU_ITEMS
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+										dataQa: "accordionMoreAction",
+										variant: "icon",
+										children: ,
+										title: "More Actions"
+									}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
getRunDiscoveryScanOptionsItems()
buttonProps
{
+						variant: variant,
+						children: "Run Discovery Scan",
+						dataQa: "runDiscoveryScan",
+						isDisabled:
+							hasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&
+							hasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "left" }
transformOrigin
{ vertical: "top", horizontal: "left" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+					dataQa: "messagingServicesDetailsMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
messagingServicesDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`messagingService_${entity.id}-moreActions`
buttonProps
{
+						dataQa: "memMessagingServiceDetailsMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
getMoreOptionsItemsForMessagingService(entity, true)
dataQa
memMessagingServiceDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
items
buttonProps
{
+					title: "More Actions",
+					variant: "icon",
+					children: ,
+					dataQa: "messagingServiceMoreActionsButton"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
[
+						{
+							name: "View Event Management Agent",
+							onMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),
+							dataQa: "viewRuntimeAgentActionMenu"
+						}
+					]
buttonProps
{
+						title: "More Actions",
+						variant: "icon",
+						children: ,
+						dataQa: "runtimeAgentMoreActionsButton"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createEventManagementAgent
buttonProps
{
+													variant: "call-to-action",
+													children: "Connect to an Event Management Agent"
+												}
items
CREATE_MENU_ITEMS
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
buttonProps
{
+					variant: "icon",
+					children: ,
+					title: "Settings",
+					dataQa: dataQa + "-button"
+				}
items
getMenuItemsProps()
closeOnSelect
false
anchorOrigin
{
+					vertical: "bottom",
+					horizontal: "right"
+				}
transformOrigin
{
+					vertical: "top",
+					horizontal: "right"
+				}
dataQa
`${dataQa}-menu`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: "memEntityVersionDetailsMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
actionMenuItems
dataQa
memEntityVersionDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"custom-solace-menu"
dataQa
actionMenuForEntityVersionList
buttonProps
{
+					variant: "outline",
+					isDisabled: numberOfSelection === 0,
+					endIcon: (
+						
+							
+						
+					),
+					children: "Actions"
+				}
items
menuItems
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+						dataQa: "memMoreActions",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+					dataQa: "memDetailsMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
memDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+							dataQa: "memDetailsMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
memDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+					dataQa: "memDetailsMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
memDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							variant: buttonVariant || "outline",
+							children: buttonText || "Import",
+							isDisabled: disabled,
+							dataQa: "chooseImportOptionButton"
+						}
items
menuItems
maxWidth
readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined
dataQa
dataQa ?? "auditImportMenu"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				dataQa: "designerMoreAction",
+				variant: "icon",
+				children: ,
+				title: "More Actions"
+			}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						variant: "outline",
+						endIcon: ,
+						children: "Actions",
+						isDisabled: !isChecked,
+						dataQa: "selectedDomainsActions"
+					}
items
[
+						{
+							name: "Export",
+							onMenuItemClick: () => onExport(selectedDomainIds),
+							dataQa: "selectedDomainsExport"
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				variant: "icon",
+				children: ,
+				dataQa: "domainMoreAction",
+				title: "More Actions"
+			}
dataQa
domainMoreActionMenu
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								dataQa: `${selectedNode?.type ?? ""}NodeSidePanelMoreAction`,
+								variant: "icon",
+								children: ,
+								title: "More Actions"
+							}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
actionMenuItems
dataQa
`${selectedNode?.type ?? ""}NodeSidePanelMoreActionMenu`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: "appDomainEntityVersionDetailsMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
actionMenuItems
dataQa
appDomainEntityVersionDetailsMoreActionMenu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
[
+						{
+							name: en.eventApiProduct.buttons.openEventApiProduct,
+							onMenuItemClick: (e) => handleViewVersionDetail(e, item, false)
+						}
+					]
buttonProps
{
+						title: en.common.button.moreActions,
+						variant: "icon",
+						children: ,
+						dataQa: "memListMoreAction"
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"createApplication-menu"
buttonProps
{
+						children: createLabel,
+						variant: "outline",
+						endIcon: ,
+						dataQa: "createApplication-button"
+					}
items
[
+						{
+							name: en.application.applicationType.standard,
+							onMenuItemClick: handleCreate,
+							dataQa: "createStandardApplication"
+						},
+						{
+							name: en.application.applicationType.restDeliveryPoint,
+							onMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),
+							dataQa: "createRestDeliveryPointApplication"
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+											variant: "icon",
+											dataQa: "moreActionsButton",
+											children: ,
+											title: "More Actions"
+										}
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+												dataQa: `${eventBroker.id}-moreOptionMenuButton`,
+												variant: "icon",
+												children: ,
+												title: common.button.moreActions
+											}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
moreOptions
dataQa
`${eventBroker.id}-moreOptionMenu`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: "accordionMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
items
getVersionDetailMenuItem(version, mode)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+									children: ,
+									title: "Actions",
+									variant: "icon",
+									dataQa: "connectors_additional_actions"
+								}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
"connectors_additional_actions"
items
menuItems
dataQa
connectors_additional_actions_menu
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
actionitems
buttonProps
{
+								children: ,
+								title: "Actions",
+								variant: "icon",
+								dataQa: "connectors_additional_actions"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
"connectors_additional_actions"
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
dataQa
dataQa
buttonProps
{
+					variant: "outline",
+					isDisabled: selectedCount < minimalCount,
+					endIcon: (
+						
+							
+						
+					),
+					children: t({ id: "id_actions", message: "Actions" })
+				}
items
items
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					title: messages.updateButton,
+					variant: "outline",
+					children: messages.updateButton,
+					isDisabled: isDisabled,
+					dataQa: "addUserAccess"
+				}
items
[
+					{
+						name: messages.addUserGroup,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),
+						dataQa: "addUserGroup"
+					},
+					{
+						name: messages.addUser,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.user),
+						dataQa: "addUser"
+					}
+				]
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							title: t({ id: "id_actions", message: "Actions" }),
+							variant: "icon"
+						}
dataQa
actions
id
`${eventMesh.id}_actions`
items
[
+							{
+								name: t({ id: "id_event_mesh_details", message: "Event Mesh Details" }),
+								onMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),
+								divider: true
+							},
+							{
+								name: t({ id: "id_delete", message: "Delete" }),
+								disabled: !hasWriteAccess
+							}
+						]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: t({ id: "id_download", message: "Download" }),
+							endIcon: ,
+							variant: "text",
+							dataQa: "download"
+						}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
download
items
links.download.map((dw) => ({
+							name: dw.name,
+							onMenuItemClick: () => openLink(dw.url)
+						}))
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								children: ,
+								title: t({ id: "id_actions", message: "Actions" }),
+								variant: "icon",
+								dataQa: "actions"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`${id}-actions-menu`
items
[
+								{
+									name: t({ id: "id_edit", message: "Edit" }),
+									dataQa: "ldap-groups-menu-edit",
+									onMenuItemClick: handleEdit(idx)
+								},
+								{
+									name: t({ id: "id_delete", message: "Delete" }),
+									dataQa: "ldap-groups-menu-delete",
+									onMenuItemClick: handleDelete(idx)
+								}
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						children: ,
+						title: t({ id: "id_actions", message: "Actions" }),
+						variant: "icon",
+						dataQa: `actions[${index}]`
+					}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`cp_${index}-actions-menu`
items
canConfigure
+							? [
+									{
+										name: t({ id: "id_set_as_default", message: "Set as Default" }),
+										dataQa: "hostnames-menu-set-default",
+										disabled: !item.canSetAsDefault || !!isInProgress,
+										onMenuItemClick: () => {
+											changeHostnameDefaultMutation.mutate(item.name);
+										}
+									},
+									{
+										name: t({ id: "id_move", message: "Move" }),
+										dataQa: "hostnames-menu-move",
+										disabled: item.isLocked || item.isDefault || !!isInProgress,
+										onMenuItemClick: () => {
+											setResetFields();
+											setShowMoveDialog(item);
+										}
+									},
+									{
+										name: t({ id: "id_copy_clipboard", message: "Copy to Clipboard" }),
+										dataQa: "hostnames-menu-copy-cliboard",
+										onMenuItemClick: () => {
+											copy(item.name).then((isSuccess) => {
+												if (isSuccess) {
+													addToast(t({ id: "id_copied", message: "Copied" }));
+												}
+											});
+										}
+									},
+									{
+										name: t({ id: "id_delete", message: "Delete" }),
+										dataQa: "hostnames-menu-delete",
+										disabled: item.isLocked || item.isDefault || !!isInProgress,
+										onMenuItemClick: () => {
+											setShowDeleteDialog(item);
+										}
+									}
+							  ]
+							: [
+									{
+										name: t({ id: "id_move", message: "Copy to Clipboard" }),
+										dataQa: "hostnames-menu-copy-cliboard",
+										onMenuItemClick: () => {
+											copy(item.name).then((isSuccess) => {
+												if (isSuccess) {
+													addToast(t({ id: "id_copied", message: "Copied" }));
+												}
+											});
+										}
+									}
+							  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+													children: ,
+													title: t({ id: "id_actions", message: "Actions" }),
+													variant: "icon"
+												}
dataQa
actions
id
`public_actions`
items
[
+													{
+														name: t({ id: "id_edit", message: "Edit" }),
+														disabled: !allowServiceQueries,
+														onMenuItemClick: () => handleEditEndpoint(index)
+													},
+													{
+														name: t({ id: "id_delete", message: "Delete" }),
+														disabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,
+														onMenuItemClick: () => setShowDeleteDialog(endpoint)
+													}
+												]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						children: ,
+						title: t({ id: "id_actions", message: "Actions" }),
+						variant: "icon",
+						dataQa: `actions[${index}]`
+					}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`cp_${index}-actions-menu`
items
canConfigure
+							? [
+									{
+										name: t({ id: "id_edit", message: "Edit" }),
+										dataQa: "syslog-config-menu-edit",
+										onMenuItemClick: () => {
+											setResetFields(item);
+											setShowDialogIndex(index);
+										}
+									},
+									{
+										name: t({ id: "id_delete", message: "Delete" }),
+										dataQa: "syslog-config-menu-delete",
+										onMenuItemClick: () => setDeleteIndex(index)
+									}
+							  ]
+							: [
+									{
+										name: t({ id: "id_view", message: "View" }),
+										dataQa: "syslog-config-menu-view",
+										onMenuItemClick: () => {
+											setResetFields(item);
+											setShowDialogIndex(index);
+										}
+									}
+							  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							title: t({ id: "id_actions", message: "Actions" }),
+							variant: "icon",
+							dataQa: `actions[${index}]`
+						}
anchorOrigin
{ horizontal: "left", vertical: "bottom" }
transformOrigin
{ horizontal: "left", vertical: "top" }
id
`cp_${index}-actions-menu`
items
certType === "client"
+								? [
+										{
+											name: canConfigure ? t({ id: "id_edit", message: "Edit" }) : t({ id: "id_view", message: "View" }),
+											dataQa: "client-profile-menu-edit",
+											onMenuItemClick: () => {
+												setResetFields();
+												setFetchName(item.name);
+												setAddMode(false);
+												setShowDialogIndex(index);
+											}
+										},
+										{
+											name: t({ id: "id_delete", message: "Delete" }),
+											dataQa: "client-profile-menu-delete",
+											disabled: !canConfigure,
+											onMenuItemClick: () => setDeleteIndex(index)
+										}
+								  ]
+								: [
+										{
+											name: t({ id: "id_delete", message: "Delete" }),
+											dataQa: "client-profile-menu-delete",
+											onMenuItemClick: () => setDeleteIndex(index),
+											disabled: index === 0 || !canConfigure
+										}
+								  ]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						children: ,
+						title: t({ id: "id_actions", message: "Actions" }),
+						variant: "icon",
+						dataQa: `actions[${index}]`
+					}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`cp_${index}-actions-menu`
items
[
+						{
+							name: canConfigure ? t({ id: "id_edit", message: "Edit" }) : t({ id: "id_view", message: "View" }),
+							dataQa: "client-profile-menu-edit",
+							onMenuItemClick: () => {
+								setResetFields();
+								setFetchName(item.name);
+								setShowDialogIndex(index);
+							}
+						},
+						{
+							name: t({ id: "id_delete", message: "Delete" }),
+							dataQa: "client-profile-menu-delete",
+							disabled: item.id === DEFAULT_PROFILE || !canConfigure,
+							onMenuItemClick: () => setDeleteIndex(index)
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				children: ,
+				title: t({ id: "id_actions", message: "Actions" }),
+				variant: "icon",
+				dataQa: "actions",
+				onClick: handleMenuClick
+			}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`${service.id}_actions`
items
menuItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				children: ,
+				title: t({ id: "id_sort", message: "Sort" }),
+				variant: "icon"
+			}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
sort
id
sort
items
items
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				children: ,
+				title: t({ id: "id_sort", message: "Sort" }),
+				variant: "icon"
+			}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
sort
id
sort
items
items
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					title: messages.updateButton,
+					variant: "outline",
+					children: messages.updateButton,
+					isDisabled: isDisabled,
+					dataQa: "addUserAccess"
+				}
items
[
+					{
+						name: messages.addUserGroup,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),
+						dataQa: "addUserGroup"
+					},
+					{
+						name: messages.addUser,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.user),
+						dataQa: "addUser"
+					}
+				]
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
buttonProps
{
+								variant: "call-to-action",
+								endIcon: ,
+								children: "Actions",
+								isDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === "unsupported"
+							}
items
actionItems
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								children: ,
+								variant: "icon"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
msg-spool-menu
id
msg-spool-menu
items
[
+								{
+									name: en.serviceLimits.buttons.viewDetails,
+									onMenuItemClick: () => {
+										setViewLimitsRow(row);
+									}
+								},
+								{
+									name: en.serviceLimits.buttons.requestLimitChange,
+									onMenuItemClick: () => {
+										setNewServiceLimit(row.limit ?? 0);
+										setEditLimitsRow(row);
+									}
+								}
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								children: ,
+								variant: "icon"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
msg-spool-menu
id
msg-spool-menu
items
[
+								{
+									name: en.serviceLimits.buttons.viewDetails,
+									onMenuItemClick: () => {
+										setViewLimitsRow(row);
+									}
+								}
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
items
buttonProps
{
+					title: `${environmentsStr.environmentList.moreActionLabel}`,
+					variant: "icon",
+					children: ,
+					dataQa: "environmentMoreActions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							variant: "icon"
+						}
dataQa
claimMappingActions
dataTags
claimMappingActions
id
claimMappingActions
items
[
+							{
+								name: userGroupManagement.edit,
+								onMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),
+								disabled: groupMappingState
+							},
+							{
+								name: userGroupManagement.remove,
+								onMenuItemClick: () => removeClaimMappingHandler(rowData.id)
+							}
+						]
numOfMenuItemDisplayed
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: `${token.name}-menu`,
+						variant: "icon",
+						children: ,
+						title: "More"
+					}
items
[
+						{
+							name: `View Token`,
+							onMenuItemClick: onViewToken,
+							dataQa: `${token.name}-view`
+						},
+						{
+							name: `Regenerate Token`,
+							onMenuItemClick: onRegenerateToken,
+							dataQa: `${token.name}-regenerate`
+						},
+						{
+							name: `Delete Token`,
+							onMenuItemClick: onDeleteToken,
+							dataQa: `${token.name}-delete`
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${item.serviceId}-menu`
items
[
+					{
+						name: (
+							
+								
+									Service Details
+								
+							
+						),
+						onMenuItemClick: () => window.open(`/services/${item.serviceId}`, "_blank")?.focus()
+					}
+				]
buttonProps
{
+					title: "More Actions",
+					variant: "icon",
+					children: 
+				}
+
+ +
+
+ +
+
+
+ SolaceCard + 56 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep35
intg6
mc5
saas10
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
backgroundColor32
showCloseButton25
onClose22
title20
dataQa18
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (56)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
title
What is an Event Management Agent?
onClose
handleCloseInfoBlurb
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title

{brandableTextValueConverter("Environments in PubSub+ Cloud", "string")}

onClose
handleCloseInfoMessage
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
handleDismissEducationalCard
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
Want to subscribe to specific values?
onClose
() => setShowInfoBlurb(false)
dataQa
addSubscriptionInfoBlurb
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.background.w20
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.background.w20
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
getCardTitle(selectedAudit.auditEntityType)
onClose
handleCloseInfoMessage
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.warning.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInstructionMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInstructionMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
onClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
handleDismissReuseIndexInfoCard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
() => setShowRDPInfo(false)
dataQa
restDeliveryPointInformation
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.warning.w10
dataQa
dataQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Upload From JSON File"
showCloseButton
true
onClose
handleCloseEnumVauesHelp
backgroundColor
theme.palette.background.default
dataQa
"enumValuesHelp"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title

+					
+					Referenced Schema Names Require Manual Updates
+				
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? "Conflicting Topic Address" : "Conflicting Objects"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
attractedEventsNoResults
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Defining Topic Domains
showCloseButton
true
onClose
closeInfoBox
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
topicAddressResources
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
topicAddressResourcesMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Tips and Tricks for Topic Addresses"
showCloseButton
true
onClose
handleCloseTopicAddressHelp
backgroundColor
theme.palette.ux.learning.w10
dataQa
"topicAddressHelp"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBrokers-noBrokers
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBrokers-noMatchingBrokers
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.projectDefinition.help
dataQa
projectDefinitionHelp
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
backgroundColor
theme.palette.ux.learning.w10
onClose
() => setTranformationBlurbDismissedAtom(true)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
popover ? "popoverInfo" : "infoCard"
showCloseButton
!popover
onClose
() => (popover ? undefined : onClose && onClose)
title
Setting Values for Target Headers
backgroundColor
popover ? "inherit" : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
() => handleCloseDisplayMessage()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
title
title
onClose
() => {
+						setShowEducationBlurb(false);
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
What is an Automated Upgrade?
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
() => setNeedHelp(false)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
What is an Automated Upgrade?
backgroundColor
theme.palette.background.paper
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
title
Release Notes
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
#ffffff
dataQa
brokerSSOCard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
rgba(236, 240, 252, 1)
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
environmentsStr.messages.firstOpenBottomInfoTitle
dataQa
environmentFirstUseCardBottom
backgroundColor
#E6F2FF
onClose
handleCloseBottomMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
drawdownUsage.messages.title
dataQa
drawdownUsageFormulaCard
backgroundColor
#E6F2FF
onClose
handleCloseDisplayMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.primary.contrastText
dataQa
drawdownCard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
rgba(236, 240, 252, 1)
showCloseButton
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+ + Message Service Alerts & Notification + + +
backgroundColor
#fff
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Logs Retention
backgroundColor
#fff
dataQa
logsRetentionCard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Who Can Receive Notifications?
dataQa
notificationAd
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.background.paper
+
+ +
+
+ +
+
+
+ SolaceSelectAutocompleteItem + 53 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep35
intg4
mc5
saas9
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
...10
name7
value7
subText4
supplementalText4
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (53)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
RESOURCE_LABEL_BY_ROLE[role]
value
role
subText
RESOURCE_DESCRIPTION_BY_ROLE[role]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
EMA_MODES_LABELS.scanWithEventPortal
value
EMA_MODES.scanFromEventPortal
subText
Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal.
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
EMA_MODES_LABELS.uploadScanFile
value
EMA_MODES.uploadScanFile
subText
Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode.
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
eventMesh
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
version
supplementalText
isSecondVersionOptions && selectedVersionId === version.id ? "No Difference" : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
option
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
messages.credentials.solaceClientUsername.label
value
CONFIGURATION_TYPES.solaceClientUsername
supplementalText
isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
messages.credentials.solaceAuthorizationGroup.label
value
CONFIGURATION_TYPES.solaceAuthorizationGroup
supplementalText
isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingProfile.tracingType[TracingType.Insights]
value
TracingType.Insights
supplementalText
isInsights ? "Default" : "Not Available"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]
value
TlsConnectionType.SecureSkipValidation
subText
Skips certificate authority validation
+
+ +
+
+ +
+
+
+ SolaceAttributeBadge + 50 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep36
intg2
mc8
saas4
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label49
size22
boldLabel20
fillColor19
labelColor16
height13
dataQa11
variant10
compressed9
borderRadius9
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (50)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Unavailable"
size
"xs"
height
"sm"
compressed
false
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
tagName
labelColor
tagTextColor
fillColor
tagBgColor
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.ERROR_RED_LABEL
fillColor
CHIP_COLORS.ERROR_BG_RED
boldLabel
true
label
CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.DARK_GREY
fillColor
CHIP_COLORS.SMOKE_GREY
boldLabel
true
label
CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Update Required"
variant
CHIP_VARIANT.FILLED
fillColor
CHIP_COLORS.INFO_LIGHT_BG_BLUE
labelColor
CHIP_COLORS.INFO_BLUE_LABEL
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
messages.selectDialog.default
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
pubSubStatus
variant
"filled"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${caKey}-toDelete`
size
sm
height
md
label
"To Be Deleted"
fillColor
CHIP_COLORS.warnBgYellow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
StateChipStyleProps[stateName]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
stateName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Current
variant
filled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
To Be Removed
fillColor
CHIP_COLORS.warnBgYellow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Unavailable"
size
"xs"
height
"sm"
compressed
false
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
badgePropsForStatus
label
status
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
boldLabel
true
label
status
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.DARK_BLUE
fillColor
CHIP_COLORS.SMOKE_GREY
boldLabel
true
label
status
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
size
xs
label
New
labelColor
CHIP_COLORS.INFO_BLUE_LABEL
fillColor
CHIP_COLORS.INFO_LIGHT_BG_BLUE
boldLabel
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
eventMesh.environmentName
variant
filled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"filled"
label
"Recommended"
boldLabel
true
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
dataQa ?? "overriddenBadge"
variant
CHIP_VARIANT.FILLED
fillColor
CHIP_COLORS.INFO_LIGHT_BG_BLUE
labelColor
CHIP_COLORS.INFO_BLUE_LABEL
label
en.application.configuration.overridden
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
"Added"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isSub ? "filled" : "outlined"
height
"sm"
label
en.eventApiProduct.labels.sub
size
"xs"
disabled
!isSub
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isPub ? "filled" : "outlined"
height
"sm"
label
en.eventApiProduct.labels.pub
size
"xs"
disabled
!isPub
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
`${
+								expandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0
+									? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length
+									: 0
+							} Added`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
state
fillColor
getColor(state).fillColor ?? undefined
labelColor
getColor(state).labelColor ?? undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
{eventMesh.environmentName}
size
"sm"
height
"sm"
maxWidth
"100px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label

+											{`${schemaVersionSelectedMap[row.id].length} Added`}
+										
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label

+											{"Selected"}
+										
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Sub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Pub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Source"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Destination"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fillColor
CHIP_COLORS.ERROR_BG_RED
label
"Declined"
labelColor
CHIP_COLORS.ERROR_RED_LABEL
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isSub ? "filled" : "outlined"
label
"Sub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
disabled
!isSub
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isPub ? "filled" : "outlined"
label
"Pub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
disabled
!isPub
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
t({ id: "id_default", message: "Default" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
label
ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]
dataQa
dataQa ?? "connector_status_badge"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
t({ id: "id_default", message: "Default" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
i18n._(getEventMeshState(eventMesh))
fillColor
getEventMeshStateFillColor(eventMesh)
labelColor
getEventMeshStateLabelColor(eventMesh)
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_expired", message: "Expired" })
fillColor
CHIP_COLORS.ERROR_BG_RED
labelColor
CHIP_COLORS.ERROR_RED_LABEL
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_expires_soon", message: "Expires Soon" })
fillColor
CHIP_COLORS.warnBgYellow
labelColor
CHIP_COLORS.warnYellow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
language.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fillColor
fillColor
labelColor
labelColor
label
label
dataQa
statusChip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
hasSsoError ? t({ id: "id_service_outofsync_short", message: "SSO out-of-sync" }) : i18n._(getServiceState(service))
fillColor
getServiceStateFillColor(service, hasSsoError)
labelColor
getServiceStateLabelColor(service, hasSsoError)
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_event_mesh", message: "Event Mesh" })
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
environmentsStr.labels.defaultEnvironment
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
active
label
Active
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
inactive
label
Inactive
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
environmentsStr.labels.defaultEnvironment
+
+ +
+
+ +
+
+
+ SolaceTruncatableLink + 48 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep46
intg2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id48
text48
onClick31
dataQa8
href2
key1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (48)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventBrokerNameValue
text
selectedEventBroker.name
onClick
() => {
+								window.open(
+									`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`
+								);
+							}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationNameValue
text
selectedApplication.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
authenticationTypeValue
text
getCredentialsLabel(credentials)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
authenticationTypeAValue
text
getCredentialsFieldValue(credentials, "inputA")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
authenticationTypeBValue
text
getCredentialsFieldValue(credentials, "inputB")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfile
text
selectedClientProfileName ?? "default"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
restDeliveryPointNameValue
text
rdpName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileValue
text
selectedClientProfileName ?? "default"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}NameValue`
text
entity.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
version.id
text
<>
+													{`${version.parentName} `}
+													{version.display || version.semver}
+												
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
version.id
text
onVersionNameClick ? version.display || version.semver : {version.display || version.semver}
onClick
onVersionNameClick ? () => onVersionNameClick(version) : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event.id
text
event.name
onClick
() => eventSelectionCallback(event)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationVersion.id
text
{`${applicationVersion.parent.name} `}
onClick
(event) => {
+									event.stopPropagation();
+									onVersionClick({
+										entityId: applicationVersion.parent.id,
+										entityVersionId: applicationVersion.id,
+										entityType: EntityType.application,
+										nodeId: null
+									});
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationVersion.id
text
{applicationVersion.displayName || applicationVersion.version}
onClick
(event) => {
+									event.stopPropagation();
+									onVersionClick({
+										entityId: applicationVersion.parent.id,
+										entityVersionId: applicationVersion.id,
+										entityType: EntityType.application,
+										nodeId: null
+									});
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductVersion.id
text
eventApiProductName
onClick
(e) => {
+									e.stopPropagation();
+									onNameClick(eventApiProductVersion);
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
item.id
text
itemName
onClick
(e) => {
+							e.stopPropagation();
+							onNameClick(item);
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
href
`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingService.id
text
messagingService.name
onClick
() => onTitleLinkClick(messagingService)
dataQa
messagingService[Accordion][Title]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityVersion.parent.id}-${entityVersion.id}`
text
entityVersion.parent.name
onClick
handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))
+						? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)
+						: null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id + "_name"
text
row.eventMeshName
onClick
hasAccess ? () => handleViewDetail(row) : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${associatedEvents?.[0]?.id}`
text
associatedEvents?.[0]?.name ?? ""
onClick
() => handleDetailDialogOpen(associatedEvents?.[0])
dataQa
`${associatedEvents?.[0]?.name}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`appVersionSummaryPopoverText=${applicationVersion.id}`
text
applicationVersion.displayName || applicationVersion.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`appVersionName-${applicationVersion.id}`
text
applicationVersion.displayName || applicationVersion.version
onClick
() => openApplicationDetails(applicationVersion.parent, applicationVersion)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`appName-${application.id}`
text
application.name
onClick
() => openApplicationDetails(application)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
id
event?.name
text
event?.name ?? ""
onClick
() => handleDetailDialogOpen(event)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
associatedEventParents?.[0]?.name
text
associatedEventParents?.[0]?.name ?? ""
onClick
() => handleDetailDialogOpen(associatedEventParents?.[0])
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaDetail?.name}`
text
schemaDetail?.name ?? ""
onClick
() => handleDetailDialogOpen(null)
dataQa
`${schemaDetail?.name}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${applicationDetail?.parent?.name}-${applicationDetail?.version}`
text
applicationDetail?.parent?.name ?? ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${eventDetail?.parent?.name}-${eventDetail?.version}`
text
eventDetail?.parent?.name ?? ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionNumber}`
text
`Version ${versionNumber}`
onClick
() => handleVersionLinkClick(relation)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${row.id}-templateLink`
onClick
() => handleSelectTemplate(row.id)
id
row.id
text
row.templateName
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"contextSelector-title"
text
`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : ""}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
item.id
text
item.name
onClick
canOpen ? () => onOpen(item) : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
node.versionId
text
node.name
onClick
handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.eventId
text
row.eventName
onClick
(e) => {
+						e.stopPropagation();
+						handleRowHighlight(row);
+						onEventClick(row.event);
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.applicationId
text
row.application?.name ?? "-"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
request.applicationId
text
request.application.name
onClick
applicationDomainLocked ? null : () => onApplicationClick(request.application)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion.id}-link`
text
schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version
onClick
() => onViewSchemaVersionDetails(schema, schemaVersion)
dataQa
`${schemaVersion.id}-viewDetails`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined
id
eventBroker.id
text
eventBroker.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${applicationVersion.id}-applicationVersion-link`
href
`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`
id
applicationVersion.id
text
applicationVersion.displayName || applicationVersion.version
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
limitString(row.name, 35)
dataQa
`${camelCase(row.name)}_button`
onClick
() =>
+									startTransition(() => {
+										history.push(`/micro-integrations/${row.id}`);
+									})
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
dataQa
`row.name_button`
+
+ +
+
+ +
+
+
+ SolaceSelectAutocomplete + 44 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep28
intg4
mc5
saas7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name44
onChange44
dataQa43
options43
itemComponent43
itemMappingCallback43
optionsLabelCallback43
fetchOptionsCallback43
value42
isOptionEqualToValueCallback41
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (44)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
modeledEventMesh[select]
name
modeledEventMesh[select]
dataQa
modeledEventMesh[select]
label
Modeled Event Mesh
required
true
disabled
!selectedEnvironmentId
hasErrors
!!validationError.eventMeshError
helperText
validationError.eventMeshError
multiple
false
value
selectedEventMeshes[0]
options
matchingEventMeshes
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleEventMeshSelectChange
fetchOptionsCallback
handleFetchEventMeshOptionsCallback
getOptionDisabledCallback
handleOptionDisabled
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingService[select]
name
messagingService[select]
dataQa
messagingService[select]
label
"Event Broker"
required
true
disabled
selectedEventMeshes.length === 0
hasErrors
!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError
helperText
selectQueryError.messagingServiceError ?? validationError.messagingServiceError
multiple
false
value
selectedMessagingServices[0]
options
matchingMessagingServices
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleMessagingServiceSelectChange
fetchOptionsCallback
handleFetchMessagingServiceOptionsCallback
getOptionDisabledCallback
handleOptionDisabled
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[protocols]
name
memAssociation[protocols]
dataQa
memAssociation[protocols]
label
en.eventApiProduct.labels.supportedProtocols
required
true
hasErrors
!!validationError.protocolsError
helperText
validationError.protocolsError
multiple
true
disabled
!selectedMessagingServiceId
value
selectedProtocols
options
matchingProtocols
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleProtocolSelectChange
fetchOptionsCallback
handleFetchProtocolOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[protocols]
name
eapAssociation[protocols]
dataQa
eapAssociation[protocols]
label
en.eventApiProduct.labels.supportedProtocols
required
true
hasErrors
!!validationError.protocolsError
helperText
validationError.protocolsError
multiple
true
disabled
!selectedEventApiProductVersionId
value
selectedProtocols
options
matchingProtocols
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleProtocolSelectChange
fetchOptionsCallback
handleFetchProtocolOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingService
name
messagingServiceAutocomplete
dataQa
messagingService
label
Event Broker Context (optional)
helperText
selectQueryError.messagingServiceError ?? validationError.messagingServiceError
hasErrors
!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError
value
selectedMessagingService
options
matchingMessagingServices
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleMessagingServiceSelectChange
fetchOptionsCallback
handleFetchMessagingServiceOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getOptionDisabledCallback
handleOptionDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userAccessSelect-search
dataQa
`userAccessSelect-${resourceAssignment.userId}`
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
(option, value) => option?.value === value?.value
itemMappingCallback
(option) => option ?? { name: "", value: "" }
fetchOptionsCallback
(searchTerm) => setSearchTerm(searchTerm)
getOptionDisabledCallback
(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]
options
userOptions
value
selectedOption
onChange
handleOnChange
hasErrors
!!resourceAssignment.error
helperText
resourceAssignment.error
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
multiple
true
value
values
options
matchingValues
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getOptionDisabledCallback
handleOptionDisabledCallback
onChange
handleChange
fetchOptionsCallback
debouncedFetchOptionsCallback
shouldClearSearchOnSelectCallback
shouldClearSearchOnSelectCallback
maxHeight
400px
validateInputCallback
validateInputValue
hasErrors
hasErrors
helperText
helperText
dataQa
dataQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
enumeration
dataQa
enumerationName
label
Enumeration
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
searchLocalEnums
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingEnumOptions
onChange
handleEnumChange
value
selectedEnumOption
getOptionDisabledCallback
sharedSearchCriteria ? handleOptionDisabled : undefined
groupByCallback
getSolaceSelectAutocompleteGroupBy
showGroupDivider
true
helperText
sharedSearchCriteria ? "You can associate only shared enumerations with shared events." : null
width
65%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationDomainSelect-search
label
title ? title : "Application Domain"
inlineLabel
inlineLabel
multiple
false
onChange
handleApplicationDomainChange
value
selectedApplicationDomain
options
matchingApplicationDomains
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
handleFetchApplicationDomainOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
required
required
readOnly
!!readOnly
disabled
false
hasErrors
!!selectQueryError
helperText
showHelperText
maxHeight
370px
dataQa
applicationDomainSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationVersionSelect-search
label
title ?? "Application Version"
multiple
true
onChange
handleApplicationVersionChange
value
selectedApplicationVersions
options
applicationVersionOptions
itemComponent
getApplicationVersionSelectAutocompleteItem
itemMappingCallback
(option) => option
renderTags
() =>
+				selectedApplicationVersions?.[0] && (
+					{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}
+				)
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
handleFetchApplicationVersionOptionsCallback
isOptionEqualToValueCallback
isApplicationVersionSelectAutocompleteOptionEqual
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
groupByCallback
applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined
showGroupDivider
applicationVersionOptions.some((option) => option.divider) ? true : false
disableCloseOnSelect
false
required
true
disabled
disabled
hasErrors
!!selectQueryError
helperText
selectQueryError || helperText || ""
dataQa
applicationVersionSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
FilterTypeLabel[filterType]
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+						<>
+							{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+								
+							)}
+						
+					)
openOnFocus
true
inputRef
(input) => {
+						filterInputRefs.current[filterType] = input;
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${FilterType.eventMesh}Select`
name
`${FilterType.eventMesh}Select`
dataQa
`${FilterType.eventMesh}Select`
label
FilterTypeLabel.eventMesh
placeholder
selectedEventMeshes?.length ? "" : "No Filters"
multiple
true
value
selectedEventMeshes
options
matchingEventMeshes
itemComponent
getEventMeshSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getEventMeshSelectAutocompleteOptionLabel
onChange
handleChangeEventMeshes
fetchOptionsCallback
handleFetchEventMeshOptionsCallback
isOptionEqualToValueCallback
isEventMeshSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${customAttributeFilterType}Select`
name
`${customAttributeFilterType}Select`
dataQa
`${customAttributeFilterType}Select`
label
placeholder
selectedOptions.length > 0 ? "" : "No Filters"
multiple
true
value
selectedOptions
options
matchingOptions
itemComponent
CustomAttributeValueAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getCustomAttributeValueOptionLabel
getShowOptionDividerCallback
getShowCustomAttributeValueOptionDivider
onChange
handleChangeCustomAttributeValues
fetchOptionsCallback
handleFetchCustomAttributeValueOptionsCallback
isOptionEqualToValueCallback
isCustomAttributeValueOptionEqual
renderTags
() =>
+						debouncedSelectedOptions &&
+						debouncedSelectedOptions.length > 0 && (
+							
+						)
openOnFocus
true
inputRef
(input) => {
+						filterInputRefs.current[customAttributeFilterType] = input;
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
FilterTypeLabel[filterType]
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
filterLabel
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
templateEnvironmentAssociation
name
templateEnvironmentAssociation
dataQa
templateEnvironmentAssociation
placeholder
displayedEnvironments?.length ? "" : "Select environments"
required
!!isRequired
readOnly
!!isReadOnly
multiple
true
value
displayedEnvironments
options
matchingEnvironments
onChange
handleChangeEnvironments
itemComponent
EnvironmentMultiSelectOption
itemMappingCallback
(option) => {
+					return {
+						...option,
+						environmentOption: getEnvironmentChipObject(environmentOptions, option.id)
+					};
+				}
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
handleFetchEnvironmentsOptionsCallback
isOptionEqualToValueCallback
isEnvironmentSelectAutocompleteOptionEqual
hasErrors
!!hasErrors
helperText
helperText
inputRef
(input) => {
+					autocompleteRef.current = input;
+				}
renderTags
() =>
+					displayedEnvironments?.length > 0 && (
+						 {
+								return {
+									id: env.id,
+									content: (
+										 handleDeleteTag(env.id)}
+										/>
+									)
+								};
+							})}
+							columnGap={8}
+							showAll={false}
+							containerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}
+						/>
+					)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
shareFilterSelect
name
shareFilterSelect
dataQa
shareFilterSelect
label
en.kpiMetricsDashboard.sharedFilter
value
selectedSharedType
options
filteredSharedTypeOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleShareFilterChange
fetchOptionsCallback
filterSharedTypeOptions
openOnFocus
true
minWidth
175px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerFilterSelect
name
brokerFilterSelect
dataQa
brokerFilterSelect
label
en.kpiMetricsDashboard.brokerTypeFilter
value
selectedBrokerType
options
filteredBrokerTypeOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleBrokerTypeFilterChange
fetchOptionsCallback
filterBrokerTypeOptions
openOnFocus
true
minWidth
175px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
FormNameTemplate
id
name
name
name
dataQa
name
value
templateOptionSelected
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
fetchOptionsCallback
updateTemplateOptions
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
templateOptions
onChange
(e) => {
+											onChange(e.value);
+
+											if (e.value?.value) {
+												selectTemplate(templates.find((template) => template.id === e.value.value));
+												// template changed - keep queue name, clear other properties
+												updateUserConfigValues({ queueName: queueName }, true);
+											} else {
+												resetTemplate();
+											}
+										}
helperText
error ? error.message : ""
hasErrors
!!error
disabled
isTemplateSelectionDisabled(templates, templateOutOfSync)
required
true
multiple
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
FormNameClientProfileName
id
name
name
name
dataQa
name
value
templateOptionSelected
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
fetchOptionsCallback
updateTemplateOptions
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
templateOptions
onChange
(e) => {
+											onChange(e.value);
+
+											if (e.value?.value) {
+												// template selected
+												const template = templates.find((template) => template.id === e.value?.value);
+												const clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);
+
+												setTemplateOptionSelected({
+													name: template.name,
+													value: template.id,
+													description: template.description,
+													clientProfileName: clientProfileName
+												});
+												setObservedConfiguration(clientProfileName);
+											} else {
+												// template cleared
+												reset(true);
+											}
+										}
helperText
error ? error.message : ""
hasErrors
!!error
disabled
templates.length === 0
required
true
multiple
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
placeholder
All Domains
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
fullWidth
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
multiple
true
options
getAutoCompleteOptions(level)
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
filterValues
onChange
(e) => onChange(e.value)
value
getAutoCompleteValue(value, level, name)
fullWidth
true
minWidth
622px
limitTags
2
dataQa
name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
dataQa
domainsSearch
multiple
true
label
en.eventApiProduct.labels.messagingService
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchMems
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingOptions
onChange
(e) => {
+								onChange(e.value);
+							}
hasErrors
!!error
helperText
error ? en.eventApi.error.requiredGatewayMessagingService : null
value
value
width
621px
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
requestorSelect
name
requestorSelect
dataQa
requestorSelect
label
Requestor
placeholder
selectedRequestors?.length ? "" : "No Filters"
multiple
true
value
selectedRequestors
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
(option) => option.name
onChange
handleRequestorChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
(option, value) => option.value === value.value
openOnFocus
true
inputRef
(input) => {
+												requestorInputRef.current = input;
+											}
renderTags
() => (
+												<>
+													{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (
+														
+													)}
+												
+											)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
placeholder
All Domains
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
searchLocalDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
placeholder
All Domains
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventMeshSearch
name
eventMeshSearch
dataQa
eventMeshSearch
placeholder
selectedEventMeshes?.length ? "" : "No Filters"
multiple
true
value
selectedEventMeshes
options
matchingEventMeshes
itemComponent
getEventMeshSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getEventMeshSelectAutocompleteOptionLabel
onChange
handleChangeEventMeshes
fetchOptionsCallback
handleFetchEventMeshOptionsCallback
isOptionEqualToValueCallback
isEventMeshSelectAutocompleteOptionEqual
renderTags
() => (
+								<>
+									{selectedEventMeshes?.length > 0 && (
+										
+									)}
+								
+							)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
label
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
maxHeight
22rem
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
serviceSearch
id
serviceSearch
dataQa
serviceSearch
label
en.connectors.labels.eventBrokerService
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchServices
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
showMIEnvironmentsFlag ? getOptionsForEnv : getOptions
onChange
onServiceSelectChange
value
selectedService
hasErrors
validationEnabled && !!solaceValidationErrors.eventBrokerService
helperText
validationEnabled && solaceValidationErrors.eventBrokerService
+									? solaceValidationErrors.eventBrokerService
+									: en.connectors.helperText.serviceName
getOptionDisabledCallback
(option) => option.value === "no_services"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
80%
fullWidth
true
name
`transformationAutocomplete_${nodeId}`
id
`transformationAutocomplete_${nodeId}`
dataQa
`transformationAutocomplete_${nodeId}`
label
en.connectors.labels.transformation
required
true
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
multiple
false
value
selectedTransformationFunction || undefined
options
matchingTransformationFunctions
onChange
handleTransformationFunctionChange
fetchOptionsCallback
handleFetchOptions
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`autocomplete-${id}`
id
`autocomplete-${id}`
dataQa
`autocomplete-${id}`
label
typeof data.label === "string"
+								? data.label
+								: data.type === "input"
+								? (en.transformations.labels.sourceItem as string)
+								: (en.transformations.labels.targetItem as string)
required
true
value
selectedField || undefined
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
multiple
false
options
matchingData
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
onChange
handleChange
fetchOptionsCallback
handleFetchOptions
groupByCallback
getSolaceSelectAutocompleteGroupBy
showGroupDivider
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userAccessSelect-search
dataQa
`userAccessSelect-${resourceAssignment.userId}`
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
(option, value) => option?.value === value?.value
itemMappingCallback
(option) => option ?? { name: "", value: "" }
fetchOptionsCallback
(searchTerm) => setSearchTerm(searchTerm)
getOptionDisabledCallback
(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]
options
userOptions
value
selectedOption
onChange
handleOnChange
hasErrors
!!resourceAssignment.error
helperText
resourceAssignment.error
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
value
version
maxHeight
30vh
name
targetVersion
label
Target Version
hasErrors
!!formError
options
filterOptions
itemMappingCallback
(option) => option
helperText
formError ? formError : ""
getOptionDisabledCallback
(option) => option.value === currentVersion
fetchOptionsCallback
useDebouncedCallback(fetchOptionsCallback, 150)
onChange
(event) => {
+						setFormError("");
+						setVersion(event.value as SolaceSelectAutocompleteItemProps);
+					}
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
region
name
region
dataQa
region
value
value
onChange
handleChange
hasErrors
hasErrors
helperText
errorText
disabled
regionDisabled
placeholder
getPlaceholder()
fetchOptionsCallback
fetchOptions
isOptionEqualToValueCallback
isOptionEqual
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
regionToString
itemMappingCallback
itemToRegion
groupByCallback
getGroupBy
getOptionDisabledCallback
isOptionDisabled
options
matchingRegions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clusterName
name
clusterName
dataQa
clusterName
readOnly
isCloning
required
!!edit
disabled
disabled
fetchOptionsCallback
fetchOptions
isOptionEqualToValueCallback
isOptionEqual
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
clusterNameToString
itemMappingCallback
itemMappingCallback
helperText
errorText ? errorText : t({ id: "id_cluster_name_info", message: "Type a new cluster name or select an existing one." })
options
matchingClusterNames
value
value
hasErrors
hasErrors
maxHeight
theme.spacing(30)
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userAccessSelect-search
dataQa
`userAccessSelect-${resourceAssignment.userId}`
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
(option, value) => option?.value === value?.value
itemMappingCallback
(option) => option ?? { name: "", value: "" }
fetchOptionsCallback
(searchTerm) => setSearchTerm(searchTerm)
getOptionDisabledCallback
(option) =>
+				!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]
options
userOptions
value
selectedOption
onChange
handleOnChange
hasErrors
!!resourceAssignment.error
helperText
resourceAssignment.error
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
transferServicesDropdownSelect
name
transferServicesDropdownSelect
dataQa
transferServicesDropdownSelect
fetchOptionsCallback
fetchOptionsCallback
required
true
multiple
false
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleOnChange
options
usersDropdownList
title
Select a user to transfer services to
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
id
userGroupRoleDropdownId
name
userGroupRoleDropdown
width
800px
label
userGroups.ugDialog.roles
dataQa
userGroupRoleDropdownQa
multiple
true
onChange
handleUserGroupRoleChange
value
dialogState.roleValue ? dialogState.roleValue : currentFilters
options
filterOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFiltersCallback
getOptionDisabledCallback
handleRolesDisabled
hasErrors
hasRoleError
helperText
hasRoleError ? userGroups.ugDialog.ugRoleError : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.username
id
usernameSelectFilter
name
usernameSelectFilter
dataQa
usernameSelectFilter
onChange
(e) => handleEmailSelection(e.value as IEmailOption)
value
filters.email.value ? selectedEmail : undefined
options
emailSearchTerm ? matchingEmails : getEmails(usersDetails)
itemComponent
(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {
+					return SolaceSelectAutocompleteItem({
+						name: item.name,
+						value: item.name
+					});
+				}
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFetchProtocolOptionsCallback
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
userGroupManagement.defaultUserGroupLabel
hasErrors
true
id
customizeUserGroup
name
customizeUserGroup
dataQa
customizeUserGroup
required
true
helperText
!selectedUserGroup ? userGroupManagement.selectDefaultGroup : ""
placeholder
selectedUserGroup?.name
options
userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)
itemComponent
(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {
+										return SolaceSelectAutocompleteItem({
+											name: item.name,
+											subText: item.roles?.join(", "),
+											value: item.name
+										});
+									}
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleUserGroupSelectChange
fetchOptionsCallback
handleFetchProtocolOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
width
30rem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
id
claimMappingUserGroups
name
claimMappingUserGroups
dataQa
claimMappingUserGroups
multiple
true
onChange
(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])
value
selectedUserGroups
options
userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)
itemComponent
(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {
+					return SolaceSelectAutocompleteItem({
+						name: item.name,
+						subText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(", "),
+						value: item.name
+					});
+				}
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFetchProtocolOptionsCallback
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
servicesDropdownId
name
servicesDropdown
dataQa
supportPageService
onChange
handleServiceDropdown
fetchOptionsCallback
handleServiceCallback
itemMappingCallback
(option) => option
options
services
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
value
dropdownValueFromParam
+
+ +
+
+ +
+
+
+ SolaceToggle + 32 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep25
intg2
mc3
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name32
onChange32
isOn32
id24
label20
dataQa19
helperText6
disabled4
title2
...1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (32)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges"
name
"shouldGroupEdges"
dataQa
`${dataQa ? dataQa + "-" : ""}shouldGroupEdges`
onChange
(event) => setShouldGroupEdges?.(event.value)
isOn
shouldGroupEdges
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings"
name
"showWarnings"
dataQa
`${dataQa ? dataQa + "-" : ""}showWarnings`
onChange
(event) => setShowWarnings?.(event.value)
isOn
showWarnings
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullName"
name
"showFullName"
dataQa
`${dataQa ? dataQa + "-" : ""}showFullName`
onChange
(event) => setShowFullNames?.(event.value)
isOn
showFullNames
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges"
name
"shouldGroupEdges"
dataQa
`${dataQa ? dataQa + "-" : ""}shouldGroupEdges`
onChange
(event) => setShouldGroupEdges?.(event.value)
isOn
shouldGroupEdges
disabled
disableActionToChangeGraph
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings"
name
"showWarnings"
dataQa
`${dataQa ? dataQa + "-" : ""}showWarnings`
onChange
(event) => setShowWarnings?.(event.value)
isOn
showWarnings
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullName"
name
"showFullName"
dataQa
`${dataQa ? dataQa + "-" : ""}showFullName`
onChange
(event) => setShowFullNames?.(event.value)
isOn
showFullNames
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showNewEventVersionIndicator"
name
"showNewEventVersionIndicator"
dataQa
`${dataQa ? dataQa + "-" : ""}showNewEventVersionIndicator`
onChange
(event) => setShowNewEventVersionIndicator?.(event.value)
isOn
showNewEventVersionIndicator
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"snapNodeToGrid"
name
"snapNodeToGrid"
dataQa
`${dataQa ? dataQa + "-" : ""}snapNodeToGrid`
onChange
(event) => setSnapNodeToGrid?.(event.value)
isOn
snapNodeToGrid
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showWarnings
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showWarnings
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showWarnings
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
disableMultiSelect
label
"Disable Multi Select"
isOn
disableMultiSelect
onChange
(event) => setDisableMultiSelect(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
disableMoveNodes
label
"Disable Move Nodes"
isOn
disableMoveNodes
onChange
(event) => setDisableMoveNodes(event.value)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings"
name
"showWarnings"
dataQa
"showWarnings"
onChange
(event) => setShowWarnings?.(event.value)
isOn
showWarnings
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames"
name
"showFullNames"
dataQa
"showFullNames"
onChange
(event) => setShowFullNames?.(event.value)
isOn
showFullNames
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showSchema"
name
"showSchema"
dataQa
"showSchema"
onChange
(event) => setShowSchema?.(event.value)
isOn
showSchema
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all_resources
isOn
selectedEnvironment?.showAllResources
onChange
({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)
name
show_all_envs
label
messages.header.showAllResources
helperText
messages.header.helperText
dataQa
REMHeaderShowAllResources
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOn
hideMatches
name
hide-match
label
Hide Matches
onChange
handleHideMatch
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOn
hideSubRelationshipsMatches
name
hide-match
label
Hide Matches
onChange
handleSubjectRelationshipHideMatch
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showPropertyNames
label
application.configuration.showPropertyNames
isOn
showPropertyNames
onChange
() => setShowPropertyNames(!showPropertyNames)
dataQa
showPropertyNamesToggle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showAdvancedProperties"
name
"showAdvancedProperties"
label
"Show Advanced Properties"
dataQa
"showAdvancedPropertiesToggle"
onChange
() => setShowAdvancedProperties((prevValue) => !prevValue)
isOn
showAdvancedProperties
disabled
!restDeliveryPoint?.restConsumerConfiguration
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showAdvancedProperties"
name
"showAdvancedProperties"
label
en.application.configuration.restDeliveryPoint.showAdvancedProperties
dataQa
`showAdvancedProperties`
onChange
() => setShowAdvancedProperties((prevValue) => !prevValue)
isOn
showAdvancedProperties
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all
isOn
selectedEnvironment.showAllResources
onChange
handleShowAllEnvs
name
show_all_envs
label
t({ id: "id_show_all_environments", message: "Show resources in all environments" })
helperText
t({
+														id: "id_show_all_environments_help",
+														message: "Enable to manage resources across environments"
+													})
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all
isOn
selectedEnvironment.showAllResources
onChange
handleShowAllEnvs
name
show_all_envs
label
t({ id: "id_show_all_environments", message: "Show resources in all environments" })
helperText
t({
+												id: "id_show_all_environments_help",
+												message: "Enable to manage resources across environments"
+											})
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
isOn
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
delete_protection
name
delete_protection
dataQa
delete-protection
isOn
isLocked
disabled
!canConfigure
onChange
handleDeleteProtection
stateText
true
label
t({ id: "id_delete_protection", message: "Delete Protection" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all
isOn
selectedEnvironment.showAllResources
onChange
handleShowAllEnvs
name
show_all_envs
label
t({ id: "id_show_all_environments", message: "Show resources in all environments" })
helperText
t({ id: "id_show_all_environments_help", message: "Enable to manage resources across environments" })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
securitySettingsPreAuth
label
brandableTextValueConverter("PubSub+", "string") + " " + en.accountSettings.preAuthText
name
securitySettingsPreAuth
onChange
(value) => togglePreAuth(value.value)
title
Security Settings Pre Auth
isOn
!preOrgConfigResponse?.data.useAuthWebUILinks
disabled
preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig
dataQa
preAuthText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
helperText
en.notifications[showUnreadNotifications ? "showingUnreadNotifications" : "showingAllNotifications"]
id
showUnreadNotifications
dataQa
showUnreadNotifications
label
en.notifications.showUnreadNotifications
name
showUnreadNotifications
onChange
(e) => setShowUnreadNotifications(e.value)
title
en.notifications.showUnreadNotifications
isOn
showUnreadNotifications
+
+ +
+
+ +
+
+
+ SolaceTable + 31 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep19
intg3
saas9
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
rows31
columns31
selectionType31
sortCallback31
renderCustomRowCells20
showEmptyState18
id17
selectionChangedCallback16
sortedColumn15
renderCustomEmptyState14
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (31)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SELECTION_TYPE.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
renderCustomRowActionItem
renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No ${entityTypeToLabelLowercase(entityType)}s have been created`
expandableRowOptions
expandableRowOptions
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI
independentRowHighlight
true
highlightedRowId
highlightedRowId
rowHighlightChangedCallback
handleRowHighlight
disabledRowIds
disabledRowIds
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
selectionType ?? SolaceTableSelectionType.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
expandableRowOptions
expandableRowOptions
renderCustomEmptyState
renderCustomEmptyState ?? defaultEmptyState
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event-flow-discrepancy-preview-table
selectionType
SELECTION_TYPE.NONE
sortCallback
handleSort
rows
paginatedRows
columns
columns
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SolaceTableSelectionType.MULTI
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
expandableRowOptions
expandableRowOptions
renderCustomEmptyState
renderCustomEmptyState ?? defaultEmptyState
showEmptyState
tableDataAvailable
independentRowHighlight
true
highlightedRowId
highlightedRowId
rowHighlightChangedCallback
handleRowHighlight
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SELECTION_TYPE.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItems
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
renderCustomEmptyState
customEmptyState
expandableRowOptions
expandableRowOptions
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"metricsDashboardTable"
rows
handleProcessEntities(entities)
columns
columns
selectionType
SolaceTableSelectionType.NONE
hasColumnHiding
false
rowActionMenuItems
null
renderCustomRowCells
(row: SolaceTableRow) => {
+				return renderRowCells(row);
+			}
renderCustomEmptyState
customEmptyState
showEmptyState
!entities || entities.length === 0
sortCallback
null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowCells
renderCustomRowCells
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
renderCustomRowCells
renderRowCells
columns
columns
selectionType
SolaceTableSelectionType.NONE
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
columns
id
remTable
renderCustomRowCells
renderCustomRow
maxHeight
`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`
renderCustomRowActionItem
actions
rows
remEntities
selectedRowIds
[selectedMem?.id]
selectionChangedCallback
handleRowSelection
selectionType
SELECTION_TYPE.SINGLE
sortedColumn
sortedColumn
sortCallback
handleSort
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
loading
isLoading
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SELECTION_TYPE.MULTI
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
independentRowHighlight
true
highlightedRowId
highlightedRowId
rowHighlightChangedCallback
handleRowHighlight
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No ${entityTypeToLabelLowercase(entityType)}s have been created`
expandableRowOptions
expandableRowOptions
renderCustomEmptyState
renderCustomEmptyState
showEmptyState
tableDataAvailable
customContentDefinitions
customContentDefinitions
displayedCustomContent
displayedCustomContent
customContentDisplayChangeCallback
customContentDisplayChangeCallback
customMenuActions
customMenuActions
crossPageRowSelectionSupported
auditEntityType === null ? false : true
totalObjectCount
entityCount
deselectedRowIds
deselectedRowIds
allPagesSelectedByDefault
allPagesSelectedByDefault
crossPageSelectionChangedCallback
handleCrossPageRowSelectionsChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => null
rows
getFilteredRows()
renderCustomRowCells
renderRowCells
columns
TEMPLATE_TYPES[type].tableColumns
selectionType
SolaceTableSelectionType.SINGLE
emptyStateMessage
messages[type].emptyTableMessage
showEmptyState
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentEventsTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
null
hasColumnHiding
false
renderCustomRowCells
renderRowCells
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
disabledRowIds
existingSharedEventIds
emptyStateMessage
`No matching events have been found`
expandableRowOptions
{
+				allowToggle: false,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentEventsTable`
rows
tableData
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
true
renderCustomRowCells
(row: SolaceTableRow) => {
+						return renderRowCells(row, columnsHiddenInfo);
+					}
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
en.eventApi.labels.emptyState
expandableRowOptions
{
+						allowToggle: true,
+						renderChildren: renderExpandedRowContent,
+						expandedRowIds: expandedRowIds,
+						setExpandedRowIds: setExpandedRowIds,
+						selectRowWhenClickOnChildren: false
+					}
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`eventAccessRequestTable`
rows
tableData
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
renderCustomEmptyState
renderEmptyState
showEmptyState
tableDataAvailable && !loading
independentRowHighlight
true
highlightedRowId
highlightedRow?.id
rowHighlightChangedCallback
handleRowHighlight
expandableRowOptions
{
+						allowToggle: false,
+						renderChildren: (row) => renderExpandedRowContent(row),
+						expandedRowIds: [],
+						setExpandedRowIds: () => {
+							void 0;
+						}
+					}
loading
loading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowCells
renderCustomRowCells
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentSchemasTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
null
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No matching schemas have been found`
renderCustomEmptyState
hasFilter && clearFilterEmptyState
expandableRowOptions
{
+				allowToggle: true,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentEventsTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
null
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No matching events have been found`
renderCustomEmptyState
hasFilter && clearFilterEmptyState
expandableRowOptions
{
+				allowToggle: true,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentApplicationsTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
null
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No matching applications have been found`
renderCustomEmptyState
hasFilter && clearFilterEmptyState
expandableRowOptions
{
+				allowToggle: true,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connector-flow-list-table
id
connector-flow-list-table
rows
allConnectors
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
(column: SolaceTableColumn | undefined) => {
+					setConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);
+				}
sortedColumn
columns.find((column) => column.field === connectorSort.split(":")[0])
renderCustomRowCells
(row: SolaceTableRow) => {
+					return renderRowCells(row);
+				}
renderCustomRowActionItem
customRowActionMenuItems
selectionChangedCallback
handleRowSelections
selectedRowIds
selectedRowIds
renderCustomEmptyState
() => (
+					
+						
+					
+				)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
agent-list-table
id
agent-list-table
rows
allAgents
columns
columns
sortCallback
(column: SolaceTableColumn | undefined) => {
+					setAgentSort(`sort=${column?.field}`);
+				}
sortedColumn
columns.find((column) => column.field === agentSort)
selectionType
SolaceTableSelectionType.SINGLE
renderCustomRowCells
(row: SolaceTableRow) => {
+					return renderRowCells(row);
+				}
selectionChangedCallback
handleRowSelections
selectedRowIds
selectedRowIds
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connector-flow-list-table
id
connector-flow-list-table
rows
connectorErrorLogs ?? []
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
function (): void {
+							return;
+						}
renderCustomRowCells
(row: SolaceTableRow) => {
+							return renderRowCells(row);
+						}
loading
logsFetching
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rowData
columns
columns
sortCallback
sortFunc
selectedRowIds
selectedRowIds
selectionChangedCallback
onRowSelected
selectionType
SolaceTableSelectionType.SINGLE
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
() => undefined
rows
tableRows
columns
userManagementColumns
selectionType
SolaceTableSelectionType.NONE
loading
false
showEmptyState
tableRows.length < 1
minHeight
476px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
showEmptyState ? [] : tableRows
columns
columns
sortedColumn
sortedColumn
sortCallback
(columm) => handleSort(columm, drawdownData)
selectionType
SolaceTableSelectionType.NONE
dataQa
drawdownUsageTable
renderCustomEmptyState
() => (
+						}
+							title={drawdownUsage.noDrawdownUsage.noDrawdownUsage}
+						/>
+					)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
tableRows
columns
columns
sortCallback
handleSort
selectionType
SolaceTableSelectionType.SINGLE
rowActionMenuItems
rowActionMenuItems
dataQa
userGroupsTableQA
customMenuActions
resultsPerPageActions
hasColumnHiding
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelectionsChange
sortCallback
() => null
rows
auditLogsRows
columns
AuditLogsTableColumns
selectionType
SolaceTableSelectionType.SINGLE
renderCustomEmptyState
emptyState
showEmptyState
true
loadingMessage
en.auditLogs.loadingMessage
loading
loading
maxHeight
40rem
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
sortClaimValuesDirection
rows
groupMappingState ? [addMappingRow, ...tableRows] : tableRows
columns
columns(groupMappingState)
selectionType
SolaceTableSelectionType.NONE
loading
false
showEmptyState
rows.length < 1
minHeight
476px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
notificationsTable
loading
isLoading || isFetchingNotifications || deletingNotification
loadingMessage
en.notifications[deletingNotification ? "deletingNotifications" : "fetchingNotifications"]
emptyStateMessage
en.notifications.emptyStateMessage(showUnreadNotifications)
columns
NOTIFICATION_TABLE_COLUMNS
displayedColumns
NOTIFICATION_TABLE_COLUMNS
customContentDisplayChangeCallback
() => null
displayedCustomContent
[]
renderCustomRowActionItem
getRowActionMenuItem
expandableRowOptions
{
+								allowToggle: true,
+								expandedRowIds: expandedRowIds,
+								renderChildren: (data) => {
+									return (
+										
+											
+										
+									);
+								},
+								setExpandedRowIds: expandRowHandler
+							}
rows
notifications ?? []
sortCallback
() => null
selectionType
SELECTION_TYPE.NONE
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => undefined
rows
distributedTracingLimits ?? []
columns
limitColumn
selectionType
SolaceTableSelectionType.NONE
renderCustomEmptyState
() => {tracingLimits.emptyStateMessage}
selectionChangedCallback
() => undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => undefined
rows
tracingProfiles ?? []
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowActionItem
customRowActionMenuItems
renderCustomEmptyState
() => {tracingProfile.emptyStateMessage}
+
+ +
+
+ +
+
+
+ SolaceTabs + 31 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep22
intg4
mc3
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
tabs29
activeTabValue29
onTabClick22
size11
variant9
...2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (31)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
size
sm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
size
sm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
tabProps
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
size
md
variant
fullWidth
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
tabProps
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => setActiveTab(tab)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabArray
activeTabValue
activeTab
size
md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeEntityType
size
md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
selectedTab
onTabClick
handleTabClick
tabs
[
+										{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: "mostUsed" },
+										{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: "leastused" }
+									]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => handleTabClick(tab)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
brokerTypeOptions
activeTabValue
addObjectsActiveTab
onTabClick
handleAddObjectTabClick
size
sm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
size
md
variant
fullWidth
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
size
md
variant
fullWidth
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
actionTabs
activeTabValue
activeTab
onTabClick
handleActionTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeEntityType
size
md
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
activeStep
onTabClick
setActiveStep
tabs
[
+					{ value: "1", label: t({ id: "id_get_api", message: "1. Get API" }) },
+					{ value: "2", label: t({ id: "id_connect_service", message: "2. Connect to Service" }) },
+					{ value: "3", label: t({ id: "id_learn_more", message: "3. Learn with Tutorials" }) }
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
certType
onTabClick
setCertType
tabs
[
+									{ value: "client", label: t({ id: "id_client_cert_auths", message: "Client Certificate Authorities" }) },
+									{ value: "domain", label: t({ id: "id_domain_cert_auths", message: "Domain Certificate Authorities" }) }
+								]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
tab
tabs
[
+							{ label: t({ id: "id_status", message: "Status" }), value: "status" },
+							{ label: t({ id: "id_connect", message: "Connect" }), value: "connect", disabled: areTabsDisabled },
+							{ label: t({ id: "id_manage", message: "Manage" }), value: "manage", disabled: areTabsDisabled },
+							{ label: t({ id: "id_monitoring", message: "Monitoring" }), value: "monitoring", disabled: areTabsDisabled },
+							{ label: t({ id: "id_configuration", message: "Configuration" }), value: "configuration", disabled: isInProgress },
+							{ label: t({ id: "id_tryme", message: "Try Me!" }), value: "tryme", disabled: areTabsDisabled }
+						]
onTabClick
(value) => {
+							if (value === "manage") {
+								if (missionControl?.manageUI) {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: "security" }));
+								} else {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));
+								}
+							} else {
+								history.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));
+							}
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
activeTab
variant
scrollable
tabs
TABS
size
md
onTabClick
handleTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
activeTab
variant
scrollable
tabs
TABS
size
md
onTabClick
handleTabClick
+
+ +
+
+ +
+
+
+ SolacePagination + 29 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep17
intg2
mc4
saas6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
totalResults29
pageSize29
activePage29
onPageSelection29
displayText5
loading2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (29)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
tableRows.length
pageSize
PAGE_SIZE
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
applicationVersionsCount
pageSize
20
activePage
applicationCurrentPage
onPageSelection
setApplicationCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
eventVersionsCount
pageSize
20
activePage
eventCurrentPage
onPageSelection
setEventCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
schemaVersionsCount
pageSize
20
activePage
schemaCurrentPage
onPageSelection
setSchemaCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
eventApiProductVersionsCount
pageSize
20
activePage
eapCurrentPage
onPageSelection
setEapCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityVersionsCount
pageSize
pageSize
activePage
currentPageNumber
onPageSelection
setCurrentPageNumber
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityVersionsCount
pageSize
pageSize
activePage
currentPageNumber
onPageSelection
setCurrentPageNumber
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityVersionsCount
pageSize
pageSize
activePage
currentPageNumber
onPageSelection
setCurrentPageNumber
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
pagination?.pageNumber
onPageSelection
setCurrentPage
pageSize
pagination?.pageSize
totalResults
pagination?.count
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
20
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
requests.length
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
displayText
""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
meta.pagination.count ?? 0
pageSize
meta.pagination.pageSize
activePage
meta.pagination.pageNumber
onPageSelection
handlePageSelection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
meta.pagination.count ?? 0
pageSize
meta.pagination.pageSize
activePage
meta.pagination.pageNumber
onPageSelection
handlePageSelection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
pagination.pageNumber + 1
pageSize
pagination.pageSize
totalResults
totalResults
onPageSelection
() => 1
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
1
pageSize
100
totalResults
totalResults
onPageSelection
handlePageSelection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
pagination.pageNumber
pageSize
pagination.pageSize
totalResults
totalResults
onPageSelection
handlePageSelection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
pagination.pageNumber
pageSize
pagination.pageSize
totalResults
totalResults
onPageSelection
handlePageSelection
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
getMetadata().count
pageSize
getMetadata().pageSize
activePage
selectedPage
onPageSelection
onSelectPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
userTablePage
pageSize
USER_LIST_DATA_PER_PAGE
totalResults
pageCount || 0
onPageSelection
(page) => setUserTablePage(page)
loading
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
getMetadata().count
pageSize
getMetadata().pageSize
activePage
selectedPage
onPageSelection
onSelectPage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
meta?.pagination.pageNumber + 1
onPageSelection
(page) => fetchNewPage(page)
totalResults
meta?.pagination.totalHitCount
pageSize
meta?.pagination.pageSize
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
1
pageSize
10
totalResults
rows.length
onPageSelection
() => undefined
loading
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
notificationsResponse?.meta?.pageNumber + 1
onPageSelection
(page) => {
+									setPageNumber(page);
+								}
totalResults
notificationsResponse?.meta?.count
pageSize
notificationsResponse?.meta?.pageSize
+
+ +
+
+ +
+
+
+ SolaceChip + 27 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep20
intg1
saas6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label27
variant11
maxWidth9
key6
clickable4
disabled4
onDelete4
dataQa4
borderRadius3
boldLabel3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (27)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
variant
CHIP_VARIANT.OUTLINED
state
selected ? STATES.ACTIVE : STATES.NOT_SELECTED
clickable
true
borderRadius
"sm"
boldLabel
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
selectedEventMesh.name
variant
CHIP_VARIANT.FILLED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
disabled
disabled
onDelete
onDelete
dataQa
`filterChip-${filterType}`
clickable
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
protocolName.name
variant
CHIP_VARIANT.FILLED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
messages.configuration.enabled
variant
CHIP_VARIANT.FILLED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
messagingService.eventMeshId
label
messagingService.eventMeshName
variant
CHIP_VARIANT.FILLED
maxWidth
200px
disabled
toBeRemoved
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`
variant
CHIP_VARIANT.FILLED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
applicationDomainName
maxWidth
isSidePanel ? 100 : 150
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label

+								{applicationDomainName}
+								{isAppDomainLocked && }
+							
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
disabled
disabled
onDelete
onDelete
dataQa
`filterChip-${filterType}`
clickable
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
tag.id
label
tag.name
variant
CHIP_VARIANT.FILLED
borderRadius
"sm"
boldLabel
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label

+											 {AUDIT_TAGS_LABELS.Hide}
+										
variant
CHIP_VARIANT.FILLED
borderRadius
"sm"
boldLabel
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
node.name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
applicationDomainName
icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
domainInfoMap[item.id].name
maxWidth
150
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
name
maxWidth
200
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
messages.configuration.enabled
variant
CHIP_VARIANT.FILLED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
eventMesh.name
variant
CHIP_VARIANT.FILLED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
 1 ? "s" : ""}: ${consumersCount}`}>
+						{`Consumer${consumersCount > 1 ? "s" : ""}: ${consumersCount}`}
+					
maxWidth
110
dataQa
`consumerChip-${eventVersionId}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
disabled
disabled
onDelete
onDelete
dataQa
`filterChip-${filterType}`
clickable
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
CHIP_VARIANT.FILLED
labelColor
chipProps.labelColor
fillColor
chipProps.fillColor
height
md
label
{chipProps.label}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dialogState.user?.email
label
dialogState.user?.email
maxWidth
"fit-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dialogState.user?.email
label
dialogState.user?.email
maxWidth
"fit-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
group.id
label
group.name
maxWidth
"fit-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
user.email
maxWidth
"fit-content"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
label
filter.name + " : " + filter.value
onDelete
() => deleteFilter(filter.key)
+
+ +
+
+ +
+
+
+ SolaceCircularProgress + 27 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep7
intg3
mc11
saas6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
size15
variant12
message5
dataQa1
disableShrink1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (27)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
testId
variant
indeterminate
size
size
disableShrink
disableShrink
message
message
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
size
lg
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
Retrieving event broker service details...
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
Deploying license to broker...
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
Removing Distributed Tracing license from broker...
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
configuringMessage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
size
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ +
+
+ +
+
+
+ SolaceRadio + 25 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep13
intg4
mc5
saas3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label25
name25
value23
key14
dataQa13
id7
disabled5
subText5
checked4
onChange4
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (25)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Existing Application"
name
existingApplication
value
"false"
dataQa
existingApplication
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"New Application"
name
newApplication
value
"true"
dataQa
newApplication
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.value
name
option.value
value
option.value
label
option.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
disabled
key
`messagingService-${item.id}`
label
 handleServiceAccordionControl(item.id)}
+								details={renderAccordionDetail(item)}
+								summary={
+									
+										{item.name}
+										{item?.solaceCloudMessagingServiceId && }
+										{isScanInProgress && Discovery Scan in progress}
+									
+								}
+							/>
name
item.id
value
item.id
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`selectResultTypeOption_${resultType}`
label

+									{auditResultTypeCount}
+									{AUDIT_RESULT_CHIPS[resultType]}
+									{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}
+								
name
resultType
value
resultType
disabled
auditResultTypeCount === 0 || isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
resultPerPage === pageSize
onChange
() => handleResultsPerPageChange(resultPerPage)
key
`resultsPerPage_${resultPerPage}`
name
resultsPerPage
value
`${resultPerPage}`
label
`${resultPerPage}`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
name
key
value
key
label
brokerTypeLabel[key]
disabled
!allowChangeBrokerType
dataQa
`brokerType[${key}]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.eventApi.labels.json
name
json
value
json
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.eventApi.labels.yaml
name
yaml
value
yaml
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.value
name
option.value
value
option.value
label
option.label
subText
option.subText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
value
name
value
value
value
label
value
dataQa
`schemaType[${value}]`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Add to Existing Consumer"
name
existingConsumer
value
"existingConsumer"
dataQa
existingConsumer
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Create New Consumer"
name
newConsumer
value
"newConsumer"
dataQa
newConsumer
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanTrue
name
constantBooleanTrue
value
"true"
dataQa
constantBooleanTrue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanFalse
name
constantBooleanFalse
value
"false"
dataQa
constantBooleanFalse
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanTrue
name
constantBooleanTrue
value
"true"
dataQa
constantBooleanTrue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanFalse
name
constantBooleanFalse
value
"false"
dataQa
constantBooleanFalse
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
label
i18n._(label)
name
option
checked
checked
onChange
handleMenuClick[index]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
label
i18n._(label)
name
option
checked
checked
onChange
handleMenuClick[index]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
name
endpointsSelector
dataQa
`"endpointsSelector"[${id}]`
label
label
lightSubText
true
value
id
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
name
systemType
dataQa
`systemType[${id}]`
label
label
subText
subText
lightSubText
true
value
id
readOnly
readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
name
serviceType
dataQa
`serviceType[${id}]`
label
label
subText
subText
lightSubText
true
value
id
readOnly
readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
nonprod
id
nonprod
value
"false"
name
isProduction
label
nonProductionLabel
subText
en.environments.labels.nonProdSubText
disabled
isDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
prod
id
prod
value
"true"
name
isProduction
label
productionLabel
subText
en.environments.labels.prodSubText
disabled
isDisabled
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
resultPerPage === selectedPageSize
onChange
() => handleResultsPerPageChange(resultPerPage)
key
`resultsPerPage_${resultPerPage}`
name
resultsPerPage
value
`${resultPerPage}`
label
`${resultPerPage}`
+
+ +
+
+ +
+
+
+ SolaceDetailMessage + 23 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep13
intg5
mc1
saas4
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
details22
actions19
msgImg18
title18
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (23)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions[0] ?? null
details
details[0] ?? null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions[1] ?? null
details
details[1] ?? null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions[0] ?? null
details
details[0] ?? null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions[1] ?? null
details
details[1] ?? null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
messages[configType].emptyConfigurationTitle
actions

+						{messages[configType].emptyLinkToDocumentation}
+					
details
{messages[configType].emptyConfigurationDetail}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions[0] ?? null
details
details[0] ?? null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions[1] ?? null
details
details[1] ?? null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
title
actions

+							{en.connectors.buttons.clearFilters}
+						
details
details
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions

+									{secondSectionActionString}
+								
details
secondSectionDetails
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping
details
readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription
actions
[
+					{
+						id: "learn-about-mapping-btn",
+						variant: "link",
+						dataQa: "learn-about-mapping-btn",
+						children: en.connectors.buttons.learnMapping,
+						href: "https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm"
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.noConnectorFlows
msgImg
details
en.connectors.labels.tableEmptyDescription
actions
[
+					{
+						id: "create-connector-flow-btn",
+						variant: "call-to-action",
+						dataQa: "create-connector-flow-btn",
+						children: en.connectors.create,
+						onClick: onCreateConnectorFlow
+					},
+					{
+						id: "view-all-connector-btn",
+						variant: "text",
+						dataQa: "view-all-connector-btn",
+						children: en.connectors.buttons.viewAllTypes,
+						onClick: OnViewAllConnectorType
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
illustration ?? 
title
title ?? "Nothing to see here!"
details
details ?? "Please try returning to main page."
actions
!hideEscapeRoute
+							? [
+									{
+										id: "empty-panel-btn",
+										variant: variant ?? "call-to-action",
+										dataQa: dataQa ?? "back-integration",
+										children: buttonLabel ?? "Go to Integration",
+										onClick
+									}
+							  ]
+							: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
illustration ?? 
title
title ?? t({ id: "id_nothing_here", message: "Nothing to see here!" })
details
details ?? t({ id: "id_return_home", message: "Please try returning to main page." })
actions
!hideEscapeRoute
+							? [
+									{
+										id: "empty-panel-btn",
+										variant: variant ?? "call-to-action",
+										dataQa: dataQa ?? "back-mission-control",
+										children: buttonLabel ?? t({ id: "id_goto_mc", message: "Go to Mission Control" }),
+										onClick
+									}
+							  ]
+							: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details
drawdownUsage.noDrawdownUsage.noDrawdownUsageSub
msgImg
title
drawdownUsage.noDrawdownUsage.noDrawdownUsage
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details

+						
+							{drawdownUsage.noDrawdownUsage.subTitle}
+							{drawdownUsage.noDrawdownUsage.message}
+						
+					
msgImg
title
drawdownUsage.noDrawdownUsage.title
actions
[
+					{
+						children: drawdownUsage.noDrawdownUsage.contactUs,
+						id: "contactUs-btn",
+						onClick: () => toggleContactUsModalOpenState(),
+						variant: "call-to-action"
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details

+							
+								{supportPage.freeTrialDescription}
+								
+									{supportPage.freeTrialDescriptionExt}
+									
+									{supportPage.freeTrialDescriptionExt2}
+								
+							
+						
msgImg
title
supportPage.freeTrialTitle
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+
+ +
+
+
+ SolaceGridList + 23 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep9
intg1
mc7
saas6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
items23
rowMapping23
gridTemplate23
dataQa20
selectedItemId8
onSelection8
headers8
virtualizedListOption4
indicatorVariantIdentifier3
emphasizedIdentifier3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (23)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
sortedMessagingServiceList
rowMapping
getMessagingServiceRow
selectedItemId
selectedMessagingService?.id
onSelection
handleSelectMessagingService
gridTemplate
"minmax(10ch,auto) 1fr"
dataQa
messagingServiceListOfSelectedMEM
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
listItems
indicatorVariantIdentifier
"variant"
emphasizedIdentifier
"emphasized"
rowMapping
renderSchemaVersionRow
selectedItemId
highlightedEntityVersionId
onSelection
handleEntityVersionHighlight
gridTemplate
"minmax(auto, auto) minmax(auto, auto) 16px"
dataQa
schemaListDataQa
virtualizedListOption
{
+							height: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height
+							itemHeight: 52,
+							overscanCount: 20
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
listItems
indicatorVariantIdentifier
"variant"
emphasizedIdentifier
"emphasized"
rowMapping
renderEventVersionRow
selectedItemId
highlightedEntityVersionId
onSelection
handleEntityVersionHighlight
gridTemplate
"minmax(auto, auto) minmax(auto, auto) 16px"
dataQa
eventListDataQa
virtualizedListOption
{
+							height: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height
+							itemHeight: 74,
+							overscanCount: 20
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
listItems
indicatorVariantIdentifier
"variant"
emphasizedIdentifier
"emphasized"
rowMapping
renderAppVersionRow
selectedItemId
highlightedEntityVersionId
onSelection
handleEntityVersionHighlight
gridTemplate
"minmax(auto, auto) minmax(auto, auto) 16px"
dataQa
appVersionListDataQa
virtualizedListOption
{
+							height: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,
+							itemHeight: 74,
+							overscanCount: 20
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
entityVersions
rowMapping
mapEntity
selectedItemId
highlightedEntityVersionId
onSelection
processEntityVersionHighlight
gridTemplate
minmax(auto, auto) minmax(auto, auto) 16px
dataQa
"appDomainGraphSearchResultsGrid_" + entityType
virtualizedListOption
{
+						height: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,
+						itemHeight: SEARCH_LIST_ITEM_HEIGHT,
+						overscanCount: 20
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
eventApiProductVersions
rowMapping
getListRow
gridTemplate
auto 0fr
dataQa
eventApiProductList
background
white
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
primitiveSchemaTypeOptions
onSelection
onPrimitiveTypeChange
rowMapping
getPrimitiveTypeRowComponents
selectedItemId
selectedPrimitiveType
gridTemplate
auto
dataQa
primitiveTypes
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
sortedRelationshipVersions
rowMapping
getListRow
gridTemplate
auto 0fr
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
filteredAndSortedVersions
rowMapping
getListRow
gridTemplate
auto 0fr
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
affectedTransformations.map((transformation) => ({
+							source: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,
+							target: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName
+						}))
headers
[en.connectors.labels.source, en.connectors.labels.target]
rowMapping
(item, index) => [
+							
+								
+									{item.source}
+								
+							,
+							
+								
+									{item.target}
+								
+							
+						]
gridTemplate
"1fr 1fr"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
meshes
items
meshes
headers
headers
rowMapping
rowMapping
gridTemplate
gridTemplate
dataQa
event-meshes
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
libraries
dataQa
libraries
gridTemplate
90px 1fr 1fr 120px
items
librarySummaries
selectedItemId
selectedId
onSelection
handleSelection
headers
[
+				t({ id: "id_technology", message: "Technology" }),
+				t({ id: "id_library", message: "Library" }),
+				view === "language" ? t({ id: "id_protocol", message: "Protocol" }) : t({ id: "id_language", message: "Language" }),
+				""
+			]
rowMapping
(item) => [
+				
+					{item.name}
+				,
+				 handleSelection(item)}>
+					{item.name}
+				,
+				 handleSelection(item)}>
+					{view === "language" ? item.protocol : item.languages}
+				,
+				
+					 handleSelection(item)}>
+						Get Started
+					
+				
+			]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`ldap-groups-${id}`
gridTemplate
1fr
items
items
rowMapping
renderRow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
hostnames
dataQa
hostnames
gridTemplate
gridTemplate
items
hostnames
rowMapping
renderRow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
syslog-forwarding
gridTemplate
gridTemplate
items
syslogs
rowMapping
renderRow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`client-profiles`
gridTemplate
gridTemplate
items
clientCertAuths
rowMapping
renderRow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`client-profiles`
gridTemplate
gridTemplate
items
profiles
rowMapping
renderRow
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
getServiceLimits() as LimitsData[]
headers
columnHeaders
rowMapping
rowMapping(false)
gridTemplate
gridTemplate
dataQa
serviceLimitsList
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
convertMsgSpoolLimits()
headers
columnHeaders
rowMapping
rowMapping(true)
gridTemplate
gridTemplate
dataQa
msgSpoolLimitsList
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
sapAddonLimitsData
headers
columnHeaders
rowMapping
rowMapping(false)
gridTemplate
gridTemplate
dataQa
erpLimitsList
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
convertConnectorLimits()
headers
columnHeaders
rowMapping
rowMapping(false)
gridTemplate
gridTemplate
dataQa
connectorsLimitsList
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
environments ? environments : []
headers
columnHeaders
onSelection
handleRowSelection
rowMapping
withActionColumnMapping
selectedItemId
isSidePanelOpen ? selectedId : 0
gridTemplate
minmax(350px, 2fr) 200px 200px 200px 24px
dataQa
environmentGridList
numOfGridListItemDisplayed
gridRowMaxVisible()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
_.concat(outOfSyncServices, syncedServices)
rowMapping
rowMapping
gridTemplate
minmax(350px, 2fr) 120px 24px
numOfGridListItemDisplayed
10
dataQa
out-of-sync-collectors
+
+ +
+
+ +
+
+
+ SolaceTextArea + 21 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep10
intg1
mc1
saas9
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name21
value18
onChange18
dataQa18
maxLength14
label14
helperText12
hasErrors11
resizable7
onBlur5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (21)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || (
+													{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}
+												)
minRows
3
maxRows
3
maxLength
complexValueTypeCharLimit
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
resizable
"vertical"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`postRequestTargetValue`
value
queueBindingConfiguration.postRequestTarget
readOnly
true
dataQa
`postRequestTargetValue`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`${prefix}Value`
value
displayedHeaderValue
readOnly
true
dataQa
`${prefix}Value`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.configuration.restDeliveryPoint.requestHeaderValue
name
name
value
value || ""
required
true
maxLength
2001
onChange
(e) => {
+									onChange(e.value);
+								}
onBlur
() => {
+									onBlur();
+									value && onChange(value.trim());
+								}
dataQa
configurationNameRequestHeaderValue
hasErrors
!!error
helperText
error ? error.message : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || (
+													{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}
+												)
minRows
3
maxRows
3
maxLength
complexValueTypeCharLimit
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+													setIsDirty(true);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
resizable
"vertical"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => {
+									setIsDirty(true);
+									onChange(e.value);
+								}
dataQa
`${entityType}[name]`
autoFocus
!isDuplicateVersion
maxLength
nameMaxLength + 1
minRows
1
maxRows
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
550px
name
declineReason
value
declineReason
onChange
handleReasonChange
label
"Reason for Revocation"
hasErrors
!!declineReasonError
helperText
declineReasonError
maxLength
MAX_REASON_LENGTH
dataQa
declineReason
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
declineReason
value
declineReason
onChange
handleReasonChange
label
"Reason for Decline"
hasErrors
!!declineReasonError
helperText
declineReasonError
maxLength
MAX_REASON_LENGTH
disabled
reviewDecision !== ReviewDecision.declined
dataQa
declineReason
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
Comment
width
100%
name
comment
value
item?.comments
onChange
(e) => handleOnCommentChange(e, item)
label
"Comment"
maxLength
400
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
description ?? "emptyDescription"
label
label ?? "Description"
value
description
onChange
(e) => {
+				setDescription(e.value ?? "");
+			}
onBlur
() => {
+				setDescription(description.trim());
+			}
dataQa
"description"
maxLength
10000
placeholder
placeholder ?? ""
resizable
resizable
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
props.name
label
props.label
onChange
(e) => onChangeTrigger(props, e)
value
fieldValue
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
width
100%
maxLength
props.schema.maxLength
dataQa
`${props.label}-form-textArea`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
value
value
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
limitChangeDetails
label
en.serviceLimits.labels.details
onBlur
onDetailsChange
fullWidth
true
dataQa
"limitChangeDetails"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxLength
1500
fullWidth
true
label
en.environments.labels.descripiton
value
dialogState.description
name
environmentDescription
onChange
handleEnvDescriptionChange
helperText
handleDescriptionErrorText()
hasErrors
hasDescError
disabled
isLoading
dataQa
envDescriptionTestId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxLength
3000
label
drawdownUsage.noDrawdownUsage.details
name
contactUsTextField
dataQa
contactUsTextField
fullWidth
true
onChange
({ value }) => setContactUseMessage(value)
hasErrors
!validateText(contactUseMessage) ? false : true
helperText
!validateText(contactUseMessage) ? "" : drawdownUsage.noDrawdownUsage.containsScript
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxLength
255
fullWidth
true
label
userGroups.ugDialog.descripiton
value
dialogState.description
name
userGroupsDescription
onChange
handleUGDescriptionChange
disabled
isLoading
dataQa
userGroupsDescriptionQa
helperText
handleDescriptionCount()
resizable
vertical
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.accountSettings.additionalComments
name
additionalComments
onChange
(e) => setAdditionalCommentsText(e.value)
title
en.accountSettings.additionalComments
value
additionalCommentsText
dataQa
additionalCommentsTextField
hasErrors
additionalCommentsText.length >= 255
helperText
additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
descriptionError
helperText
handleDescriptionError()
name
descriptionField
resizable
vertical
value
descriptionValue
onChange
handleDescriptionFieldValue
maxLength
5000
dataQa
supportPageIssue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
limitRequestTextArea
name
limitRequestTextArea
onChange
({ value }) => setRequestDetailsTexts(value)
title
en.overview.eventPortalSection.requestDetailsTextArea
value
requestDetailsTexts
label
en.overview.eventPortalSection.requestDetailsTextArea
width
40rem
resizable
vertical
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.overview.banner.additionalComments
name
en.overview.banner.additionalComments
onChange
(e) => setAdditionalComments(e.value)
title
en.overview.banner.additionalComments
value
additionalComments
width
30vw
resizable
vertical
dataQa
additionalCommentsId
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"sendRequest"
maxLength
1000
fullWidth
true
label
en.privateRegions.labels.newRequestDetails
onChange
(event) => setTicketBody(event.value)
+
+ +
+
+ +
+
+
+ SolaceSidePanelLayout + 21 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep18
intg1
mc1
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
showSidePanel21
sidePanelWidth21
sidePanelContent21
sidePanelPosition1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (21)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
400
sidePanelContent
sidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedMem
sidePanelWidth
400
sidePanelContent
selectedMem ? (
+						 undefined}
+							userMap={entityCreateUpdateUsersMap}
+						/>
+					) : null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
true
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
true
sidePanelWidth
394
sidePanelPosition
SolacePanelPosition.LEFT
sidePanelContent
renderSidePanelContent()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEnum
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEventApiProduct
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedSchema
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedApplication
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEventApi
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEvent
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedDomain
sidePanelContent
renderSidePanel()
sidePanelWidth
400
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!highlightedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!isEmpty(selectedRowIds)
sidePanelWidth
400
sidePanelContent
renderSidePanel()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
showPanel
sidePanelWidth
480
sidePanelContent
selectedLibrary ? (
+					<>
+						
+							{selectedLibrary.displayName}
+							 handleSelectLibrary(null)}>
+								
+							
+						
+						
+							
+							
+							
+								Get Started
+							
+						
+					
+				) : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
panelOpen
sidePanelContent
sidePanelMessage
sidePanelWidth
MAX_WIDTH
+
+ +
+
+ +
+
+
+ SolaceEnvironmentChip + 19 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep9
intg4
mc5
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label12
...11
bgColor8
fgColor8
icon8
dataQa7
maxWidth4
onDelete1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (19)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
option
dataQa
dataQa
maxWidth
maxWidth
onDelete
onDelete || null
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
item.environmentOption
label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
context.environmentOption
label
maxWidth
26px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
contextOption.environmentOption
label
maxWidth
26px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentOption
label
maxWidth
26px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
environment.bgColor
fgColor
environment.fgColor
icon
environment.icon
label
environment.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
environment
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
environment
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
environment.label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
dataQa
environment
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
environment.label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
dataQa
environment
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
dialogState.name || "Environment Name"
fgColor
fgColor
bgColor
bgColor
icon
Icons16[dialogState.icon as SolaceEnvironmentIcons]
+
+ +
+
+ +
+
+
+ SolaceEnvironmentLabel + 17 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep3
intg6
mc2
saas6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label15
fgColor15
bgColor15
icon15
variant7
...2
dataQa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (17)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
item.environmentOption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
standard
dataQa
eventMesh[environment]
...
environmentOption
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
fgColor
fgColor
bgColor
bgColor
icon
icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
environment.bgColor
fgColor
environment.fgColor
icon
environment.icon
label
environment.label
variant
standard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
variant
standard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
""
variant
standard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
variant
standard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
variant
standard
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
fgColor
fgColor
bgColor
bgColor
icon
icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
fgColor
fgColor
bgColor
bgColor
icon
icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
environment.label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
testItem.name
bgColor
testItem.bgColor ?? "#FFFFFF"
fgColor
testItem.fgColor ?? "#000000"
icon
Icons16[(testItem.icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
testItem.name
bgColor
testItem.bgColor ?? "#FFFFFF"
fgColor
testItem.fgColor ?? "#000000"
icon
Icons16[(testItem.icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
""
fgColor
fgColor
bgColor
bgColor
icon
Icons16[dialogState.icon as SolaceEnvironmentIcons]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
title
label
environment.name
bgColor
environment.bgColor
fgColor
environment.fgColor
icon
Icons16[environment.icon as SolaceEnvironmentIcons]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
env.name
fgColor
env.fgColor ?? "#000000"
bgColor
env.bgColor ?? "#FFFFFF"
icon
Icons16[(env.icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
name
fgColor
fgColor ?? "#000000"
bgColor
bgColor ?? "#FFFFFF"
icon
Icons16[(icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+
+ +
+
+
+ SolacePageHeader + 17 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep4
intg6
mc5
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
title15
breadcrumbs11
environment10
borderTop10
actions6
subTitle4
release3
...2
actionMenu2
tabs2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (17)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
overrideProps
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
...
props
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/home/Home.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Event Portal
breadcrumbs
screenPath
dataQa
solace-header
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Event Portal AI Designer
breadcrumbs
[
+					{ title: "Designer", link: "/ep/designer" },
+					{ title: messages.aiWizardButton.action, link: "/ep/designer/wizard", current: true }
+				]
release
EXPERIMENTAL
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
environment
environment && (
+						
+					)
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
connectorDetails?.name ?? ""
environment
miEnvironment && (
+							
+						)
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
actions
(connectorDetails?.state === ConnectorState.notdeployed ||
+							connectorDetails?.state === ConnectorState.error) &&
+						hasAdminMiAccess
+							? [
+									
+										{en.connectors.labels.editConnectorFlow}
+									
+							  ]
+							: !hasAdminMiAccess
+							? []
+							: undefined
actionMenu
,
+								title: "Actions",
+								variant: "icon",
+								dataQa: "connectors_additional_actions"
+							}}
+							anchorOrigin={{ horizontal: "right", vertical: "bottom" }}
+							transformOrigin={{ horizontal: "right", vertical: "top" }}
+							id={"connectors_additional_actions"}
+							items={menuItems}
+						/>
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`
breadcrumbs
environment
miEnvironment && (
+								
+							)
borderTop
selectedEnvironment
+								? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)
+								: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.connectorFlows
environment
selectedEnvironment ? (
+										
+											
+												
+											
+										
+									) : undefined
borderTop
selectedEnvironment
+										? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)
+										: undefined
actions
[
+									hasAdminMiAccess ? (
+										 {
+												history.push("/micro-integrations/availableMicroIntegrations");
+											}}
+											dataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}
+										>
+											{en.connectors.labels.createConnectorFlow}
+										
+									) : (
+										
+									)
+								].filter(Boolean)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
connectorDetails?.name ?? ""
environment
miEnvironment && (
+							
+						)
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.agents.agents
environment
selectedEnvironment ? (
+								
+									
+										
+									
+								
+							) : undefined
borderTop
selectedEnvironment
+								? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)
+								: undefined
actions
[
+							hasAdminMiAccess ? (
+								 {
+										return null;
+									}}
+								>
+									{en.agents.buttons.createAgent}
+								
+							) : (
+								
+							)
+						].filter(Boolean)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_mesh_manager", message: "Mesh Manager" })
subTitle
t({ id: "id_event_meshes", message: "Event Meshes" })
release
t({ id: "id_beta", message: "BETA" })
breadcrumbs
[{ title: t({ id: "id_mesh_manager", message: "Mesh Manager" }), link: "/mc/meshes", current: true }]
actions
hasWriteAccess
+							? [
+									
+										Create Event Mesh
+									
+							  ]
+							: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_service_details", message: "Service Details" })
subTitle
service?.name ?? "..."
environment
environment ?  : undefined
borderTop
environment?.bgColor
breadcrumbs
[
+					{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: ROUTER_SERVICES },
+					{
+						title: t({ id: "id_service_details", message: "Service Details" }),
+						link: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),
+						current: true,
+						progress: hasOngoingOperation,
+						progressTooltip: t({ id: "id_broker_progress", message: "The broker is busy with an update. Please wait." })
+					}
+				]
actionMenu
service && (
+						
+					)
actions
service && [
+						
+							Open Broker Manager
+						
+					]
tabs
 {
+							if (value === "manage") {
+								if (missionControl?.manageUI) {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: "security" }));
+								} else {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));
+								}
+							} else {
+								history.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));
+							}
+						}}
+					>
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_cluster_manager", message: "Cluster Manager" })
subTitle
t({ id: "id_services", message: "Services" })
environment
selectedEnvironment ? (
+							
+								
+									
+								
+							
+						) : undefined
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
[{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: ROUTER_SERVICES, current: true }]
actions
hasWriteAccess
+							? [
+									
+										Create Service
+									
+							  ]
+							: undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_compare_services", message: "Compare Services" })
release
t({ id: "id_beta", message: "BETA" })
breadcrumbs
[
+					{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: ROUTER_SERVICES },
+					{ title: t({ id: "id_compare_services", message: "Compare Services" }), link: ROUTER_SERVICES_COMPARE, current: true }
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
subTitle
subTitle
environment
environment ?  : undefined
borderTop
environment?.bgColor
breadcrumbs
[
+					{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: servicesPath },
+					{
+						title: title,
+						link: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,
+						current: true
+					}
+				]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Page Title
environment
borderTop
bgColor
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.accountDetails.userSettings.settings
tabs
+
+ +
+
+ +
+
+
+ SolaceListItem + 16 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep10
intg1
saas5
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
sx11
key1
data-qa1
disablePadding1
disableGutters1
secondaryAction1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (16)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
entity.id
data-qa
`entityId-${entity.id}`
sx
{ paddingLeft: "48px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
disableGutters
true
sx
{ height: theme.spacing(sampleSetup ? 7 : 9) }
secondaryAction
{getSecondaryAction()}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", listStyleType: "disc", marginLeft: "16px", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", listStyleType: "disc", marginLeft: "16px", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", listStyleType: "disc", marginLeft: "16px", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+							borderTop: index === 0 ? 0 : "1px solid",
+							borderColor: theme.palette.grey[300],
+							pl: field?.parentId ? getIndentationLevel(field?.parentId) : 3
+						}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", paddingLeft: 0, marginLeft: theme.spacing(2) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", paddingLeft: 0, marginLeft: theme.spacing(2) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", paddingLeft: 0, marginLeft: theme.spacing(2) }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ listStyleType: "disc", display: "list-item", pl: 0, pt: 0 }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ listStyleType: "disc", display: "list-item", pl: 0, pt: 0 }
+
+ +
+
+ +
+
+
+ SolaceDrawer + 16 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep15
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
open16
width16
top16
height15
resizable15
maxWidth15
onResizeDone14
minWidth14
anchor3
offset3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (16)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
true
width
DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL
top
"50px"
anchor
left
offset
"0px"
height
`calc(100vh - 100px)`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initSearchPanelWidth
minWidth
minWidth
maxWidth
sidePanelMaxWidth
resizable
resizable
onResizeDone
handleResizeSidePanel
top
`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`
offset
`${leftOffset}px`
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`
anchor
left
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initSearchPanelWidth
minWidth
SEARCH_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`
offset
`${leftOffset}px`
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`
anchor
left
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
true
width
initialSidePanelWidth
onResizeDone
handleResizeSidePanel
minWidth
minWidth
maxWidth
sidePanelMaxWidth
resizable
true
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
!!rowDetails
resizable
true
top
10.65%
width
400
maxWidth
500
+
+ +
+
+ +
+
+
+ SolaceRadioGroup + 15 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep9
intg2
mc3
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name15
onChange15
value14
id13
inline8
dataQa4
hasErrors3
helperText3
label2
required2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (15)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
applicationRadioGroup
name
applicationRadioGroup
onChange
(e) => {
+						setIsNewApplication(e.value === "true");
+					}
value
isNewApplication ? "true" : "false"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
radioGroupName ?? "customhookRadioGroup"
dataQa
dataQa ?? ""
label
label
value
value
onChange
handleChange
hasErrors
!!validationErrorMsg
helperText
validationErrorMsg
required
true
inline
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingServiceSelectorRadioGroup
name
messagingServiceRadioGroup
value
selectedMessagingService
onChange
(e) => {
+										setSelectedMessagingService(e.value);
+									}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
selectResultTypeRadioGroup
name
selectResultTypeRadioGroup
onChange
handleAuditResultTypeChange
value
auditResultTypeToImport
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"brokerTypeRadioButtons"
name
"brokerTypeRadioButtons"
value
brokerType
inline
true
onChange
(e) => {
+										setBrokerType(e.value);
+									}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
downloadFormatRadioGroup
label
en.eventApi.labels.format
name
downloadFormatRadioGroup
inline
false
onChange
(e) => {
+				setFormat(e.value as SupportedAsyncApiDownloadFormat);
+
+				if (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);
+			}
stackLabel
true
value
format
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
review
onChange
handleReviewChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"SchemaTypeRadioButtons"
name
"SchemaTypeRadioButtons"
value
schemaInfo?.schemaType
inline
true
onChange
(e) => {
+						setSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);
+					}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
addSubscriptionRadioGroup
name
addSubscriptionRadioGroup
onChange
(e) => {
+							setMode(e.value);
+							resetField("consumerId");
+							resetField("consumerName");
+							resetField("consumerType");
+						}
value
mode
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
constant-radio-group
name
constantValue
hasErrors
!!constantNameError
helperText
constantNameError
onChange
(e) => {
+								setConstantField({ ...constantField, constantValue: e.value });
+							}
value
constantField.constantValue ? "true" : "false"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
constant-radio-group
name
constantValue
hasErrors
!!constantNameError
helperText
constantNameError
onChange
(e) => {
+								onConstantValueChange(e);
+							}
value
constantValue ? "true" : "false"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceType
name
serviceType
dataQa
serviceType
value
serviceType
onChange
handleServiceTypeChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
endpointsSelector
name
endpointsSelector
dataQa
endpointsSelector
value
endpointsSelector
onChange
handleChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
systemType
name
systemType
dataQa
systemType
value
systemType
onChange
handleSystemTypeChange
readOnly
readOnly
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
isProduction
name
isProduction
required
true
bold
true
value
getIsProductionValue(dialogState.isProduction)
onChange
handleEnvProductionChange
+
+ +
+
+ +
+
+
+ SolaceList + 14 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep7
intg5
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
sx10
disablePadding5
key4
dense2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (14)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
disablePadding
true
sx
{ marginTop: "-10px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx:undefined

+ + + + + + + + + + +
Prop NameValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+							"&& .Mui-selected": {
+								backgroundColor: theme.palette.ux.background.w20,
+								borderRight: "0"
+							},
+							"&& .Mui-selected:hover": {
+								backgroundColor: theme.palette.ux.background.w20
+							}
+						}
disablePadding
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`payloadSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`constantSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`headerSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`defaultHeaderSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
sx
{ li: { listStyleType: "disc" } }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ p: 2 }
+
+ +
+
+ +
+
+
+ SolaceCodeEditor + 13 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep12
intg1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
dataQa13
id13
mode13
value13
readOnly12
expandable6
onChange4
helperText4
hasErrors4
hasWarnings2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (13)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`itemDetail-${item.identifier}`
id
`itemDetail-${item.identifier}`
mode
json
readOnly
true
value
item.value ? JSON.stringify(jsonValue, null, 2) : ""
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[content]`
value
schemaVersion?.content || ""
mode
schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]
readOnly
true
dataQa
"schemaVersion[content]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`dataCollected[${row.id}]`
value
row.data
mode
"json"
readOnly
true
dataQa
"dataCollected[content]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"auditResultConfig[content]"
value
runtimeAttributes || designerAttributes
mode
json
readOnly
true
dataQa
"auditResultConfig[content]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"auditResultConfig[schemaBody]"
id
"auditResultConfig[schemaBody]"
mode
json
readOnly
true
value
schemaBody
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"auditResultConfig[schemaReferences]"
id
"auditResultConfig[schemaReferences]"
mode
json
readOnly
true
value
schemaReferences
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
value
observedConfiguration.value
mode
"json"
onChange
(editor, data, value) => setObservedConfiguration({ name, value })
dataQa
configurationName
helperText
error?.message ?? ""
hasErrors
!!error?.message
expandable
true
readOnly
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
dataQa
name
value
observedConfiguration
mode
"json"
onChange
(editor, data, value) => {
+								// onChange will break this because it will compete with the other debounced error flow
+								handleChangeCustomConfiguration(value);
+							}
helperText
error?.message
hasErrors
!!error
expandable
true
readOnly
mode === Mode.template
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"schemaVersion[content]"
value
schemaVersionRefetched.content || ""
mode
schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]
readOnly
true
expandable
!shownInCatalogDetailContainer
dataQa
"schemaVersion[content]"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
value
value || ""
mode
impliedContentType
onChange
(editor, data, value) => {
+										onChange(value);
+										trigger("schemaVersion[content]");
+										validateSchemaSpec(value);
+									}
dataQa
"schemaVersion[content]"
helperText
error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : ""
hasErrors
!!error
hasWarnings
!error && !!editorWarningMsg
expandable
true
readOnly
isImportedSchemaVersion
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`applicationVersion[consumers].${index}.configuration`
value
prettifiedConfiguration
mode
"json"
dataQa
`applicationVersion[consumers].${index}.configuration`
expandable
true
readOnly
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
value
value || ""
mode
impliedContentType
onChange
(editor, data, value) => {
+											onChange(value);
+											trigger("schemaVersion.content");
+											validateSchemaSpec(value);
+										}
dataQa
"schemaVersion[content]"
helperText
error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : ""
hasErrors
!!error
hasWarnings
!error && !!editorWarningMsg
expandable
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorlog-stackTrace
id
errorlog-stackTrace
mode
json
readOnly
true
value
JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)
+
+ +
+
+ +
+
+
+ SolacePicker + 13 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep11
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name13
onChange13
value13
variant13
icons12
dataQa11
numOfItemsPerRow11
label11
iconKeyOrderedList10
inlineLabel9
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (13)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${entityType}-customColour-picker`
name
name
iconKeyOrderedList
SupportedNodeColorVariations
icons
entityColourBlocks
numOfItemsPerRow
3
onChange
(e) => {
+								onChange(e.value);
+								setSelectedColorVariation(e.value);
+							}
value
value
variant
icons
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${entityType}-customIconLogo-picker`
name
name
icons
filteredIcons
iconKeyOrderedList
selectedCategory === "logos" ? imageOrderedKeys : iconOrderedKeys
numOfItemsPerRow
6
onChange
(e) => {
+										onChange(e.value);
+										setSelectedIconLogo?.(e.value);
+									}
value
value
variant
icons
getOptionDisplayValue
getOptionDisplayValue
autoFocusItem
autoFocusItem
emptyStateMessage
"No Results Found"
contentControlPanel
contentControlPanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationColorPicker
dataQa
applicationColorPicker
label
"Application Color"
inlineLabel
false
variant
"icons"
icons
applicationColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedAppColorVariation
onChange
(event) => setSelectedAppColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventColorPicker
dataQa
eventColorPicker
label
"Event Color"
inlineLabel
false
variant
"icons"
icons
eventColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedEventColorVariation
onChange
(event) => setSelectedEventColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
domainColorPicker
dataQa
domainColorPicker
label
"Domain Color"
inlineLabel
false
variant
"icons"
icons
domainColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedDomainColorVariation
onChange
(event) => setSelectedDomainColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
iconPicker
dataQa
iconPicker
label
"Select App Icon"
inlineLabel
false
variant
"icons"
icons
filteredIcons
iconKeyOrderedList
selectedCategory === "logos" ? imageOrderedKeys : iconOrderedKeys
value
selectedIconValue
onChange
(event) => setSelectedIconValue(event.value)
numOfItemsPerRow
6
getOptionDisplayValue
getOptionDisplayValue
autoFocusItem
autoFocusItem
contentControlPanel
contentControlPanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationColorPicker
dataQa
applicationColorPicker
label
"Application Color"
inlineLabel
false
variant
"icons"
icons
applicationColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedAppColorVariation
onChange
(event) => setSelectedAppColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventColorPicker
dataQa
eventColorPicker
label
"Event Color"
inlineLabel
false
variant
"icons"
icons
eventColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedEventColorVariation
onChange
(event) => setSelectedEventColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
domainColorPicker
dataQa
domainColorPicker
label
"Domain Color"
inlineLabel
false
variant
"icons"
icons
domainColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedDomainColorVariation
onChange
(event) => setSelectedDomainColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
iconPicker
dataQa
iconPicker
label
"Select App Icon"
inlineLabel
false
variant
"icons"
icons
filteredIcons
iconKeyOrderedList
selectedCategory === "logos" ? imageOrderedKeys : iconOrderedKeys
value
selectedIconValue
onChange
(event) => setSelectedIconValue(event.value)
numOfItemsPerRow
6
getOptionDisplayValue
getOptionDisplayValue
autoFocusItem
autoFocusItem
contentControlPanel
contentControlPanel
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
themePicker
label
"Select Color Theme"
inlineLabel
true
variant
"icons"
icons
applicationColorBlocks
value
selectedAppColorVariation
onChange
(event) => setSelectedAppColorVariation(event.value)
dataQa
themePicker
numOfItemsPerRow
3
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
color
label
Color
variant
colors
value
dialogState.color
onChange
handleEnvColorChange
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
icon
label
Icon
variant
icons
value
dialogState.icon
onChange
handleEnvIconChange
icons
Icons24
+
+ +
+
+ +
+
+
+ SolaceSearchAndFilter + 10 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep8
intg2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id10
name10
placeholder10
value10
onChange10
type10
dataQa8
width7
onClearAll4
onFocus1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (10)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
graphSearchInput
name
graphSearchInput
dataQa
graphSearchInput
placeholder
searchFieldPlaceholderText || "Find on Graph"
value
searchText
onChange
handleSearchTextChange
onFocus
handleOnFocus
onClearAll
handleClearSearchText
type
FIELD_TYPES.SEARCH
disabled
graphEmpty || disableActionToChangeGraph
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchInput
name
searchInput
dataQa
searchInput
placeholder
textboxPlaceholderText ?? "Search"
width
searchTextBoxWidth
value
internalSearchText
onChange
handleSearchTextChange
onClearAll
handleClearSearchText
type
FIELD_TYPES.SEARCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
filterMeshName
id
meshNameFilter
name
meshNameFilter
onChange
handleFilterChange
placeholder
Filter by name
type
FIELD_TYPES.SEARCH
value
memNameFilter
width
500px
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationFilterByName
name
applicationFilterByName
value
filterString
onChange
handleFilterByName
type
FIELD_TYPES.SEARCH
dataQa
applicationFilterByNameField
placeholder
Filter by name
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
addToApplicationVersionTextField
name
addToApplicationVersionTextField
dataQa
addToApplicationVersionTextField
label
selectApplicationVersionLabel
placeholder
Filter by application name
value
searchedApplicationName
onChange
(e) => setSearchedApplicationName(e.value)
onClearAll
() => setSearchedApplicationName("")
type
FIELD_TYPES.SEARCH
width
"480px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
templateNameFilter
name
templateNameFilter
value
filterbyName
onChange
handleFilterChange
dataQa
templateNameFilter
placeholder
Filter by name
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainNameFilter
name
domainNameFilter
value
nameFilter
onChange
handleFilterChange
dataQa
filterDomainName
placeholder
Filter by name
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
graphSearchInput
name
graphSearchInput
dataQa
graphSearchInput
placeholder
"Find on Graph"
value
searchText
onChange
handleSearchTextChange
onClearAll
handleClearSearchText
type
FIELD_TYPES.SEARCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`${id}`
id
`${id}`
onChange
(e) => setNameFilter(e.value)
value
nameFilter
placeholder
searchPlaceholder
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"connectorNameFilter"
id
"connectorNameFilter"
onChange
(e) => setNameFilter(e.value)
value
nameFilter
placeholder
en.connectors.searchPlaceholder
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+
+ +
+
+
+ SolaceBackDrop + 10 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
intg3
saas7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
open10
data-qa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (10)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
connectorDetailsLoading || connectorMetricsLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
saveInProgress
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
isTokensListLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
isPageLoading || createTokenIsLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
open
tokenIsLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
loading
data-qa
loading
+
+ +
+
+ +
+
+
+ SolaceToggleButtonGroup + 9 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep7
mc1
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
options9
onChange9
activeValue9
dataQa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (9)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
[
+				{
+					label: "Docker",
+					value: EmaInstallationTypes.docker,
+					dataQa: "ema-installation-type-docker"
+				},
+				{
+					label: "Java",
+					value: EmaInstallationTypes.java,
+					dataQa: "ema-installation-type-java"
+				}
+			]
onChange
onChange
activeValue
activeValue
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions
activeValue
activeTab
onChange
onChangeTabHandler
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions()
activeValue
activeTab
onChange
onChangeTabHandler
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
FILTER_OPTIONS
activeValue
filter
onChange
onChangeHandler
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
filterOptions
activeValue
filter
onChange
onChangeHandler
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions
activeValue
activeTabInApplicationFlow
onChange
handleApplicationFlowTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions
activeValue
activeTabInApplicationFlow
onChange
handleApplicationFlowTabClick
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
viewOptions
onChange
handleToggleView
activeValue
selectedView
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
userManagementToggle
options
TAB_OPTIONS
onChange
onToggleChangeHandler
activeValue
filter
+
+ +
+
+ +
+
+
+ SolaceBreadcrumb + 9 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
intg4
mc3
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
paths9
maxItems2
dataQa2
onRouteClick2
id1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (9)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
breadcrumbs
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: "Micro-Integrations", link: CONNECTOR },
+								{
+									title: connectorDetails?.name ?? "",
+									link: `/${id}`,
+									current: true
+								}
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
breadcrumbsPaths2()
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: en.connectors.connectorFlows, link: CONNECTOR },
+								{
+									title: connectorDetails?.name ?? "",
+									link: "editV2",
+									current: true
+								}
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: t({ id: "id_auth_security", message: "Authentication and Security" }), link: linkAuthSecurity },
+								{ title: t({ id: "id_service_authentications", message: "Service Authentications" }), link: "", current: true }
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: t({ id: "id_auth_security", message: "Authentication and Security" }), link: linkAuthSecurity },
+								{ title: t({ id: "id_cert_auths", message: "Certificate Authorities" }), link: "", current: true }
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: t({ id: "id_auth_security", message: "Authentication and Security" }), link: linkAuthSecurity },
+								{ title: t({ id: "id_client_profiles", message: "Client Profiles" }), link: "", current: true }
+							]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
groupManagementBreadcrumb
maxItems
2
dataQa
groupManagementBreadcrumb
onRouteClick
(link) => history.push(link)
paths
[
+						{
+							current: false,
+							link: "/account-details/user-groups",
+							title: `${userGroupManagement.userManagement}`
+						},
+						{
+							current: true,
+							link: "",
+							title: `${userGroupManagement.groupManagement}`
+						}
+					]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxItems
2
dataQa
NotificationLinksBreadcrumb
onRouteClick
(route) => history.push(route)
paths
[
+						{
+							current: false,
+							link: "/notifications",
+							title: en.notifications.notifications
+						},
+						{
+							current: true,
+							link: "",
+							title: notificationTitle
+						}
+					]
+
+ +
+
+ +
+
+
+ SolaceErrorBox + 8 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep1
mc5
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
message8
showCloseButton2
onClose2
showErrorIcon1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (8)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_disable_error", message: "An error occurred while disabling Distributed Tracing, please try again." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_failed_conf_collector", message: "Failed to configure and deploy the collector. For support, contact Solace." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_telemetry_profile_not_created", message: "This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_telemetry_no_connection", message: "Cannot retrieve the telemetry profile due to lack of connection." })
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({
+							id: "id_dt_tracing_dest_not_defined",
+							message: "A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed."
+						})
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
showErrorIcon
true
showCloseButton
true
onClose
() => setErrorMessage("")
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageWhileSavingSettings
+
+ +
+
+ +
+
+
+ SolaceSelectAutocompleteResponsiveTags + 8 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep7
intg1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
containerWidth8
tags8
tagMaxWidth8
overflowIndicatorLabel8
overflowIndicatorLabelSingular8
onDelete8
dataQa8
numOfRowsToShow1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (8)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 190}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${FilterType.eventMesh}Select-tags`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 190}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${customAttributeFilterType}Select-tags`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth
tags
selectedTags
tagMaxWidth
filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${FilterType.requestor}-tags`
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filtersWidth[FilterType.eventMesh]
tags
selectedTags
numOfRowsToShow
1
tagMaxWidth
filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null
onDelete
handleDeleteTag
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
dataQa
"eventMeshSearchSelect-tags"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
300
tags
selectedTags
tagMaxWidth
"200px"
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+
+ +
+
+
+ SolaceLearningButton + 7 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant7
onClick7
dataQa5
isDisabled4
startIcon3
endIcon1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (7)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
selectedDetails.disabled
variant
"dark-outline"
dataQa
`${camelCase(selectedDetails.button)}_button}`
onClick
() => {
+								selectedDetails.onClick && selectedDetails.onClick();
+							}
startIcon
selectedDetails.accessDenied && 
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
isDisabled
!showLoadSampleButton
startIcon
!showLoadSampleButton && 
onClick
onClickLoadSamples
dataQa
loadSampleDataButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
dark-call-to-action
dataQa
ExploreOnMyOwnLink
onClick
() => {
+									dismissableCallback();
+									Mixpanel.track("Element Click", { "element-id": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });
+								}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleExploreSample
dataQa
exploreSampleButton
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
dark-call-to-action
onClick
redirectToVideos
endIcon
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!email
variant
dark-outline
onClick
onClickInviteUsers
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
selectedDetails.disabled
variant
"dark-call-to-action"
dataQa
`${camelCase(selectedDetails.button)}_button}`
onClick
() => {
+									selectedDetails.onClick && selectedDetails.onClick();
+								}
startIcon
selectedDetails.accessDenied && 
+
+ +
+
+ +
+
+
+ SolaceResponsiveItemList + 7 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep5
intg2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
containerWidth7
items7
showAll7
numOfRowsToShow5
onItemsRendered5
onItemsOverflow5
onItemsOverflowIndicatorClick5
dataQa5
columnGap1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (7)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filterContainerWidth
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filterContainerWidth
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
displayedEnvironments.map((env) => {
+						return {
+							id: env.id,
+							content: (
+								 option.value === env.id)}
+									hasTooltip={true}
+									dataQa={env.id}
+								/>
+							)
+						};
+					})
containerWidth
containerWidth
showAll
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
displayedEnvironments.map((env) => {
+								return {
+									id: env.id,
+									content: (
+										 handleDeleteTag(env.id)}
+										/>
+									)
+								};
+							})
columnGap
8
showAll
false
containerWidth
containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filterContainerWidth
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
600
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
600
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+
+ +
+
+
+ SolaceCategorizedSearch + 6 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name6
searchValue6
onSearchValueChange6
selectedCategoryValue6
onCategoryChange6
categoryOptions6
searchInputWidth5
equalButtonWidth4
categoryOptionsWidth4
onSearchInputFocus3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (6)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconCategorizedSearch"
searchValue
searchText
onSearchValueChange
handleSearchValueChanged
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconSearchAndFilter"
searchValue
searchText
onSearchValueChange
handleSearchValueChagned
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
onSearchInputFocus
() => setAutoFocusItem(false)
onSearchInputBlur
() => setAutoFocusItem(true)
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconSearchAndFilter"
searchValue
searchText
onSearchValueChange
handleSearchValueChagned
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
onSearchInputFocus
() => setAutoFocusItem(false)
onSearchInputBlur
() => setAutoFocusItem(true)
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconSearchAndFilter"
searchValue
searchText
onSearchValueChange
handleSearchValueChagned
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
onSearchInputFocus
() => setAutoFocusItem(false)
onSearchInputBlur
() => setAutoFocusItem(true)
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchInput
name
searchInput
dataQa
searchInput
placeholder
Filter by Name
layout
SolaceCategorizedSearchLayout.horizontal
categoryOptions
entityFilterOptions.length > 0 ? entityFilterOptions : []
selectedCategoryValue
selectedEntityTypeFilter
onCategoryChange
handleEntityTypeFilterChange
searchValue
searchText
onSearchValueChange
handleSearchTextChange
searchInputWidth
"280px"
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchInput
name
searchInput
dataQa
searchInput
placeholder
Filter by Name
layout
SolaceCategorizedSearchLayout.horizontal
categoryOptions
tabOptions
selectedCategoryValue
activeTab
onCategoryChange
handleTabChange
searchValue
searchText
onSearchValueChange
handleSearchTextChange
+
+ +
+
+ +
+
+
+ SolacePopover + 6 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
intg6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
maxWidth6
title6
placement5
id2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (6)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
full
title
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
handleHover(connectorType)
placement
bottom
id
`connector-card-popover-${connectorType.id}`
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
handleHover(connectorType)
placement
bottom
id
`connector-card-popover-${connectorType.id}`
maxWidth
medium
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title
placement
bottom-end
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title
placement
bottom-end
+
+ +
+
+ +
+
+
+ SolaceListItemButton + 5 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep5
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
selected5
onClick5
sx3
divider2
disableGutters1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (5)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selected
!currentTab || currentTab === "get-started"
onClick
() => {
+					history.push(TabsPath.getStarted);
+				}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selected
currentTab === "acme-retail-sample"
onClick
() => {
+					history.push(TabsPath.acmeRetail);
+				}
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }
divider
true
selected
selectedTemplateType === ConfigurationTypeId.solaceQueue
onClick
() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }
divider
true
selected
selectedTemplateType === ConfigurationTypeId.solaceClientProfileName
onClick
() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+							background: theme.palette.ux.primary.text.w10,
+							height: "100%",
+							paddingBottom: "0",
+							paddingTop: "0",
+							border: `1px solid ${theme.palette.ux.secondary.w20}`,
+							borderBottom: index === data.items.length - 1 ? undefined : "0"
+						}
disableGutters
true
selected
selected
onClick
() => setSelectedIndex(index)
+
+ +
+
+ +
+
+
+ SolaceLinearProgress + 4 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep1
mc3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant4
height4
value3
color1
dataQa1
key1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (4)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
determinate
color
learning
height
md
value
completionPercentage
dataQa
dataQa
key
dataQa
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
percent >= 99 ? "indeterminate" : "determinate"
height
sm
value
percent
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
determinate
height
sm
value
getCreationPercentage(service.creationState, service.createdTime as Date)
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
height
sm
+
+ +
+
+ +
+
+
+ SolaceEnvironmentSelectChip + 4 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep1
intg2
mc1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name4
value4
onChange4
options4
dataQa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (4)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
MEMListEnvironmentSelector
value
selectedEnvironment?.environmentId
onChange
({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)
options
environmentOptions
dataQa
REMHeaderEnvironmentSelector
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environment
value
selectedEnvironment.environmentId
onChange
handleSetEnvironment
options
environmentOptions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environment
value
selectedEnvironment.environmentId
onChange
handleSetEnvironment
options
environmentOptions
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environment
value
selectedEnvironment.environmentId
onChange
handleSetEnvironment
options
environmentOptions
+
+ +
+
+ +
+
+
+ SolaceTag + 4 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep4
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label4
fillColor2
labelColor2
variant1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (4)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]
variant
CHIP_VARIANT.OUTLINED
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]
fillColor
CHIP_COLORS.infoBgBlue
labelColor
CHIP_COLORS.DARK_GREY
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]
fillColor
CHIP_COLORS.infoBgBlue
labelColor
CHIP_COLORS.DARK_GREY
+
+ +
+
+ +
+
+
+ SolaceAttributeValuePairForm + 4 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep2
intg1
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name4
avpList4
labelForKeys4
labelForValues4
id3
enableRequiredKeyFieldIndicator3
onAVPListUpdate3
avpKeyValidationCallback2
avpValueValidationCallback2
keyIsRequiredMessage2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (4)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
avpList
value || []
labelForKeys
"Value"
labelForValues
"Description"
avpKeyValidationCallback
validateEnumKeys
avpValueValidationCallback
validateEnumValues
enableRequiredKeyFieldIndicator
true
keyIsRequiredMessage
Enumeration value is required
onAVPListUpdate
(e) => {
+										onChange(e);
+									}
emptyFieldDisplayValue
-
hasErrors
!!error
helperText
error ? getErrorMessage(error) : null
avpListMaxHeight
enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined
virtualizedAvpListOption
enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD
+											? undefined
+											: {
+													height: VIRTUALIZED_LIST_HEIGHT,
+													increaseViewportBy: 50,
+													initialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD
+											  }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"enumerationVersion[values]"
name
"enumerationVersion[values]"
avpList
enumerationVersion.values
labelForKeys
"Value"
labelForValues
"Description"
enableRequiredKeyFieldIndicator
true
emptyFieldDisplayValue
-
readOnly
true
avpListMaxHeight
enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined
virtualizedAvpListOption
enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD
+											? undefined
+											: {
+													height: VIRTUALIZED_LIST_HEIGHT,
+													increaseViewportBy: 50
+											  }
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
targetHeaderMapping
avpList
values
labelForValues
() as unknown as string
labelForKeys
en.connectors.targetHeaderMapping.targetHeader
onAVPListUpdate
(avpList) => setValues([...avpList])
disableReorder
true
keyRequired
false
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
avpList
value || []
labelForKeys
Key
labelForValues
Value
enableRequiredKeyFieldIndicator
true
enableRequiredValueFieldIndicator
true
readOnly
false
keyRequired
true
keyIsRequiredMessage
Required Field!
avpKeyValidationCallback
(currentInput, values) => keyValidator(currentInput, values)
avpValueValidationCallback
(currentInput, values) => valueValidator(currentInput, values)
onAVPListUpdate
(e) => onChange(e)
hasErrors
!_.isEmpty(error)
helperText
error?.message
+
+ +
+
+ +
+
+
+ SolaceStepper + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep1
intg2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
steps3
activeStep3
setActiveStep3
onClose3
onSubmit3
submitLabel3
onSecondarySubmit2
secondarySubmitLabel2
disableSubmit1
stepContentOverflow1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (3)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
steps
steps
activeStep
activeStep
setActiveStep
handleSetActiveStepRequest
onClose
() => history.push("/ep/designer")
onSubmit
handleSubmit
submitLabel
messages.aiWizardButton.submit
disableSubmit
isLoading
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
steps
renderSteps()
activeStep
activeStep
setActiveStep
(step) => setActiveStep(step)
onClose
onClose
onSubmit
onSubmit
onSecondarySubmit
onSecondarySubmit
submitLabel
submitLabel
secondarySubmitLabel
activeStep === steps.length - 1 ? secondarySubmitLabel : undefined
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
steps
steps
activeStep
activeStep
setActiveStep
(step) => setActiveStep(step)
onClose
() => discardChangesAndClose()
onSubmit
() => onSubmit(true)
secondarySubmitLabel
activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined
onSecondarySubmit
() => onSubmit(false)
submitLabel
en.connectors.buttons.createDeploy
stepContentOverflow
showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto
+
+ +
+
+ +
+
+
+ SolaceFileUploader + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
intg3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
onFileChange3
maxFiles2
errorText2
dataQa2
readOnly2
fileNames2
accept1
id1
label1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (3)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxFiles
1
accept
{
+								"application/json": [".json"]
+							}
onFileChange
(files) => {
+								setUploadDialogErrorText("");
+								setFileImported(files);
+							}
errorText
uploadDialogErrorText
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
props.id
label
props.label
dataQa
sslKeyStoreFileUploader
maxFiles
1
onFileChange
async (files) => props.onChange(await fileUpload(files))
readOnly
props.readOnly
fileNames
props.value ? [""] : []
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
sslKeyStoreFileUploader
onFileChange
handleFileChange
readOnly
readOnly
fileNames
clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []
errorText
solaceValidationErrors.sslKeyStore
+
+ +
+
+ +
+
+
+ SolaceFeatureTag + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
intg3
+ +

Common Props

+ + + + + + + + + + + + + + + +
Prop NameOccurrences
text3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (3)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
text
beta
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
text
beta
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx:undefined

+ + + + + + + + + + + + + + + +
Prop NameValue
text
Experimental
+
+ +
+
+ +
+
+
+ SolaceToasts + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep1
intg1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
message2
open2
action2
severity2
onClose2
autoDismiss1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
toast.message
open
toast.open
action
toast.action
severity
toast.severity
autoDismiss
toast.autoDismiss
onClose
removeToast
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
true
message
message
severity
severity as SolaceToastsProps["severity"]
onClose
handleCloseSnackbar
action
action as SolaceToastsProps["action"]
+
+ +
+
+ +
+
+
+ SolaceDatePicker + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + +
MFEUsages
ep1
saas1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
value2
onChange2
dataQa1
onClear1
variant1
disableFuture1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
endOfLifeDate
onChange
handleEndOfLifeDateChange
dataQa
endOfLifeDateSelect
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClear
() => clearSelectedDate()
onChange
setSelectedDate
variant
SolaceDatePickerVariant.FORMAT_MONTH_YEAR
disableFuture
true
value
selectedDate
+
+ +
+
+ +
+
+
+ SolaceSplitPane + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
minSize2
defaultSize2
maxSize2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
minSize
500
defaultSize
500
maxSize
-700
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
minSize
500
defaultSize
500
maxSize
Math.max(500, leftPanelMaxWidth)
+
+ +
+
+ +
+
+
+ SolaceTextDiff + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
text12
text22
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
text1
runtimeAttributes
text2
designerAttributes
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
text1
schemaBody
text2
secondSchemaBody
+
+ +
+
+ +
+
+
+ SolaceJsonSchemaForm + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
formData2
formItem2
formOptions2
onChange2
transformError2
transformWidget2
readOnly1
disabled1
ajvClass1
transformTitle1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
formData
formData
formItem
{
+					id: "restConsumerJsonSchemaForm",
+					schema: cloneDeep(schema)
+				}
formOptions
{
+					isHidden: (fieldType) => {
+						switch (fieldType) {
+							case "submitButton":
+							case "title":
+							case "description":
+								return true;
+							default:
+								return false;
+						}
+					},
+					tagName: "div"
+				}
readOnly
!onChange
disabled
!enabled
onChange
onChange
transformError
(error: any) => {
+					const { name, message } = error;
+					let newMessage;
+
+					if (name === "required") {
+						newMessage = "Required. Enter a value";
+					} else if (name === "pattern") {
+						newMessage = `Value ${message}`;
+					} else if (name === "const" || name === "oneOf") {
+						newMessage = ""; // hide errors the user can do nothing about
+					} else if (message) {
+						newMessage = `Value ${message}`;
+					} else if (name) {
+						newMessage = "Value is invalid";
+					}
+
+					error.message = newMessage;
+
+					return error;
+				}
transformWidget
(props) => {
+					const newProps = { ...props };
+
+					newProps.label = messages[newProps.label] ?? newProps.label;
+					newProps.title = messages[newProps.title] ?? newProps.title;
+
+					if (newProps.schema?.const !== undefined) {
+						newProps.readonly = true;
+					}
+
+					if (!onChange && newProps.id === "restConsumerJsonSchemaForm__oneof_select") {
+						newProps.readonly = true;
+					}
+
+					return newProps;
+				}
ajvClass
Ajv2019
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
formData
formData
formItem
{
+				id: "solaceQueueForm",
+				schema: cloneDeep(schema)
+			}
formOptions
{
+				order: getOrder(schema.properties),
+				isHidden
+			}
onChange
handleOnChange
transformError
(error: any) => {
+				const { name, message, property } = error;
+				let newMessage;
+
+				if (name === "required") {
+					newMessage = "Required. Enter a value";
+				} else if (name === "pattern") {
+					// display any available placeholder value if it's a pattern error
+					if (property === ".queueName" && schema.properties.queueName.placeholder) {
+						newMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;
+					} else if (property === ".deadMsgQueue" && schema.properties.deadMsgQueue.placeholder) {
+						newMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;
+					} else {
+						newMessage = `Value ${message}`;
+					}
+				} else if (message) {
+					newMessage = `Value ${message}`;
+				} else if (name) {
+					// i.e. no detail message
+					newMessage = "Value is invalid";
+				}
+
+				error.message = newMessage;
+
+				return error;
+			}
transformTitle
(props) => transformProps(props, showPropertyNames)
transformWidget
(props) => transformProps(props, showPropertyNames)
+
+ +
+
+ +
+
+
+ SolaceStackLabel + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
saas2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id2
required2
htmlForId1
bold1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (2)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`environment-type-label`
htmlForId
`isProduction`
bold
true
required
true
+
+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!!required
id
id ?? name.toLowerCase()
+
+ +
+
+ +
+
+
+ SolaceMenuItem + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
key1
...1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (1)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`graphContextMenu_${menuItem.id ?? index}`
...
menuItem
+
+ +
+
+ +
+
+
+ SolaceDonutChart + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
ep1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
data1
showTooltip1
icon1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (1)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data
getPieChartData()
showTooltip
true
icon
+
+ +
+
+ +
+
+
+ SolaceEmptyStateBanner + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
intg1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
bannerImage1
subtitle1
title1
description1
primaryButton1
secondaryButton1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (1)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bannerImage
subtitle
en.connectors.labels.emptyState.subtitle
title
en.connectors.labels.emptyState.title
description
en.connectors.labels.emptyState.description
primaryButton
{
+				label: en.connectors.buttons.checkoutAvailableConnectors,
+				onClick: onPrimaryButtonClick,
+				dataQa: "connectors-empty-state-primary-button"
+			}
secondaryButton
{
+				label: en.connectors.buttons.exploreOnMyOwn,
+				onClick: onSecondaryButtonClick,
+				dataQa: "connectors-empty-state-secondary-button"
+			}
+
+ +
+
+ +
+
+
+ SolaceGridListMultiSelect + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + +
MFEUsages
mc1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id1
items1
headers1
actions1
rowMapping1
gridTemplate1
dataQa1
selectedRowIds1
onSelection1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Instances (1)

+ +
+

File: /Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx:undefined

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
services
items
services ?? []
headers
headers
actions
actions
rowMapping
rowMapping
gridTemplate
gridTemplate
dataQa
services
selectedRowIds
selectedIds
onSelection
handleRowSelection
+
+ +
+
+ +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFEComponent UsagesMRC Version
ep241213.7.3
intg49413.7.3
mc446^13.7.3
saas695^13.7.3
+
+ + +
+

Unused Components (12)

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component NamePath
WarningText/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/WarningText.tsx
HelperText/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/HelperText.tsx
SolaceStepperFooter/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx
FormChildBase/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/FormChildBase.tsx
SolaceAttributeValuePair/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx
ErrorText/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/ErrorText.tsx
SolaceAutoCompleteTextField/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx
SolaceTree/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTree.tsx
SolaceNotificationCounter/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceNotificationCounter.tsx
NoAccess/Users/ishanphadte/Documents/Github/maas-react-components/src/components/NoAccess.tsx
SolaceCardHeader/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCardHeader.tsx
SolaceLearningBanner/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceLearningBanner.tsx
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + +
+
+
+ ep + 20 unused components +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component Name
WarningText
SolaceStackLabel
HelperText
SolaceStepperFooter
FormChildBase
SolaceAttributeValuePair
ErrorText
SolaceAutoCompleteTextField
SolaceTree
SolaceNotificationCounter
NoAccess
SolaceGridListMultiSelect
SolaceEmptyStateBanner
SolaceBreadcrumb
SolaceCardHeader
SolaceBackDrop
SolaceFeatureTag
SolaceLearningBanner
SolaceFileUploader
SolacePopover
+
+
+ +
+
+
+ intg + 29 unused components +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component Name
SolaceLinearProgress
SolaceTextDiff
SolaceJsonSchemaForm
WarningText
SolaceStackLabel
HelperText
SolaceStepperFooter
FormChildBase
SolaceAttributeValuePair
SolaceLearningButton
SolacePicker
ErrorText
SolaceToggleButtonGroup
SolaceAutoCompleteTextField
SolaceTree
SolaceDatePicker
SolaceNotificationCounter
NoAccess
SolaceMenuItem
SolaceSplitPane
SolaceGridListMultiSelect
SolaceListItemButton
SolaceDrawer
SolaceTag
SolaceCardHeader
SolaceErrorBox
SolaceCategorizedSearch
SolaceLearningBanner
SolaceDonutChart
+
+
+ +
+
+
+ mc + 42 unused components +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component Name
SolaceToasts
SolaceTextDiff
SolaceJsonSchemaForm
WarningText
SolaceStackLabel
HelperText
SolaceStepper
SolaceStepperFooter
FormChildBase
SolaceAttributeValuePair
SolaceAttributeValuePairForm
SolaceLearningButton
SolacePicker
ErrorText
SolaceSelectAutocompleteResponsiveTags
SolaceAutoCompleteTextField
SolaceCodeEditor
SolaceTree
SolaceDatePicker
SolaceNotificationCounter
NoAccess
SolaceTruncatableLink
SolaceMenuItem
SolaceListItem
SolaceSplitPane
SolaceListItemButton
SolaceList
SolaceEmptyStateBanner
SolaceDrawer
SolaceTag
SolaceCardHeader
SolaceBackDrop
SolaceTable
SolaceFeatureTag
SolaceCategorizedSearch
SolaceLearningBanner
SolaceResponsiveItemList
SolaceFileUploader
SolaceSearchAndFilter
SolaceDonutChart
SolaceChip
SolacePopover
+
+
+ +
+
+
+ saas + 35 unused components +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component Name
SolaceToasts
SolaceLinearProgress
SolaceTextDiff
SolaceJsonSchemaForm
WarningText
HelperText
SolaceStepper
SolaceStepperFooter
FormChildBase
SolaceAttributeValuePair
SolaceLearningButton
ErrorText
SolaceSelectAutocompleteResponsiveTags
SolaceAutoCompleteTextField
SolaceCodeEditor
SolaceTree
SolaceNotificationCounter
NoAccess
SolaceTruncatableLink
SolaceMenuItem
SolaceSplitPane
SolaceGridListMultiSelect
SolaceListItemButton
SolaceEnvironmentSelectChip
SolaceEmptyStateBanner
SolaceTag
SolaceCardHeader
SolaceFeatureTag
SolaceCategorizedSearch
SolaceLearningBanner
SolaceResponsiveItemList
SolaceFileUploader
SolaceSearchAndFilter
SolaceDonutChart
SolacePopover
+
+
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/reports/mrc-maas-ui-usage-report.json b/tools/archived-tools/mrc-usage-report-maas-ui/reports/mrc-maas-ui-usage-report.json new file mode 100644 index 000000000..e63110266 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/reports/mrc-maas-ui-usage-report.json @@ -0,0 +1,184069 @@ +{ + "generatedAt": "2025-07-08T20:26:29.218Z", + "config": { + "mfes": [ + "ep", + "intg", + "mc", + "saas" + ], + "mrcPath": "/Users/ishanphadte/Documents/Github/maas-react-components", + "outputDir": "/Users/ishanphadte/Documents/GitHub/maas-react-components/tools/mrc-usage-report-maas-ui/reports", + "outputFormat": [ + "json" + ], + "mrcSourceType": "local", + "mrcGithubUrl": "https://github.com/SolaceDev/maas-react-components", + "mrcGithubBranch": "main" + }, + "mrcVersions": { + "ep": "13.7.3", + "intg": "13.7.3", + "mc": "^13.7.3", + "saas": "^13.7.3" + }, + "componentStats": [ + { + "componentName": "SolaceButton", + "totalUsages": 702, + "usagesByMfe": { + "ep": 426, + "intg": 67, + "mc": 100, + "saas": 109 + }, + "commonProps": [ + { + "name": "variant", + "count": 700 + }, + { + "name": "onClick", + "count": 514 + }, + { + "name": "dataQa", + "count": 350 + }, + { + "name": "href", + "count": 192 + }, + { + "name": "isDisabled", + "count": 141 + }, + { + "name": "title", + "count": 81 + }, + { + "name": "dense", + "count": 55 + }, + { + "name": "key", + "count": 47 + }, + { + "name": "id", + "count": 32 + }, + { + "name": "data-qa", + "count": 9 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/ToastAction.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "jsonSchemaSpecLink" + }, + { + "name": "href", + "type": "string", + "value": "https://json-schema.org/specification.html" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "commandBlockCopyButton" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseMessagingServiceDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenMessagingServiceDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`${protocol}//${host}/environments`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][addSchemaRegistry]" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddSchemaRegistry" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "schemaAuthArray?.length > 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDownload(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!Object.values(namingStrategy).includes(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "onOpenVersion ?? onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "returnToApplicationButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://www.solace.com" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "cancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkToApplicationVersionDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleUndo" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleCheckbox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, \"_self\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learningCenterLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(\"/learningCenter\", \"_self\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/environments.htm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "lcVideoTutorialsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"videoTutorials\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "trainingCoursesLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"courses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "epOverviewDocsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"overviewDocs\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeConfigSidePanelButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"closeDetailsDialog\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner(version)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"cancelAddEventToApplication\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"saveAddEventToApplication\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner?.(version)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddToApplication(version)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-edit`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onEditName(entityType, index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(entityType, index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-viewall-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-add`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAdd(entityType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/runtime`);\n\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/designer`);\n\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApply" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasUnsavedChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + }, + { + "name": "key", + "type": "expression", + "value": "action.id" + }, + { + "name": "...", + "type": "spread", + "value": "action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onVersionAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "addVersionButton" + }, + { + "name": "title", + "type": "string", + "value": "Add New Version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(false)" + }, + { + "name": "title", + "type": "string", + "value": "Hide Version List" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(true)" + }, + { + "name": "title", + "type": "string", + "value": "Show Version List" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "changeVersionState" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onChangeVersionState" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"customAttributeDefinitionsEditorButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenCustomAttributeDialog()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateBackToOrigin" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "underline", + "type": "string", + "value": "none" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleStartOverriding" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetOverrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "variable", + "value": "disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitAndCloseVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionAndCloseButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createVersion" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "configureVarButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "removeDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemove(index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicSubscriptions\", \"link\")" + }, + { + "name": "data-qa", + "type": "string", + "value": "infoBlurbLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "setKafkaPreferences" + }, + { + "name": "onClick", + "type": "expression", + "value": "onSetKafkaPreferences ? onSetKafkaPreferences : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"More Actions\"" + }, + { + "name": "...", + "type": "spread", + "value": "buttonProps" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "latestGraphUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "action-btn-inline-banner" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isButtonDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "onButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "graphEmpty" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(filterType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}-delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteFilter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters(true, true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "latestJarFileLink" + }, + { + "name": "href", + "type": "expression", + "value": "eventManagementAgentResources.version.needUpgradeLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompleteInstallationSetupClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "comnpleteInstallationSetupButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSkipButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleCopyFile(evt, details, emaType, copyButtonId)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/releases" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/error-id-help" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "openMessagingServiceDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyFile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "EMA_PREREQUISITES_LINK" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateRuntimeAgent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewModeledEventMeshes" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewModeledEventMeshes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => removeMessagingService(messagingService)" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeMessagingService" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "agentSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDownloadConnectionFile(item.id, item.name)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleCollectData(selectedMessagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "runDiscoveryScan" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDiscoveryScanButtonDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + }, + { + "name": "key", + "type": "expression", + "value": "\"addMessageService\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewConnectionDetailsButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewConnectionDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteMessagingService(selectedMessagingService)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveVersionEntity(entityVersion.id)" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeEntityFromListButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to manage associations" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "backToGraphView" + }, + { + "name": "dataQa", + "type": "string", + "value": "backToGraphView" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!item?.auth?.canOpenModelEventMesh" + }, + { + "name": "onClick", + "type": "variable", + "value": "onViewDetail" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewMEMDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMem" + }, + { + "name": "dataQa", + "type": "string", + "value": "createModeledEventMeshButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventManagementAgentConnections" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMemDialogOpen" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => showObjectRelationshipsForFirstObjectCallback?.()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshEventMeshDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"designerTool\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshEventMeshDetails()" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest objects and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToMessagingServiceTab" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAutoCollectDialogOpen(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setRefresh(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "title", + "type": "string", + "value": "Refresh all audit results" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "hideSecondaryPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go Back" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCloseDetails" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go to Selection Panel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDeselectAll" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImportJob-close" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDismissJob(jobId)" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(eventDetail.parent, eventDetail)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompareVersions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"compareVersionsBtn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBack" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"backCompareConfigDialog\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewConfiguration(isSchemaParent)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullConfiguration\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventBrokerConnections" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshAuditResult()" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAll" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"applicationDomain\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "buttonVariant || \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "chooseImportOptionButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\thandleImport(\n\t\t\t\t\t\t\tauditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent\n\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionSelection(applicationVersion)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeselect" + }, + { + "name": "dataQa", + "type": "string", + "value": "validationErrorDeselect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/runtime/modeled-event-meshes/${eventMeshId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "designerLink" + }, + { + "name": "dataQa", + "type": "string", + "value": "designerLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"/ep/catalog\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "catalogLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenCelebratoryDialog(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImport-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "action" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoTagAction(request)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetToDefault" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkHref" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDeleteTemplateDialog(true, row)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTemplateButton" + }, + { + "name": "title", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTemplateButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelTemplate" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onSave" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveTemplate" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenAddToApplicationModal(selectedEvent)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(title)}-${secondaryAction.completed}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsecondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);\n\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "secondaryAction?.disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpEMA\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpMEM\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "sampleApplicationsDomainsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableText.solace.links.sampleDocs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"design\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "dismissExploreSample" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thandleOpenLink(\"videoTutorials\");\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "howToVideosButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUserManagement" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreTooltipLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreCardLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleModeSelection(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError ||\n\t\t\t\t\t\t(templates?.length && (templateNotFound || !!templateOutOfSync)) ||\n\t\t\t\t\t\ttemplateHasSchemaErrors ||\n\t\t\t\t\t\t!!errors[FormNameConfiguration]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(type, header)" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeRequestHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addQueueBinding" + }, + { + "name": "isDisabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideQueueBinding" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearOverrideQueueBinding" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveConfiguration()" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeQueueBinding" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRequestHeaderDialog(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRequestHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnAddQueueBinding" + }, + { + "name": "dataQa", + "type": "expression", + "value": "isGlobal ? \"addQueueBinding\" : \"overrideQueueBinding\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleOnDelete" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowConsumerType(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowConsumerType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "showConsumerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowReset" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverrideRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowOverride" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRestConsumer(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "showRestConsumer || !configurationTypeId || !isEditing" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowRestConsumer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "selectAnotherTemplateAction" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSelect" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isSelectDisabled" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"customizeAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCustomize" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"refreshAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant || \"text\"" + }, + { + "name": "onClick", + "type": "expression", + "value": "action.onClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "custom-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.queueConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "template-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "messagesTemplate.solaceQueue.infoBlurb.linkHref" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setModeSelectionToConfirm(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError || templateNotFound || !!templateOutOfSync" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConsumer" + }, + { + "name": "dataQa", + "type": "string", + "value": "addConsumerButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "expression", + "value": "messages[configType].emptyLinkref" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetUserAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "openApplicationDomainButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"sampleDocs\", \"link\")" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(\"clickSampleDocumentationLink\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "importAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => importDomainsFileRef.current?.click()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"enumerations\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoUpload(valuesToUndo)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "fileUploading" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersion[values]-importFromFileButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit((data) => {\n\t\t\t\t\t\t\t\tif (!validateEnumValueSets()) {\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst preparedData = prepareEntityForBackend(data);\n\n\t\t\t\t\t\t\t\treturn handleSaveEntityAndVersion(preparedData);\n\t\t\t\t\t\t\t})" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEnumeration.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToSelectedApplicationDomain()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainGraphSidePanel-details-editBtn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelCustomAttributesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || isWritingEpCore || saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveCustomAttributesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}NodeSidePanelCustomAttributeEditButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClickCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave(existingLatestNonRetiredVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || saveInProgress || isWritingEpCore" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClosePanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "leftSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit Appearance" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAppearance" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-appearance-button" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => goToComponentLists?.()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest versions and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"Add To Graph\"" + }, + { + "name": "title", + "type": "string", + "value": "Add To Graph" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!nodeIdWithUnsavedChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "findOnGraph" + }, + { + "name": "key", + "type": "expression", + "value": "\"findOnGraph\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "searchButtonDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "key", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchPanelCollapseButton" + }, + { + "name": "title", + "type": "string", + "value": "Collapse" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleNavigateToComponentList(e, entityType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEventApis" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventApisButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "selectedEventApiVersionIds.includes(versionData.id) ? \"text\" : \"outline\"" + }, + { + "name": "id", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "key", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? \"remove\" : \"add\", versionData)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t\tonFilterButtonClicked(item);\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterButton-${item.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApi.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "source === \"application\" ? en.application.links.extension : en.eventApi.links.extension" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "version === \"2.5.0\" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.asyncApi" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`planDeleteButton-${index}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onPlanDelete(index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAddPlanButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "planFields.length === 5" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAddPlanClicked" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpen(true)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.approvalTypes.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApiProduct.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createEventApiProductButton" + }, + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createSchema.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTriggerVersionDuplication(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageReferencedSchemas" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "revokeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "approveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddButtonClick" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!editableSubscriptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.add`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.${index}.remove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteButtonClick(consumerId, index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "subscription === \"\" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscriptionAddButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSuggestedEvents(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.download" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${name}-configDownload`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\tdownload(new Blob([configuration]), getConfigurationName(name), \"application/json\");\n\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleInitiateOverride" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-overrideConfigButton`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-clearOverrideButton`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configurationRemove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleEventVersionSelect(e, item)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleEventsExpand" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sortedItems.length === 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFindEventsClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "launchUserAccessDialog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "getRrbacRoles.isLoading || getAttributeAssignments.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isSaveButtonDisabled()" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(onFormSubmit)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTopicDomain" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddTopicDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromUI(index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromBackend(topicDomain.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editApplicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "title", + "type": "expression", + "value": "\"Launch link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTopicAddressResourceLink" + }, + { + "name": "href", + "type": "variable", + "value": "resource" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Edit link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Delete link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDelete" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDelete()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesAdd" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kafkaEvents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEvent.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemas" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemasForPrimitiveType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasForPrimitiveTypeButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`remove${keyOrValue}SchemaButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenQuickCreateSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"quickCreateSchemaButton\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "backButton" + }, + { + "name": "title", + "type": "string", + "value": "Back" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "notifyParentOfSchemaVersionSelection" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectPrimitiveTypeButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to add subscription" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleManageSubscriptions(currentSubscription, consumerName)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Quick Create Event" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDialog(\"quickCreateEvent\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "quickCreateEventButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tremove();\n\t\t\t\t\t\t\t\tremoveToast();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEvents" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === SidePanel.manageEvents" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "data-qa", + "type": "string", + "value": "topicAddressHelpCloseButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Source}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.source ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Destination}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.destination ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSendAllRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "sendRequestButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertFormValuesForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createApplication.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddToEnvironmentData({ ...eventBrokerRecord })" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-addApplicationButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "declinedRequests.length + requestsToCreate.length === 0 ? \"outline\" : \"call-to-action\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageRequestButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenRequestPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`sub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.sub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`pub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.pub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEventVersionSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonAddSubscription(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageRelationshipBtnClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageLinksBtn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dataQa + \"-expandAll\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleRequestsExpand" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isValid || !isDirty" + }, + { + "name": "onClick", + "type": "expression", + "value": "mode === \"existingConsumer\" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)" + }, + { + "name": "data-qa", + "type": "string", + "value": "addSubscriptionButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "gotoRuntimeTab" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "launchRDPDeploymentDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRDPToBrokerButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetIsEditing(true);\n\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onToggleInputBType" + }, + { + "name": "title", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "startIcon", + "type": "expression", + "value": "showSparkle ? : undefined" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${id}_filterToggleButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClearFilterClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterToggleButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.READ_ONLY)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.CREATE)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.EDIT)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "removeRelation" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRelation(relation)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAdd" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add_${inputOrOutput}_button`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(handle)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "openUploadModal" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetReImport(true);\n\t\t\t\t\t\t\t\topenUploadModal();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-edit-constant-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetConstantField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyConstantEdit" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetCustomHeaderField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-custom-header-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyHeaderEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`delete-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetIdToDelete(id);\n\t\t\t\t\t\t\tsetShowDeleteDialog(true);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConstant" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "startIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMapWithAI" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-constant-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddConstantDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddHeaderDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSensitiveField ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSensitiveField ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSensitiveField(!showSensitiveField)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e: any) => onClick && onClick(e)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "expression", + "value": "onDropPropertyClick(label)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "zeroStateDocLink" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(CONNECTOR_AVAILABLE)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeployState" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openConnectorFlowButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${serviceDetails?.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRowIds([])" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.buttons.close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showClientSecret ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showClientSecret ? \"showClientSecretButton\" : \"hideClientSecretButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowClientSecret(!showClientSecret)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslKeyStorePassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslKeyStorePassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslKeyStorePassword(!showSslKeyStorePassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t? connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t: en.connectors.buttons.integrationHub.hrefLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/ToastAction.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "intg-toast-action" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRedirect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(action.title)}`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "href", + "type": "variable", + "value": "href" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "editButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createconnector" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "save" + }, + { + "name": "dataQa", + "type": "string", + "value": "save" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleDownloadLog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createAgent" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDismiss()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant ?? \"text\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + }, + { + "name": "href", + "type": "expression", + "value": "action.href ? action.href : undefined" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, helpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "help-no-access" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, secondaryHelpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "secondary-help-no-access" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Configure-Message-Spools.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_deleteprotection" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_service_deletion_protection.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_migration" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_dist_tracing" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-dt-for-cloud.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewPassword" + }, + { + "name": "title", + "type": "expression", + "value": "showPassword ? t({ id: \"id_hide_password\", message: \"Hide password\" }) : t({ id: \"id_view_password\", message: \"View password\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_copy\", message: \"Copy\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/mesh-manager/${eventMesh.id}`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_event_mesh" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-scaleup-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewScaleUpLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "type", + "type": "string", + "value": "button" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ggs_tryme.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTryMe" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenTryMe" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectLibrary(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLibraryDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelection(item)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "open-ticket" + }, + { + "name": "href", + "type": "expression", + "value": "buildSupportURL(isSAP, service.errorId, service.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/distributed-tracing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUpgradeDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/upgrade-event-broker.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "onOpen" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-upgrade-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewUpgradeLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tutorial.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "dw.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.tutorial" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tconst fileInput = fileInputRef?.current;\n\t\t\t\t\t\tif (fileInput) {\n\t\t\t\t\t\t\tif (fileInput.value) {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tfileInput.value = \"\";\n\t\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t\t// that's fine\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfileInput.click();\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleCancel(idx)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSave(idx)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddGroup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowCreateHostname" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-hostname" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-hostnames.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDisable" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_semp_request" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateEndpoint" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-endpoint" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggle" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasERPLimit || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_erp_event_addon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/erp-add-on.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_mate_link_encryption" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || mateLinkEncryption.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !canEnable" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableLdapManagement" + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-ldap-management" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAccessShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-access" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerClientProfiles" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !curClusterName" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowClusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-cluster-name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/edit-cluster-name.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || isDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMessageSpoolSize" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-message-spool-size" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "distributedTracingStatus == \"error\" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-disable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-enable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerTelemetryProfiles" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCheckConnectionStatus" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isConfigured || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleConfigureDataCollection" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-deploy" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding-create" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || syslogs.length >= 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "usernames.length === 0 || !allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowRotatePasswords" + }, + { + "name": "dataQa", + "type": "string", + "value": "rotate_passwords" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnable" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoring-enable" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !!configuringMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-open-broker-manager" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-client-auth" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowAuthentication" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableStandardDomainCertAuth" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddClientCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-client-cert-auth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddDomainCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-domain-cert-auth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-create" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(path)) || \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\ttrack(TRACK_ELEMENT_CLICK, { \"element-id\": dataQa });\n\t\t\t\t\t\t\topenWindow(getBrokerWebUI(path), serviceId);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "truststoreUri ?? \"https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "open-broker-manager" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI()) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "openBrokerManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_service" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateService" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_user_access" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRetry" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "service.name" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: \"status\" }))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createService" + }, + { + "name": "dataQa", + "type": "string", + "value": "createService" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createServiceDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "cloning-documentation" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/cloud-clone-service.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCustomize" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "reset" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetPort" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_services" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_pick_service_type.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_cloud" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/choose-cloud-provider.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_regions" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_regions.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!ssoBrokerEnabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageBrokerButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleViewSettingMapping" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGotoUserGroups" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "hyperLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "aupIsLoading" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAgree" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "id", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/event-management-agents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=environment" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-enabled`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thistory.push(`/ep/runtime/templates`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentTypeInfo\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentsInfo\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "buttonEventManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/templates" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "createEnvButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCreateEnvClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfChangesDone()" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfSaveDisabled()" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveProfileButton" + }, + { + "name": "id", + "type": "string", + "value": "saveButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApplyButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave" + }, + { + "name": "onClick", + "type": "function", + "value": "() => saveNotifyPreferences()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLess" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGroupMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "ugCount <= 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"searchIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "id", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => editSSOConfiguration()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasLoginSubdomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setHideSecretKey((state) => !state)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[hideSecretKey ? \"showKey\" : \"hideKey\"]" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => updateSsoConfiguration({ state: \"enabled\" })" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "id", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!haveStagedChangesToSave" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "testSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "testSsoConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleSsoSetup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "setupSsoButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "setUpSsoButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.accountSettings.learnMoreSSODoc" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadAuditLogs" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadAuditLogsJsonLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRow(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "logDetailsCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"setup-idp-link\", \"link\")" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGroupClaimHelpLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!claimId" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canDiscardChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave || !(canDiscardChanges || !isEnabled)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelAddMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelAddClaimMapping" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!groupMappingState ||\n\t\t\t\t\t\tselectedUserGroups.length < 1 ||\n\t\t\t\t\t\t!claimValuesMapping ||\n\t\t\t\t\t\tclaimValueError ||\n\t\t\t\t\t\tclaimValuesMapping.trim().length < 1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addGroupMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "claimMappingToEdit !== -1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelClaimMappingEditHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => saveMappingDetails(rowData.id)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormCancel" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormSubmit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSaveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceCloudStatus\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/users`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestLimitChangeDialogOpen(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/support/question`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "en.overview.eventPortalSection.objectCountHelpLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/service-limits`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestUpgradeDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAdvancedSettingsHidden((x) => !x)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deleteAccountButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsDeleteAccountDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sendEmailButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!email.isValid" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateToLogin" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-notifications\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "stopNotification" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || mutating" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenConfirmationDialog(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscardChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "NotificationIsActive ? \"updateNotifications\" : \"activateNotifications\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSubmission" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-email-integrations\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com/contact/" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.contactSupport" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"supportPage\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventPortalCloudEma\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "always" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tokenManagementHelpLink\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCreateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasMaxNumberOfTokens" + }, + { + "name": "dataQa", + "type": "string", + "value": "createApiTokenButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyToken" + }, + { + "name": "dataQa", + "type": "string", + "value": "copyTokenButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceOpenAPIV2\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "mode === \"create\" ? \"text\" : \"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createTokenIsLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTokenBtn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onRegenerateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "regenerateTokenButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/user-settings/notify-settings`)" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationSettingsButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.settings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refreshNotificationSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refetchNotifications()" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "markAllNotificationsReadButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => markAllRead()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${header.key}-copy`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => navigator.clipboard.writeText(header.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "update" + }, + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-update`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUpdate(item)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "`/services/${item.serviceId}`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tracingDestinationLink\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingProfile.infoMessage.link.href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "viewServicesButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSynchTracingDialog(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingLimits.infoMessage.link.href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "tracingDestinationCreationIsDisabled ? \"text\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "tracingDestinationCreationIsDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTracingDialog({ mode: Mode.Create, isOpen: true })" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTracingProfile" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceTypography", + "totalUsages": 667, + "usagesByMfe": { + "ep": 273, + "intg": 129, + "mc": 74, + "saas": 191 + }, + "commonProps": [ + { + "name": "variant", + "count": 338 + }, + { + "name": "sx", + "count": 73 + }, + { + "name": "fontWeight", + "count": 28 + }, + { + "name": "mb", + "count": 23 + }, + { + "name": "id", + "count": 23 + }, + { + "name": "mt", + "count": 20 + }, + { + "name": "ml", + "count": 18 + }, + { + "name": "component", + "count": 18 + }, + { + "name": "key", + "count": 17 + }, + { + "name": "display", + "count": 16 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "color", + "type": "expression", + "value": "bulkMoveLimitExceeded ? \"error\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "marginTop", + "type": "number", + "value": "0.5" + }, + { + "name": "marginBottom", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingBottom", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mb", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "sx", + "type": "expression", + "value": "fromGraphView ? { color: \"text.secondary\" } : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "messageDetailsAddEvents" + }, + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginBottom: 1, color: ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabel\"" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "expression", + "value": "selected && 500" + }, + { + "name": "pl", + "type": "expression", + "value": "imageComponent ? 2 : 5.25" + }, + { + "name": "pr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.brand.w30 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "width", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: invertTextColor }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "showGraphic ? 500 : \"100%\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: invertTextColor }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "fontSize", + "type": "expression", + "value": "`24px`" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionPopup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionPopup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "style", + "type": "object", + "value": "{ marginBottom: \"16px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`filtername-${index}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-template`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"warning\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ ml: 1 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_fieldName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_propertyType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "config.key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"apiErrorResponse\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorPrefix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"errorMessages\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorSuffix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[500] }" + }, + { + "name": "id", + "type": "string", + "value": "conn_flow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connector_marketing_description" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "mr", + "type": "number", + "value": "4" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_help" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "expression", + "value": "\"6px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "textVariant ? textVariant : \"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "ml", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\t\t\tWebkitLineClamp: \"3\",\n\t\t\t\t\t\t\t\tWebkitBoxOrient: \"vertical\"\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "mr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ width: \"90%\", wordWrap: \"break-word\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "variant ?? \"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\thistory.push({\n\t\t\t\t\t\t\t\t\tpathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`\n\t\t\t\t\t\t\t\t})" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "component", + "type": "string", + "value": "div" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "ml", + "type": "string", + "value": "-0.5rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "pt", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "marginTop", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"16px\", fontWeight: \"500\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + }, + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ alignContent: \"center\" }" + }, + { + "name": "fontSize", + "type": "number", + "value": "24" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3.3" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "string", + "value": "1rem" + }, + { + "name": "sx", + "type": "object", + "value": "{ opacity: 0.8 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "securitySettingsWarning" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "subTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ whiteSpace: \"initial\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"bolder\", color: \"inherit\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "item" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "0.5" + }, + { + "name": "mb", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.33rem\", marginBottom: \".3rem\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + }, + { + "name": "data-qa", + "type": "string", + "value": "supportModalSuccessMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"contents\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "className", + "type": "string", + "value": "message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "desc" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "variable", + "value": "index" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "capitalize" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noProblemText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.text.secondary }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + } + ], + "creationDate": "2022-11-07T11:32:16-05:00" + }, + { + "componentName": "SolaceLabel", + "totalUsages": 302, + "usagesByMfe": { + "ep": 246, + "intg": 25, + "mc": 20, + "saas": 11 + }, + "commonProps": [ + { + "name": "id", + "count": 300 + }, + { + "name": "htmlForId", + "count": 77 + }, + { + "name": "required", + "count": 52 + }, + { + "name": "noWrap", + "count": 12 + }, + { + "name": "readOnly", + "count": 6 + }, + { + "name": "disabled", + "count": 5 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Domain`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessApproval`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "parentShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMesh[environment]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"bulkMoveCurrentAppDomainLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerConfiguration\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerName\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationName\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationVersion\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"directClients\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventQueues\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"kafkaConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationA\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfile\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RDPName\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RESTConsumerType\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfileLabel\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"queueConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Name`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Version`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "roleHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionVersion]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDisplayName]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDescription]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "version" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Preview`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customColour]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customColour]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customIconLogo]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customIconLogo]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[versionState]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[versionState]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[stateName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[stateName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkedApplications-label" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[state]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[state]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"newVersion-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"newVersion\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "defaultClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "multiSelectKey" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`entityVersion-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "env" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshOfMessagingServiceToBeDeleted-none-label" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]-label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[agentMode]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[EventBrokers]-title" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`serviceLabel-${messagingService.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connectedMem\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgentIdLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationDomainLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-applabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelObjecs\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelAction\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsNameLabel" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsDescriptionLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsEnvironementAssociationLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductBrokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiBrokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`postRequestTarget-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}TypeLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}NameLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}ValueLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"postRequestTarget-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointConfigurationEmpty" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointConfigurationType-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointConfigurationType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointName-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointName`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "template" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectAllDomainsLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectedDomainsLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "sectionId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filename-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "kafkaDelimiter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumeration[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumeration[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearchLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "domainsSearch" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filter-popup-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declaredEAPVersions-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "declaredEAPVersions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + }, + { + "name": "required", + "type": "expression", + "value": "!isEmpty(getValues(`${versionObjectName}.name`))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "planNameLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "availabilityLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "approvalType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[schemaType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[schemaType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaTypeLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsLoadingLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsNoPermission\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEvents\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-templateLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "suggested-events" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"name-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resource-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"description-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesMessageLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesPreview\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[requiresApproval]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[requiresApproval]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddressResource" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "appearsIn-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "appearsIn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "\"domainsSearch[label]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[description]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`schemaVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`schemaVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[topicAddress]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[topicAddress]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noCredentials`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noApplicationVersion`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "not-declared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectedMem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"subscription\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventTopic" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomainLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "targetHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "headerExpression" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${props.id}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-key`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "type" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${detail.label}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_status\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_direction\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_description\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`connector-${config.label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_eventBrokerService\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_bindingDestination\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"sslKeyStoreFileUploaderLabel\"" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${label}_label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "keyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "valueTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`role-label-${resourceRole}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label\"`" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + }, + { + "name": "required", + "type": "variable", + "value": "required" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "endpoints" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryptionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "mateLinkEncryption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "certAuthoritiesLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloneCertificateAuthorities" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "environment" + }, + { + "name": "required", + "type": "expression", + "value": "!!serviceId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "htmlForId", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "`${nameCheck}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "regionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "region" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloudLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloud" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "clusterName" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "systemType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "activeStorageAddOns" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "unusedStorage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "current-environment-label" + } + ] + } + ], + "creationDate": "2021-09-20T02:03:26-04:00\n2021-09-20T02:03:26-04:00" + }, + { + "componentName": "SolaceTooltip", + "totalUsages": 298, + "usagesByMfe": { + "ep": 245, + "intg": 10, + "mc": 14, + "saas": 29 + }, + "commonProps": [ + { + "name": "title", + "count": 296 + }, + { + "name": "variant", + "count": 245 + }, + { + "name": "placement", + "count": 145 + }, + { + "name": "maxWidth", + "count": 82 + }, + { + "name": "dataQa", + "count": 27 + }, + { + "name": "key", + "count": 13 + }, + { + "name": "open", + "count": 10 + }, + { + "name": "onOpen", + "count": 9 + }, + { + "name": "onClose", + "count": 9 + }, + { + "name": "disableHoverListener", + "count": 6 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventManagementAgent?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody(memName)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environmentOption.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Remove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Remove`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltipTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.preview.aclProfile" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "aclProfileConfig" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.credentials.clientCredentials" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientCredentialConfig" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueConfig-${identifier}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "queueBindingTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueBindingConfig-${queueBindingTitle}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`rdpConfig-${identifier}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "POPOVER_CONTENT" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}\n\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.applicationVersionRemovalWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventVersion?.displayName || eventVersion?.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-subscriptions`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{subscriptions.slice(1).map((sub, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{sub}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-discrepancies`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{discrepancies.slice(1).map((discrepancy, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{discrepancy}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "getHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle(title, description)" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Configuring\"" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "string", + "value": "Update event broker to configure recent changes to this application" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "resourceName" + }, + { + "name": "data-qa", + "type": "string", + "value": "resourceNameTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "placement", + "type": "variable", + "value": "placement" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "selectedEntity.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "onVersionHover ? onVersionHover(version.id) : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${version.id}-${index}`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`Matching text for '${searchText}'`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "children" + }, + { + "name": "open", + "type": "variable", + "value": "open" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOnOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleOnClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t{searchText && {`Matching text for '${searchText}'`}}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isSubscribeReadOnly ? \"Already subscribing to event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isPublishReadOnly ? \"Already publishing event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add the custom attribute to All application domains or only the Current application domain.\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"customAttributeScopeTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue?.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "getStringValuesTooltipContent(customAttributeValue?.stringValues)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "caName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestVersion" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\tLink applications to show an organizational relationship in the graph view.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about linked applications\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "right-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "enterDelay", + "type": "number", + "value": "800" + }, + { + "name": "enterNextDelay", + "type": "number", + "value": "800" + }, + { + "name": "disableFocusListener", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "graphViewToggle" + }, + { + "name": "title", + "type": "string", + "value": "Graph View" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "selected === \"graph\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "listViewToggle" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disableHoverOnListView" + }, + { + "name": "title", + "type": "expression", + "value": "entityName ? : \"Components\"" + }, + { + "name": "variant", + "type": "expression", + "value": "entityName ? \"html\" : \"text\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.parentName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.versionName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "customAttributeName" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "\"Filters relevant only to other object types\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": " 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventApiProductName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.parent?.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "renderProtocolPopover(messagingService.supportedProtocols ?? [])" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainIcon-${applicationDomainName}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "itemName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainChip-${applicationDomainName}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "\"The event broker must be in a modeled event mesh to receive runtime data or send configuration data.\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "brokerType" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row.modeledEventMesh.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "(runtimeAgent as EventManagementAgent)?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSempUrlFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getMsgVpnFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "{renderUnavailableMessagingServices()}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "STATUS_DESC_DISPLAY_MAP[status]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "timeMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "getTooltipVariant(item)" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\t\t\t\tAUDIT_ENTITY_TYPE_MAP[auditEntityType]\n\t\t\t\t\t\t\t)}.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "secondaryPanelTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSidePanelTitle()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`domainName-${domain.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionSummaryPopover-${application.id}`" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "title", + "type": "jsx", + "value": "
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${jobId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${createdTime}`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "renderSubjectRelationshipHelp()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(tag)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(hideAuditTag)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationVersion.displayName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipBody" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "rowIdentifierValue" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "parentName" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName} ${numAdditionalParents}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "enumEntity.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApiProduct.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "schema.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "application.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "en.application.applicationType[application.applicationType]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(application.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApi.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "event.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(event.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "secondaryAction?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "reuseIndexTooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t÷\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getTooltipContent()" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "right" + }, + { + "name": "dataQa", + "type": "string", + "value": "queueBindingHelpTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Unable to edit when custom attributes have unsaved changes" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionInfo?.displayName || versionInfo?.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue.customAttributeDefinitionName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to edit when ${entityType} has unsaved changes`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "unsavedChangesWarningMsg" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"version\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"displayName\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tEvent version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "node.displayName || node.versionSemver" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "nodeWarningTypeDescription[warnings?.[0]]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "SecondaryTextHoverContent()" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tAll object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn about downloading AsyncAPI documents\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tPrepend Application Domain Name\n\t\t\t\t\t\t\tUse this option when the file contains objects with the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tAppend Major Version Number\n\t\t\t\t\t\t\tUse this option when the file contains more than one version of the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"namingStrategyTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.parent?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"availability-Tooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"small\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"approvalTypes-Tooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.requestor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "formatISOTimeFromNow(row.createdTime)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[request.applicationDomainId]?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "eventMesh.environmentName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "warning" + }, + { + "name": "placement", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "consumer.name" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "key", + "type": "expression", + "value": "`tooltip-${name}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicatonDomainPopoverContent(name)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityConfigSidePanelProps.title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Application Domain\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "displayName ? displayName : version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "viewedSchema.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewedSchemaName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[schemaParent.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "sharedSchema ? \"This event is shared. Only shared schemas can be created\" : \"\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${schemaVersionSelectedMap[row.id].length} Added`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Selected\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.addApplication" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "!!applicationVersion?.id" + }, + { + "name": "disableFocusListener", + "type": "expression", + "value": "!!applicationVersion?.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.approved" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.pending" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.declined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.toBeRequested" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event Access Requests\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "eventName ? \"Event is not shared across application domains\" : \"You do not have access to view this event because it is not shared\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "applicationName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event is not the latest version\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.info" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.source" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.target" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.nonDroppableTooltip" + }, + { + "name": "open", + "type": "expression", + "value": "isActive && !canDrop" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "maxQueueMsgsInfo" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "small" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"service-auth-tooltip\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{helpMessage}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_tiles\", message: \"Grid View\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_list\", message: \"List View\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "email" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(service.id as string)?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environment.label || \"n/a\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(serviceId)?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "chipProps.tooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{roleIdNameMap &&\n\t\t\t\t\t\t\t\t\tuser.roles\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)\n\t\t\t\t\t\t\t\t\t\t.map((role) => {roleIdNameMap[role]})}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-warning`" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.configurationTemplates.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "environment.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "textValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "dataQa", + "type": "string", + "value": "pcuCalculationTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "user.email" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (\n\t\t\t\t\t\t\t\t\t\t{mappedRolesData[item].name}\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "rowData.claimValues" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.userGroups\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)\n\t\t\t\t\t\t\t\t\t\t.map(({ name, value }) => (\n\t\t\t\t\t\t\t\t\t\t\t{name}\n\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(c.status)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(mc.status)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection[\n\t\t\t\t\t\t\t\t\t\t\tuser?.eventPortal2AccessEnabled ? \"totalObjectsTooltip1\" : \"totalObjectsTooltip2\"\n\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.totalObjectsCountText}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.objectsCountLearnLinkText}\n\t\t\t\t\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.readyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.inMaintenanceTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcOperational" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcNotoperational" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row?.epCapabilities == Status.ERROR ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.eventManagementAgentErrorText}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "variant", + "type": "string", + "value": "rich" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingDestinationLimitReached\n\t\t\t\t\t\t\t\t\t? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)\n\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceMessageBox", + "totalUsages": 233, + "usagesByMfe": { + "ep": 146, + "intg": 16, + "mc": 38, + "saas": 33 + }, + "commonProps": [ + { + "name": "variant", + "count": 233 + }, + { + "name": "message", + "count": 233 + }, + { + "name": "showCloseButton", + "count": 65 + }, + { + "name": "onClose", + "count": 56 + }, + { + "name": "dataQa", + "count": 56 + }, + { + "name": "showIcon", + "count": 30 + }, + { + "name": "dense", + "count": 9 + }, + { + "name": "details", + "count": 5 + }, + { + "name": "key", + "count": 3 + }, + { + "name": "color", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "submitWarning.message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\tEvent Portal does not require your authentication passwords. After Event Portal generates the connection file, replace\n\t\t\t\t\tthe environment variables with your passwords in the installation command, so you can keep them secure.{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\tLearn more about authentication passwords\n\t\t\t\t\t\n\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "\"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.bulkMoveInfo[entityType]" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "getErrorMessage(errors)" + }, + { + "name": "dataQa", + "type": "string", + "value": "previewErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"aclProfileMessageBox\"" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t{messages.preview.aclProfileInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{messages.preview.learnMoreAboutACLProfiles}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseAclProfileInfoMessage()" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.inProgress" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "addHelpText" + }, + { + "name": "onClose", + "type": "function", + "value": "() => onCloseAddHelp()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "deleteHelpText" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"After an object version is Retired, you cannot associate it to other object versions.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(\n\t\t\t\t\t\t\t\tentityType\n\t\t\t\t\t\t\t)} will be removed from the graph view if all versions are in retired state.`" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "stateChangeErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "color", + "type": "expression", + "value": "theme.palette.ux.error.w100" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? \"versions\" : \"version\"} open for editing`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUnsavedWarning(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "\"Any unsaved changes will be lost if you reload the page.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"unsavedWarning\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enumErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "enumWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(item.name)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissErrorStatus" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"deletionErrorMsgBoxSidePanel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedGatewayMessaggingServices" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedVersions" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t{eventManagementAgentResources.version.needUpgradePrompt}\n\t\t\t\t\t\n\t\t\t\t\t\t{eventManagementAgentResources.version.needUpgradeLinkText}\n\t\t\t\t\t\n\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Connection details updated. Download the file and run it with the Event Management Agent to update the connection.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Unable to create connections to Event Management Agents." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "validationError.eventBrokerError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The event broker must be in a modeled event mesh to receive runtime data or send configuration data." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tUnable to delete connection to{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tselectedMessagingServices.filter((service) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted;\n\t\t\t\t\t\t\t\t\t\t\t})[0]?.name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t. It is associated with one or more objects in the environment.\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`Event Management agent ${emsStatus}`" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Event Management Agent installation setup complete" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"The next steps require you be on the system hosting the connected agent.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\tYou can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those\n\t\t\t\t\t\t\t\t\t\tdatacenters.\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tView Datacenters\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setViewDatacentersInfoBanner(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "string", + "value": "One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\tConnection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that\n\t\t\t\t\t\t\t\tthe agent connects to.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t handleDownloadConnectionFile(item.id, item.name)}>\n\t\t\t\t\t\t\t\t\t\tDownload Connection File\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{ConnectionStatusLabel.connectionIncomplete}\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tInstall the Event Management Agent and run the connection file to connect to Event Portal.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDownload and install the Event Management Agent.\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "string", + "value": "Event management agent not connected to Event Portal. View logs for details." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{dataCollectionErrorMessage}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tYour event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and\n\t\t\t\t\t\t\t\t\t\t\t\tre-add it to the modelled event mesh\n\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t handleDeleteMessagingService(selectedMessagingService)}>\n\t\t\t\t\t\t\t\t\t\t\t\t\tDelete From Event Portal\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{renderDataCollectionError}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\tUnable to delete connection to {selectedMessagingService.name}. It is associated\n\t\t\t\t\t\t\t\t\t\t\twith one or more objects in the environment.\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\tModeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows\n\t\t\t\t\t\tbetween publishing and subscribing applications.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about modeled event meshes\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warningInfoBoxMessage" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{showServiceWarning && (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tChoose Event Broker\n\t\t\t\t\t\t\t\t\t{renderMessagingServiceSelect()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{showAuditResultTypeWarning ? \"Choose Audit Result Type\" : \"Selected Objects\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{renderSelectionStats()}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects that are already in Event Portal do not need to be imported again.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"matchFoundMessage\"" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseMatchFoundMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t
{errorMessage}
\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Resolve partial matches caused by runtime configuration changes by updating the event from the audit results." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "No differences found in the compared version configurations." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variantType" + }, + { + "name": "message", + "type": "variable", + "value": "_message" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "dismissible" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleMessageBoxOnClose(variantType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NONDRAFT_WARNING" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftWarning" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "`Selected ${\n\t\t\t\t\tAUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]\n\t\t\t\t} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\tentityType\n\t\t\t\t)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "EVENT_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tUnable to import \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{invalidAudits.length} of {audits.length} selected {auditEntityType}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeselect\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationErrorWithDeselect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "submitError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tIf you plan to create objects on the event broker, consider to tag them as \n\t\t\t\t\t\t\tTo Be Created\n\t\t\t\t\t\t\t using the Quick Actions.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${status} ${subStatus ?? \"\"}`}
\n\t\t\t\t\t\t\t{actionText && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t{actionIcon}\n\t\t\t\t\t\t\t\t\t\t{actionText}\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + }, + { + "name": "onClose", + "type": "variable", + "value": "onAuditImportDone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.appDomainFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tsetAppDomainFilterError(false);\n\t\t\t\t\t\t\t\t\tsetSelectedAppDomainId(\"all\");\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.tableFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\tsetTableFiltersError(false);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedSharedType(null);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedBrokerType(null);\n\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!!onClose" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "action?.label && !!action?.onClick ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{action.label}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "variable", + "value": "dense" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{error}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`runtimeConfigurationBanner-${applicationVersion.id}`" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{application.configuration.warningOutOfSync}\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "getEmptyMessageDetails(true)" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "EXPORT_MESSAGE" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "variable", + "value": "messageType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.eventApiProduct.labels.downloadInfo" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "message", + "type": "variable", + "value": "conflictMessage" + }, + { + "name": "details", + "type": "expression", + "value": "getErrorDetails()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t setTriggerVersionDuplication(true)}>\n\t\t\t\t\t\t\t\t\t\tDuplicate Version\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowImportedSchemaInfoBanner(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editImportedSchemaWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "schemaVersionReferencesError.message" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasErrorText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_TYPE_MISMATCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SHARED_VALUE_MISMATCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_VERSION_NOT_FOUND" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "noOptionSelectedError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendValidationErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tCannot delete the last topic domain when{\" \"}\n\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain is selected.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "applicationDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "topicDomainSuccessMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"One or more topic domains were not created successfully.\"" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(failedTopicDomains, false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "duplicateTopicDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(duplicateTopicDomainEntries, true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"All versions of an event have the same broker type. It cannot be changed after the event is created\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBrokerTypeHelp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "brokerTypeWarning" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"brokerTypeWarning\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "errors.event.shared.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tAll versions of a Kafka event use the same topic address and use versions from the same schema object.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{\"Learn more about creating Kafka events\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseInfoMessage()" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaEventInfoBanner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "expression", + "value": "`This ${pageID === PageID.eventSearchSchemas ? \"event\" : \"schema\"} is shared. Only shared schemas can be selected.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "messages.credentials.removeCredentialsWarning" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? \"s\" : \"\"}. `}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t{renderWarningDetails()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonSharedEventWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_TOPIC_ADDRESS_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_PUBLISHER_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_MATCHED_SUBSCRIPTION" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForPubEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "errorMessageForPubEvents || subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsInfo(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsWarning(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForAdditionalEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUndeployedInformation(false)" + }, + { + "name": "message", + "type": "expression", + "value": "messages.add.addApplicationDescription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : \"You do not have access to this event.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "messages.credentials.configurationWarning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onCloseError" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`Returning to an earlier step will reset your progress. `" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messages.info}\n\t\t\t\t\t\t\t{getWizardButton(\"text\", goToWizard, false)}\n\t\t\t\t\t\t" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowMessageBox(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "messages.projectDefinition.guide" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "sourceTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "targetTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.helperText.payloadMessage" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setPayloadInfoDismissed(!payloadInfoDismissed)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.reImportWarning(direction.toLowerCase())" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "payloadMappingsValidationErrors.apiError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxConstantCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxHeaderCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{renderErrorMessages(step, validationErrors)}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "down_state_error_message" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error\n\t\t\t\t\t\t\t\t\t\t\t\t\t? en.connectors.labels.errorStateMessage\n\t\t\t\t\t\t\t\t\t\t\t\t\t: en.connectors.labels.downStateMessage}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error && (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? \"Unknown error\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.additionalSupportMessage}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? \"\")" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_state_message" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tdetailsStepValidationErrors,\n\t\t\t\t\t\t\t\tisEqual(connectorTypeDetails.direction, ConnectorDirection.Source),\n\t\t\t\t\t\t\t\ttrue,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tinitialStepValidationErrors,\n\t\t\t\t\t\t\t\tvendorSourceDirection,\n\t\t\t\t\t\t\t\tfalse,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "downErrorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowDownError(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{errorMessageDetails ?? \"\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "error_message_box" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(connectorState ?? \"\")" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_message_box" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_edit_msg_spool_info\", message: \"This change will not impact queue size.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_customize_msg_spool_info\", message: \"You cannot decrease the message spool size after creating the service, but you can increase it without service interruption.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "type" + }, + { + "name": "message", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "eventMesh.errorMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\tSorry, a problem occurred trying to create your service.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Support Ticket\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\tid: \"id_sso_out_of_sync\",\n\t\t\t\t\t\t\t\t\tmessage: \"The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details.\"\n\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tPlan Upgrade\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{t({\n\t\t\t\t\t\t\t\tid: \"id_auto_upgrade_failed\",\n\t\t\t\t\t\t\t\tmessage: `Upgrade steps have failed. Contact Solace for support.`\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t setViewLogs(true)}>\n\t\t\t\t\t\t\t\tView Upgrade Logs\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade steps have failed. Contact Solace for support." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_facilities\", message: \"At least one facility must be selected.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "warningMessage.join(\" \")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "pickMessage(isProfileConfigured, isAccessConfigured)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_deployment\", message: \"There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "disable-distributed-tracing-error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_destination_out_of_date\", message: \"Tracing destination is out of date on this service.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_retrieving_details\", message: \"An error occurred while retrieving Distributed Tracing details, please try again.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enableDistributedTracingErrorMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "patchBrandingText(t({ id: \"id_dt_error_disabling\", message: \"An error occurred while disabling Distributed Tracing. For support, contact Solace.\" }))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_not_supported\", message: \"Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_configuration_progress\", message: \"Configuration in progress...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "configuration-progress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_running\", message: \"Collector is running.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_down\", message: \"Collector is down.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_collector_status\", message: \"Retrieving collector status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-collector-status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_connection_service_active\", message: \"Connection to the service is active.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "brokerConnectionErrorMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_service_status\", message: \"Retrieving service status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-service-status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_syslog_error\", message: \"Failed to retrieve the configuration for Syslog Forwarding.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\tid: \"id_nodeport_info\",\n\t\t\t\t\tmessage: \"You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation.\"\n\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.errorMessage)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.warningMessage)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_not_latest_version\", message: \"Consider using the latest version. (Recommended)\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_max_spool_size\", message: \"Select a different region. You have reached your limits for this service.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "isSAP\n\t\t\t\t\t\t\t\t\t? t({\n\t\t\t\t\t\t\t\t\t\t\tid: \"id_error_limits_sap\",\n\t\t\t\t\t\t\t\t\t\t\tmessage: \"You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit.\"\n\t\t\t\t\t\t\t\t\t })\n\t\t\t\t\t\t\t\t\t: t({ id: \"id_error_limits\", message: \"Select another service type. You have either reached your limits, or the region does not support this service type.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} \n\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.brokerSsoSetup}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.viewSettings}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{text + \" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{link}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tI Agree\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenTopInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenBottomInfoLearnMore}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardTop" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "deleteError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t{en.environments.labels.deleteDialogMessage}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn more in the documentation\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.errors.duplicateName" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.error.typeRequired" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.info.typeCannotBeChanged" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "messages.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTemplateWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotComplete" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotYetApplied" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.jitInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{userGroupManagement.saveChangesText}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{userGroupManagement.testAccess}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.noAdminMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.overview.banner.WE_HIT_AN_ISSUE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.forgotPassword.errorSendingResetEmail" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.notifications.fetchingNotificationsErrorNotLoggedIn" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.learnMore}\n\t\t\t\t\n\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.privateRegions.emaInfoBanner.title}{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.privateRegions.emaInfoBanner.linkText}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.anyApplicationsOrScriptsUsingThisToken" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.thisCannotBeUndone" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{en.tokens.text.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.tokens.text.learnMore}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "failed-to-synch" + }, + { + "name": "key", + "type": "expression", + "value": "item.serviceId" + }, + { + "name": "message", + "type": "expression", + "value": "tracingSynchDialog.error(item.serviceName)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.link.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "infoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{outOfSynchMessageBox.outOfDate({\n\t\t\t\t\t\t\t\t\toutOfSynchServices: outOfSynchServices.length,\n\t\t\t\t\t\t\t\t\tassociatedServices: associateServicesCount\n\t\t\t\t\t\t\t\t})}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setSynchTracingDialog(true)}>\n\t\t\t\t\t\t\t\t\t\t{outOfSynchMessageBox.viewServices}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingLimits.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingLimits" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.delete" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorDeletingTracingDestination" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingDestinations" + } + ] + } + ], + "creationDate": "2022-01-31T11:14:33-05:00" + }, + { + "componentName": "SolaceGrid", + "totalUsages": 227, + "usagesByMfe": { + "ep": 120, + "intg": 29, + "mc": 8, + "saas": 70 + }, + "commonProps": [ + { + "name": "item", + "count": 167 + }, + { + "name": "xs", + "count": 115 + }, + { + "name": "container", + "count": 55 + }, + { + "name": "spacing", + "count": 27 + }, + { + "name": "alignItems", + "count": 26 + }, + { + "name": "style", + "count": 20 + }, + { + "name": "className", + "count": 19 + }, + { + "name": "key", + "count": 16 + }, + { + "name": "mt", + "count": 15 + }, + { + "name": "data-qa", + "count": 14 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"grid\", gridTemplateColumns: \"1fr 1fr\", gap: \"8px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "isEditable || nameInEditMode ? \"flex-start\" : \"center\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-valueType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-scope`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "expression", + "value": "isEditable ? 1 : 2" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caErrorKey}-message`" + }, + { + "name": "key", + "type": "expression", + "value": "`${caErrorKey}-message`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-content`" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "columnGap", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-action`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "columnGap", + "type": "expression", + "value": "\"8px\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "padding", + "type": "number", + "value": "0" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem additionalFilter" + }, + { + "name": "key", + "type": "expression", + "value": "`${filterType}-select`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${selectedFilter.type}Select`" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem customAttribute" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columns", + "type": "number", + "value": "3" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "expression", + "value": "\"0\"" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "wrap", + "type": "string", + "value": "nowrap" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"450px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"538px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingRight", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "padding", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100% - 65px)`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: SIDE_PANEL_WIDTH }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: \"flex\", flexDirection: \"column\" }" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingTop: \"24px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "gap", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"row\", alignItems: \"center\", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "ml", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderRight", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (leftScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetLeftScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "object", + "value": "{ backgroundColor: theme.palette.ux.background.w20 }" + }, + { + "name": "justifyItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "alignContent", + "type": "expression", + "value": "relations.length === 0 && !initalDrag ? \"center\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderLeft", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (rightScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetRightScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${id}-key`" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "className", + "type": "variable", + "value": "classNames" + }, + { + "name": "style", + "type": "variable", + "value": "style" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justify-content", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.5" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1.4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.6" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + }, + { + "name": "mt", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 4 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "variable", + "value": "isParentCategory" + }, + { + "name": "key", + "type": "expression", + "value": "permission.id" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(0.5)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "categoryName" + }, + { + "name": "style", + "type": "object", + "value": "{ padding: theme.spacing(0.25) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "variable", + "value": "permissionTitleSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "marginTop", + "type": "expression", + "value": "categoryName ? theme.spacing(0.5) : theme.spacing(0.25)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.8" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "className", + "type": "string", + "value": "readWrite" + } + ] + } + ], + "creationDate": "2022-04-11T16:52:27-04:00" + }, + { + "componentName": "SolaceConfirmationDialog", + "totalUsages": 192, + "usagesByMfe": { + "ep": 112, + "intg": 12, + "mc": 34, + "saas": 34 + }, + "commonProps": [ + { + "name": "actions", + "count": 192 + }, + { + "name": "isOpen", + "count": 191 + }, + { + "name": "title", + "count": 191 + }, + { + "name": "maxWidth", + "count": 70 + }, + { + "name": "linearProgressIndicator", + "count": 61 + }, + { + "name": "contentText", + "count": 22 + }, + { + "name": "key", + "count": 8 + }, + { + "name": "contentLayout", + "count": 5 + }, + { + "name": "customAction", + "count": 1 + }, + { + "name": "data-qa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "confirmationObj.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.cancelLabel,\n\t\t\t\t\t\tdataQa: \"returnToForm\",\n\t\t\t\t\t\tonClick: () => closeModal(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.okLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"leaveAndDiscard\",\n\t\t\t\t\t\tonClick: () => closeModal(true)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Modeled Event Mesh" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Add Existing Event Broker" + }, + { + "name": "isOpen", + "type": "expression", + "value": "open && !openMessagingServiceDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleAddExistingMessagingService();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress || !!submitError?.message\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "addInProgress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "generateTitleDialog(mode)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "title || \"Event Broker Connection Details\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.deployToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.move(\n\t\t\t\tselectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)\n\t\t\t)" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: onClose },\n\t\t\t\t{ label: en.common.button.move, variant: \"call-to-action\", onClick: handleSubmit, isDisabled: moveDisabled }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "startMove.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: onClose }]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messages.credentials.saveCredentialsAndContinue,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: onSave,\n\t\t\t\t\t\t\tdataQa: \"saveCredentialsAndContinue\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !isValid\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: () => onClose(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.action,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleOnClick,\n\t\t\t\t\tdataQa: \"updateEntityInEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "submitting || isDeploymentPreviewLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tDetected Event Flow Mismatches\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tEdit Application\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(cancel)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.addEventApiProduct" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Add to Environment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleCloseWithErrors }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "applicationVersionId" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "getTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "string", + "value": "KafkaSampleSuccessDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.selectDialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.select,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tisDisabled: !value,\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "showProgressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tsetIsDialogOpen(false);\n\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Custom Attributes" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"customAttributes-cancel\", onClick: () => setIsDialogOpen(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tdataQa: \"customAttributes-save\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: disabled || isSaving === true,\n\t\t\t\t\tonClick: () => handleSave()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isSaving" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "versionStateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Manage Lifecycle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tonClick: handleLifecycleChanges,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isSaveDisabled()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "changeEntityVersionStateHook?.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCancel },\n\t\t\t\t{ label: resetButtonLabel, variant: \"outline\", onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "confirmExitDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Close ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Return To Form\", variant: \"outline\", onClick: handleCancel }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteVersionDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel} Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCancel },\n\t\t\t\t{ label: !isLastVersion || keepParent ? \"Delete Version\" : `Delete Version & ${entityTypeLabel}`, variant: \"outline\", onClick: handleDelete }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Duplicate Application Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ dataQa: \"save\", label: \"Save\", variant: \"call-to-action\", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "duplicateEntityVersion.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Warning\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Return to Form\", onClick: onClose },\n\t\t\t\t{ label: \"Reload\", variant: \"outline\", onClick: handleReload }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Configure Variable" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: refreshGraphRequiredOnClosingErrorDialog ? \"Close & Refresh Graph\" : \"Close\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Publish Graph Layout\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "layoutConflictDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: `Return to ${entityLabel}`, onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Publish Layout\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: graphUpdating,\n\t\t\t\t\tonClick: handleContinuePublishLayout,\n\t\t\t\t\tdataQa: \"continuePublishLayout\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Changes Partially Published\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "partialPublishDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ label: \"Refresh\", variant: \"outline\", onClick: handleRefreshGraph, id: \"refreshGraph\", dataQa: \"refreshGraph\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? defaultTilte" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Remove\", dataQa: \"removeAssociation\", variant: \"outline\", onClick: () => onRemove(idToRemove) }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "\"fail-download-async-api\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, variant: \"outline\" as const, onClick: action(\"onClose\") }]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "false" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "unableToDeleteDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Unable to Delete" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseUnableToDeleteDialog },\n\t\t\t\t\t{ label: \"Open Modeled Event Mesh\", variant: \"outline\", onClick: handleOpenModeledEventMesh }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Skip and Install" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Skip\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleSkip\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Connection File Created" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose, dataQa: \"connectionFileDialogCloseButton\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Setting Up Offline Event Management Agent" + }, + { + "name": "isOpen", + "type": "variable", + "value": "standaloneDialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleStandaloneClose, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Management Agent Set Up Complete" + }, + { + "name": "isOpen", + "type": "variable", + "value": "emaSetupCompleteDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tonClick: handleEmaSetupCompleteDialogClose,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Go to Modeled Event Meshes\",\n\t\t\t\t\t\t\tonClick: handleGotoMEM,\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${runtimeAgentName}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Management Agent Connection" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: deleteEventManagementAgent.isLoading,\n\t\t\t\t\t\t\tonClick: handleDelete\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Custom Discovery Scan" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Run Discovery Scan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isRunDiscoveryScanButtonDisabled,\n\t\t\t\t\tonClick: initiateCustomScan\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Data Collection\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Data Collection" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteScan.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Run Discovery Scan" + }, + { + "name": "actions", + "type": "expression", + "value": "renderDialogActionButtons(messagingServicesForDataCollection)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "eventManagementAgentNeedsUpdateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Event Management Agent Needs Update" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseEMAUpdateDialog },\n\t\t\t\t\t\t{ label: \"Open Event Management Agent\", variant: \"outline\", onClick: handleGoToEMA }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Data Collection Logs\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add Environment Association\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(\n\t\t\t\tisLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,\n\t\t\t\tcancel,\n\t\t\t\tupdate\n\t\t\t)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "isAddMode ? (\n\t\t\t\t\t
\n\t\t\t\t\t\t setIsAddMode(false)}>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tAdd Environment Association\n\t\t\t\t\t
\n\t\t\t\t) : (\n\t\t\t\t\t<>{showViewOnly ? \"View Environment Associations\" : \"Manage Environment Associations\"}\n\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "showViewOnly\n\t\t\t\t\t? [{ label: \"Close\", variant: \"call-to-action\", onClick: handleClose }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleClose },\n\t\t\t\t\t\t\t{ label: isAddMode ? \"Add\" : \"Save\", variant: \"call-to-action\", onClick: handleClick }\n\t\t\t\t\t ]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeCompareDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? \"Configuration\" : \"Runtime Configuration\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeDetailsDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"closeConfirmDialog\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"applyConfirmDialog\",\n\t\t\t\t\tonClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),\n\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Import Progress" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tdataQa: \"auditImport-close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => setAuditImportProgressDialogOpen(false)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "!!isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"cancelAuditButton\" },\n\t\t\t\t{ label: \"Import\", variant: \"call-to-action\", isDisabled: auditInError, onClick: handleImport, dataQa: \"importAuditButton\" }\n\t\t\t]" + }, + { + "name": "customAction", + "type": "variable", + "value": "customAction" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "renderHeader()" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "application.configuration.setDefaultTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: application.configuration.setDefaultTemplate,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetObservedConfiguration({\n\t\t\t\t\t\t\t\t\tname: configurationName,\n\t\t\t\t\t\t\t\t\tvalue: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "defaultTemplateConfirmationDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: () => onClose() },\n\t\t\t\t{ label: en.common.button.delete, dataQa: \"deleteTemplate\", variant: \"outline\", onClick: handleDeleteTemplate }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"learningCenterErrorDialog\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "contentText", + "type": "variable", + "value": "description" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setApiError(null) }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.template) {\n\t\t\t\t\t\t\t\t\tupdateUserConfigValues({}, true);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.addRequestHeader" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\tonClick: () => handleClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tdataQa: \"add-request-header-submit\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tlabel: en.application.configuration.restDeliveryPoint.addRequestHeader,\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleAddRequestHeader();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\tmodeSelectionToConfirm === Mode.custom\n\t\t\t\t\t\t\t\t\t? messagesConfiguration.solaceClientProfileName.customize\n\t\t\t\t\t\t\t\t\t: messagesConfiguration.selectTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.custom) {\n\t\t\t\t\t\t\t\t\tsetValue(FormCustomizedClientProfileName, observedConfiguration ?? \"\");\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\treset(modeSelectionToConfirm === Mode.template);\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Application Domain\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Application Domain`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t\t\t{ dataQa: \"delete\", label: \"Delete\", variant: \"outline\", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deleteApplicationDomain.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Application Domain Export Preview" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"domainExport-cancel\", onClick: () => onCancel() },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Export\",\n\t\t\t\t\tdataQa: \"domainExport-confirm\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: !!errorMsg,\n\t\t\t\t\tonClick: () => onExport()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "customAttributeValidations?.title" + }, + { + "name": "isOpen", + "type": "expression", + "value": "!!customAttributeValidations" + }, + { + "name": "actions", + "type": "expression", + "value": "customAttributeValidations?.actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetErrorMsg(\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "appDomainCount === 1 ? \"Importing Application Domain\" : \"Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "\"The import may take several minutes.\"" + }, + { + "name": "actions", + "type": "null", + "value": "null" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Kafka Settings\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Save\", variant: \"outline\", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Select Shared Events" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "showErrorDialog" + }, + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${collisionErrors ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: en.common.button.cancel, onClick: () => setOpen(false) },\n\t\t\t\t\t\t{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "updatePublishState.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetOpen(false);\n\t\t\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "userNotFoundDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "User No Longer Exist" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: \"Close & Clear Filters\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\t\t\tonClick: handleCloseAndClearFilters\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Revoke Event Access\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Revoke Event Access" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Revoke Access\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: declineEventAccessRequest.isLoading\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Review Event Access Request\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Review Event Access Request" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Send Review\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: sendReviewButtonDisabled,\n\t\t\t\t\t\t\tdataQa: \"sendReviewButton\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Subscription`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteSubscriptionButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(consumerId, index), dataQa: \"deleteSubscriptionButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Consumer`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteConsumerButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: handleDelete, dataQa: \"deleteConsumerButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title || \"Error\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "failedTopicDomains?.length > 0\n\t\t\t\t\t? [{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn },\n\t\t\t\t\t\t\t{ label: \"Use Duplicates\", variant: \"outline\", onClick: onContinue }\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ dataQa: \"topicAddressResourcesCancel\", label: \"Cancel\", variant: \"outline\", onClick: onReset },\n\t\t\t\t{ dataQa: \"topicAddressResourcesDone\", label: ctaLabel, variant: \"call-to-action\", onClick: onDone }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "\"Topic Address Required\"" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!error" + }, + { + "name": "title", + "type": "expression", + "value": "\"Error Sending Requests\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "error ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.removeCredentials" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.remove,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {\n\t\t\t\t\t\t\t\t\t\trefreshApplicationDeploymentPreviews.refresh();\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\thandleBackendError(messages.credentials.removeCredentialsErrorTitle, error);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// close the dialog\n\t\t\t\t\t\t\t\tsetRemoveCredentialsData(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "isEditing\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: () => setOpen(false), dataQa: \"credentialsCancel\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: common.button.save,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tonClick: () => onSave(),\n\t\t\t\t\t\t\t\tisDisabled: isLoading || !isValid || !!error,\n\t\t\t\t\t\t\t\tdataQa: \"credentialsSave\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [{ label: common.button.close, variant: \"call-to-action\", onClick: () => setOpen(false), dataQa: \"credentialsClose\" }]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isLoading" + }, + { + "name": "title", + "type": "expression", + "value": "getInProgressTitle(activeStep)" + }, + { + "name": "actions", + "type": "array", + "value": "[]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "errorMessage !== \"\"" + }, + { + "name": "title", + "type": "string", + "value": "Encountered Error while Creating Assets" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "genAiErrorMessage !== \"\"" + }, + { + "name": "title", + "type": "expression", + "value": "`Encountered Error while ${getInProgressTitle(activeStep)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"call-to-action\", onClick: () => setGenAiErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isMoreInformationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "More Information Required" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setIsMoreInformationDialogOpen(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "activeStepToConfirm !== -1" + }, + { + "name": "title", + "type": "string", + "value": "Progress Reset Warning" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setActiveStepToConfirm(-1)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Continue\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => handleSetActiveStep(activeStepToConfirm)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Disclaimer\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setIsDialogOpen(false) }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" }]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: en.connectors.buttons.apply,\n\t\t\t\t\t\t\t\tonClick: onApplyTransformation,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"applyTransformationButton\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.importPayloads(direction)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "uploadDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"close-upload-dialog\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\tsetUploadDialog(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.import,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"upload-file\",\n\t\t\t\t\t\tonClick: handleUploadFile\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "fieldType === FieldType.constant\n\t\t\t\t\t\t\t? en.connectors.labels.deleteConstantField\n\t\t\t\t\t\t\t: en.connectors.labels.deleteHeaderField" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.labels.deleteHeaderFieldContext" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showDeleteDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetIdToDelete(\"\");\n\t\t\t\t\t\t\t\tsetShowDeleteDialog(false);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\t\t\tonClick: () => handleDeleteButtonClick(),\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"deleteEdgeDialog-cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\tdataQa: \"deleteEdgeDialog-delete\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: removeRelation\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.transformations.labels.deleteMapping" + }, + { + "name": "contentText", + "type": "expression", + "value": "!isEmpty(affectedTransformations) && affectedTransformations.length > 1\n\t\t\t\t\t? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)\n\t\t\t\t\t: en.transformations.labels.deleteDialogText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.errorDeploymentTitle" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: connectors.buttons.close,\n\t\t\t\t\t\tdataQa: \"connectordeployerror-close\",\n\t\t\t\t\t\tonClick: () => setDeployErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"connectorStateChange-cancel\", onClick: () => setShowDeployDialog(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: action === \"deploy\" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,\n\t\t\t\t\tdataQa: \"connectorStateChange-deploy\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleStateChange\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "action === \"deploy\" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.deleteDialogTitle" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.deleteConfirmationMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.connectors.buttons.close, onClick: onClose },\n\t\t\t\t{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: \"outline\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.connectors.labels.mapWithAI}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiDialogClose(false),\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.map,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"confirm-ai-mapping\",\n\t\t\t\t\t\tonClick: handleAiMapping,\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"An error occurred\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Open Support Ticket\",\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.errorAiMap" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.close,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-error-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit ? t({ id: \"id_dlg_edit_msg_spool_title\", message: \"Edit Message Spool Size\" }) : t({ id: \"id_dlg_customize_msg_spool_title\", message: \"Customize Message Spool Size\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"customizeMessageSpoolCancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_apply\", message: \"Apply\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: isEdit ? \"customizeMessageSpoolSave\" : \"customizeMessageSpoolApply\",\n\t\t\t\t\tisDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: t({ id: \"id_ok\", message: \"OK\" }),\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "count ? t({ id: \"id_dlg_delete_services_title\", message: \"Delete Services\" }) : t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: count ? t({ id: \"id_delete_services\", message: \"Delete Services\" }) : t({ id: \"id_delete_service\", message: \"Delete Service\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"delete-service-ok\",\n\t\t\t\t\tisDisabled: matchText.trim() !== matchName,\n\t\t\t\t\tonClick: onDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rename_service_title\", message: \"Edit Service Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rename-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rename-service-ok\",\n\t\t\t\t\tisDisabled: hasErrors,\n\t\t\t\t\tonClick: handleRename\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_clone_service_title\", message: \"Clone Service: Pre-Check\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "expression", + "value": "isReady && (results.errors.length > 0 || results.warnings.length > 0)\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-cancel\",\n\t\t\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_continue\", message: \"Continue\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-continue\",\n\t\t\t\t\t\t\t\tisDisabled: results.errors.length > 0,\n\t\t\t\t\t\t\t\tonClick: onContinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: []" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_error_title\", message: \"An error occurred\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_open_support_ticket\", message: \"Open Support Ticket\" }),\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_auto_upgrade_plan_title\", message: \"Plan Upgrade\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose },\n\t\t\t\t{ label: \"Run Upgrade\", onClick: handleUpgrade, variant: \"call-to-action\", isDisabled: !!formError || upgradeMutation.isLoading }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ variant: \"outline\", label: \"Close\", onClick: () => onClose() }]" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "id ? t({ id: \"id_dlg_client_profile_edit_title\", message: \"Edit Client Profile\" }) : t({ id: \"id_dlg_client_profile_create_title\", message: \"Create Client Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: id ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: id ? \"client-profile-save\" : \"client-profile-create\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "addMode\n\t\t\t\t\t? t({ id: \"id_dlg_client_cert_auth_title\", message: \"Add Client Certificate Authority\" })\n\t\t\t\t\t: t({ id: \"id_dlg_client_cert_auth_edit_title\", message: \"Edit Client Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => onClose()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit\n\t\t\t\t\t? t({ id: \"id_dlg_edit_syslog_config_title\", message: \"Edit Syslog Forwarding Destination\" })\n\t\t\t\t\t: t({ id: \"id_dlg_create_syslog_config_title\", message: \"Create Syslog Forwarding Destination\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "create ? t({ id: \"id_dlg_create_endpoint_title\", message: \"Create Endpoint\" }) : t({ id: \"id_dlg_edit_endpoint_title\", message: \"Edit Endpoint\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_create_hostname_title\", message: \"Create Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"create-hostname-save\",\n\t\t\t\t\tisDisabled: isLoadingCertificates || saveDisabled,\n\t\t\t\t\tonClick: handleCreate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"library-close\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_client_auth_title\", message: \"Edit Client Authentication\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_edit_cluster_name_title\", message: \"Edit Cluster Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Distributed Tracing\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-confirm\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_move_hostname_title\", message: \"Move Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-hostname-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleMove\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Configure Data Collection\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_dt_confirmDeploy\", message: \"Confirm and Deploy\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-confirm\",\n\t\t\t\t\tonClick: handleConfirmDeploy,\n\t\t\t\t\tisDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rotate_passwords_title\", message: \"Rotate Broker Passwords\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_rotate\", message: \"Rotate\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-rotate\",\n\t\t\t\t\tonClick: handleRotate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_hostname_title\", message: \"Delete Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"delete-hostname-confirm\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_mgmt_access_title\", message: \"Set LDAP Group Access\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_mate_link_encryption_title\", message: \"Mate-Link Encryption\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-disable\",\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_profile_title\", message: \"Edit LDAP Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_domain_cert_auth_title\", message: \"Add Domain Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_endpoint\", message: \"Delete Endpoint\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"delete-endpoint-cancel\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"delete-endpoint-confirmed\", onClick: handleDeleteEndpoint }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_syslog_config\", message: \"Deactivate Syslog Forwarding\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_syslog_config\", message: \"Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server.\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"syslog-config-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_deactivate\", message: \"Deactivate\" }), variant: \"outline\", dataQa: \"syslog-config-delete\", onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_disable_standard_domain_cert_auth\", message: \"Disable Standard Domain Certificate Authorities\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_disable_standard_domain_cert_auth_desc\",\n\t\t\t\t\t\t\tmessage: \"This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates.\"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelConfirmDisable },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_disable\", message: \"Disable\" }), variant: \"call-to-action\", onClick: handleConfirmDisable }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_cert_auth\", message: \"Delete Certificate Authority\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_prompt_delete_cert_auth\",\n\t\t\t\t\t\t\tmessage: \"Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? \"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", isDisabled: !allowServiceQueries, onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_client_profile\", message: \"Delete Client Profile\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_client_profile\", message: \"Are you sure you want to permanently delete this client profile?\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"client-profile-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"client-profile-delete\", onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.brokerSSOConfig.dialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: \"outline\" }\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.viewMessageSpoolDetails.buttons.close,\n\t\t\t\t\tonClick: onClose,\n\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Change Request - ${editLimitsRow.name}`" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => setEditLimitsRow(null),\n\t\t\t\t\t\t\tisDisabled: submittingTicket\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.serviceLimits.buttons.sendRequest,\n\t\t\t\t\t\t\tonClick: onSubmit,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: !confirmDelete || isDeleting\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\"\n\t\t\t\t\t? en.environments.labels.createEnvironment\n\t\t\t\t\t: en.environments.labels.editEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? en.environments.button.create : en.common.buttons.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled:\n\t\t\t\t\t\tisDuplicate || isLoading || hasError || hasDescError || (dialogState.type === \"create\" ? false : !isEdited)\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.labels.ASEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isUpdating" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleCloseDialog\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.save,\n\t\t\t\t\tid: \"deleteButton\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdateEnvironment,\n\t\t\t\t\tisDisabled: isError || isUpdating\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"cancelConfigurationTemplatesDialog\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tdataQa: \"applyConfigurationTemplatesDialog\",\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? userGroups.ugDialog.create : userGroups.ugDialog.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,\n\t\t\t\t\tdataQa: \"ugDialogSaveQa\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroups.ugDeleteDialog.deleteUG" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.cancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: isError || isDeleting,\n\t\t\t\t\tdataQa: \"ugDialogDeleteQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.enableSsoConfig" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelEnableSso\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.activate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: enableSsoConfiguration\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.configureSsoSettings" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelConfigureSettings\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.save,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: saveStagedSsoConfiguration,\n\t\t\t\t\t\tisDisabled: !canSaveSettings\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[cannotTestSso ? \"testSsoConfigError\" : \"testSsoConfig\"]" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[cannotTestSso ? \"close\" : \"cancel\"],\n\t\t\t\t\t\tonClick: cancelSsoTest\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.test,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: testSsoConfiguration,\n\t\t\t\t\t\tisDisabled: cannotTestSso\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.setUpSso" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.cancel,\n\t\t\t\t\t\tonClick: cancelSsoSetup\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.sendRequest,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: sendSsoSetupRequest,\n\t\t\t\t\t\tisDisabled: !canSendRequest || submittingTicket,\n\t\t\t\t\t\tdataQa: \"sendRequestButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: cancelButtonLabel || userGroupManagement.cancel,\n\t\t\t\t\tonClick: cancelHandler,\n\t\t\t\t\tdataQa: \"cancelNotificationHandlerQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionButtonLabel,\n\t\t\t\t\tid: \"notificationModalActionButton\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: actionHandler,\n\t\t\t\t\tdataQa: \"notificationModalActionButton\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroupManagement.removeClaimMapping" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.cancel,\n\t\t\t\t\tonClick: () => setIsClaimMappingRemoveDialogOpen(false),\n\t\t\t\t\tdataQa: \"cancelClaimMappingQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.remove,\n\t\t\t\t\tid: \"deleteClaimMappingId\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: deleteClaimMapping,\n\t\t\t\t\tdataQa: \"deleteClaimMappingQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "confirmDialogOpen || errorDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: supportPage.dialog.close,\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tdataQa: \"supportTicketModelOKButton\",\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestLimitChangeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestLimitChangeDialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.close,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeCloseAction\",\n\t\t\t\t\t\t\tonClick: onCloseRequestLimitChange\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.sendRequest,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeSendRequestAction\",\n\t\t\t\t\t\t\tonClick: onRequestLimitChange,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: !limitRequestNumber\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestUpgradeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.dialogTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.cancel,\n\t\t\t\t\t\tdataQa: \"requestUpgradeCloseAction\",\n\t\t\t\t\t\tonClick: onCloseRequestUpgradeDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.sendRequest,\n\t\t\t\t\t\tdataQa: \"requestUpgradeSendRequestAction\",\n\t\t\t\t\t\tonClick: RequestUpgradeHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\t(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||\n\t\t\t\t\t\t\t(!!contactEmail && !isValidEmail(contactEmail))\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDeleteAccountDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.deleteAccountQuestion" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.cancel,\n\t\t\t\t\t\tdataQa: \"cancelDeleteAccountButton\",\n\t\t\t\t\t\tonClick: onCloseDeleteAccountDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.delete,\n\t\t\t\t\t\tdataQa: \"confirmDeleteAccountButton\",\n\t\t\t\t\t\tonClick: deleteAccountHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled: !password\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Deactivate Service Notifications" + }, + { + "name": "contentText", + "type": "string", + "value": "Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed." + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", dataQa: \"cancel\", onClick: () => setOpenConfirmationDialog(false), variant: \"text\" },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Deactivate\",\n\t\t\t\t\t\tdataQa: \"deactivate\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tstopNotifications();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environments.moveDialogLabels.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"move-datacenter-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.move,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-datacenter-ok\",\n\t\t\t\t\tonClick: handleMove,\n\t\t\t\t\tisDisabled: !!errors.environment\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "downloadDialog.errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.downloadFailed" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"OK\", onClick: handleCloseDialog }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "contentText", + "type": "variable", + "value": "undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.new" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: onClose\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.privateRegions.button.sendRequest,\n\t\t\t\t\t\tonClick: onRequest,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tisDisabled: loading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.copyToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\t\tvariant: isCopied ? \"outline\" : \"call-to-action\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tisDisabled: !isCopied,\n\t\t\t\t\t\tdataQa: \"closeTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.genericError.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.regenerateToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Regenerate\",\n\t\t\t\t\t\tonClick: handleRegenerate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmRegenerateTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.deleteToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmDeleteTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingProfile.title.details" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: tracingProfile.button.close,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingSynchDialog.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingSynchDialog.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: close\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingProfile.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "modifyingTracingProfile" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + } + ], + "creationDate": "2021-09-13T14:25:59-04:00" + }, + { + "componentName": "SolaceTextField", + "totalUsages": 161, + "usagesByMfe": { + "ep": 71, + "intg": 35, + "mc": 21, + "saas": 34 + }, + "commonProps": [ + { + "name": "name", + "count": 161 + }, + { + "name": "value", + "count": 159 + }, + { + "name": "onChange", + "count": 125 + }, + { + "name": "dataQa", + "count": 120 + }, + { + "name": "hasErrors", + "count": 101 + }, + { + "name": "helperText", + "count": 101 + }, + { + "name": "label", + "count": 83 + }, + { + "name": "readOnly", + "count": 66 + }, + { + "name": "required", + "count": 60 + }, + { + "name": "onBlur", + "count": 51 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_NAME" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.name" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\" || mode === \"edit\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][registryUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? renderKafkaAuthHelperText(\"registryUrl\") : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[registryUrl]" + }, + { + "name": "label", + "type": "string", + "value": "Registry URL" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUsername" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUrl" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"e.g. ########.messaging.solace.cloud or 123.89.40.72\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.host" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tsetValue(name, value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly && isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"Use a comma (,) to separate the messaging services in the Kafka cluster.\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.bootstrapServers" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "expression", + "value": "loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.port" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "selectedMode === \"view\"" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[solace][messaging][protocol][${index}][port]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "name", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "value", + "type": "variable", + "value": "attributeValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[name]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.messageVPN" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "value", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "mode === \"edit\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\t\t\t\t\t\t\t\t\t\tconst validVersion = semverValid(newValue) ?? newValue;\n\n\t\t\t\t\t\t\t\t\t\tonChange(validVersion);\n\t\t\t\t\t\t\t\t\t\tcheckVersionAndSetWarning(validVersion);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"DuplicateEntityVersion[version]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Name" + }, + { + "name": "value", + "type": "variable", + "value": "variableName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => handleNameValidate()" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "nameErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityNameTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "entityName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxLength + 1" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "label", + "type": "string", + "value": "New Application Domain Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || SHARE_WARNING" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityVersionTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "label", + "type": "string", + "value": "New Application Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || \"\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + }, + { + "name": "disabled", + "type": "expression", + "value": "!domainId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "value", + "type": "variable", + "value": "agentId" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "value", + "type": "expression", + "value": "scan.messagingServiceName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "topicAddress" + }, + { + "name": "label", + "type": "string", + "value": "Topic Address" + }, + { + "name": "value", + "type": "expression", + "value": "selectedAudits[0].identifier" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`detailsName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "clientProfileName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetClientProfileName(e.value);\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`clientProfileName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "email-input" + }, + { + "name": "name", + "type": "string", + "value": "email-input" + }, + { + "name": "type", + "type": "string", + "value": "email" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress" + }, + { + "name": "helperText", + "type": "expression", + "value": "!isValid ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.eventPortalResources.labels.startJourney.inviteUsers.helperTextError\n\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!isValid" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEmailInput" + }, + { + "name": "value", + "type": "variable", + "value": "email" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "variable", + "value": "validateEmail" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonChange(value?.trim());\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-postRequestTarget`" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message || \"\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderName" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value ? value.trim() : \"\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`restDeliveryPointName-editor`" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!getValues(`${formName}.configurationTypeId`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormCustomizedClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "messagesConfiguration.solaceClientProfileName.clientProfileName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (e.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\thandleFilenameUpdate(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\thandleFilenameUpdate(value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filenameInput`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumeration[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (semverValid(newValue) !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tcheckIfVersionStillLatestAfterUpdate(newValue, versionId);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(semverValid(newValue) ?? newValue);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "isDuplicateVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "nodeNameTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomain-graph-object-name-field" + }, + { + "name": "value", + "type": "variable", + "value": "nodeName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "handleKeyDown" + }, + { + "name": "onFocus", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetTimeout(() => e.target.select(), 100); // Delay to ensure select() works\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "`${nameEditorWidth}px`" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxNameLength + 1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${level.name}-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error && \"Invalid Format\"" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxTTLTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxMsgSpoolUsageTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`planNameTextField-${index}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isGlobal" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"applicationDomain[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDisplayName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesLink" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "type", + "type": "string", + "value": "url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[version]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventVersion[version]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"application[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.common.labels.name" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputA" + }, + { + "name": "value", + "type": "expression", + "value": "inputA ?? \"\"" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputAValidationError" + }, + { + "name": "helperText", + "type": "variable", + "value": "inputAValidationError" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputA" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputB" + }, + { + "name": "value", + "type": "expression", + "value": "inputB || \"\"" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || (configuration.inputB.type === \"password\" && !isEditing)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputBValidationError" + }, + { + "name": "helperText", + "type": "expression", + "value": "inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputB" + }, + { + "name": "readOnly", + "type": "expression", + "value": "configuration.inputB.type !== \"password\" && !isEditing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "name ?? \"emptyName\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Name\"" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newName = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newName = name.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"name\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "placeholder", + "type": "variable", + "value": "placeholder" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "topic ?? \"emptyTopic\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "topic" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newTopic = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newTopic = topic.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "variable", + "value": "label" + }, + { + "name": "maxLength", + "type": "variable", + "value": "maxLength" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.host" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionDetailsHostTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.host)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: host }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\thost: host\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.host" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.host" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.messageVpn" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: msgVpn }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: msgVpn\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.messageVpn)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.msgVpn\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.messageVpn" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "solaceBindingDestination" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destination }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestination: destination\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destination" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceBindingDestinationTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tvalidateDestination();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.destination" + }, + { + "name": "helperText", + "type": "expression", + "value": "solaceValidationErrors.destination && validationEnabled\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.destination\n\t\t\t\t\t\t\t\t\t\t\t: // flipped because solaceDirection is the opposite of the actual connector direction\n\t\t\t\t\t\t\t\t\t\t\tisEqual(solaceDirection, ConnectorDirection.Source)\n\t\t\t\t\t\t\t\t\t\t\t? en.connectors.helperText.destinationTarget\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.destinationSource" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "value", + "type": "expression", + "value": "String(constantField.constantValue)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.headerName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, headerName: e.value });\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "headerName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderName(e.value);\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeaderExample" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerExpressionExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.headerExpressionExample" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "type", + "type": "expression", + "value": "sensitiveField && !showSensitiveField ? \"password\" : \"text\"" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "endAdornment", + "type": "variable", + "value": "endAdornment" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textField`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "props.value ? \"\" : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "values.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => setValues({ ...values, name })" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tif (isEmpty(values.name)) {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({\n\t\t\t\t\t\t\t\t\t...initialStepValidationErrors,\n\t\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({ ...initialStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!initialStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled ? initialStepValidationErrors.name : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "tokenUri" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.tokenUri" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenUriTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: tokenUri }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\ttokenUri: tokenUri\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.tokenUri)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.tokenUri" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientId" + }, + { + "name": "dataQa", + "type": "string", + "value": "tclientIdTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientId }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientId: clientId\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientId)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientId" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientSecret" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientSecret" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientSecretTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientSecret }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientSecret: clientSecret\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientSecret)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientSecret\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientSecret" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientSecret\n\t\t\t\t\t\t? solaceValidationErrors.clientSecret\n\t\t\t\t\t\t: \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "showClientSecret ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowClientSecret(!showClientSecret)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showClientSecret ? : }\n\t\t\t\t\t\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "scopes" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.scopes" + }, + { + "name": "dataQa", + "type": "string", + "value": "scopesTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: scopes }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientName }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameBasicAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientUsername)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.basicAuthUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername\n\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientPasswordTextField" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientPassword }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientPassword: clientPassword\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowPassword(!showPassword)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showPassword ? : }\n\t\t\t\t\t\n\t\t\t\t]" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientPassword)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientPassword\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.clientPassword" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.clientPassword && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.clientPassword\n\t\t\t\t\t\t\t: en.connectors.helperText.clientPassword\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "\"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStorePassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslKeyStorePassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStorePassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStorePasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStorePassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslKeyStorePassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyAliasName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyAliasName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyAliasName" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyAliasNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyAliasName }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyPassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyPasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyPassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameClientCertAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!readOnly && !!solaceValidationErrors.clientCertUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "connectorDetails.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => {\n\t\t\t\t\t\tsetConnectorDetails({ ...connectorDetails, name });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tif (isEmpty(connectorDetails.name)) {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({\n\t\t\t\t\t\t\t\t...detailsStepValidationErrors,\n\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!detailsStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "clone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "eventBrokerService" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "authenticationTypeReadOnlyField" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(basicAuthValues.clientUsername)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "value", + "type": "variable", + "value": "clientPassword" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "key" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(key)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "value" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(hasBlurred || isSubmitted) && hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "(hasBlurred || isSubmitted ? errorText : \"\") || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "name", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "dataQa", + "type": "string", + "value": "newMessageSpoolSize" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_msg_spool_size_label\", message: \"New Message Spool Size (GB)\" })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "progress" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "4" + }, + { + "name": "value", + "type": "expression", + "value": "messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasMessageStorageErrors ? messageStorageErrorText : t({ id: \"id_default_size_gb\", message: \"Default: {0} GB\", values: { 0: formatter.format(defaultMessageSpoolSize) } })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-service-confirm-name" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\tPlease type {matchText} to confirm.\n\t\t\t\t\t\t\t" + }, + { + "name": "value", + "type": "variable", + "value": "matchName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setMatchName(e.value)" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "rename-service-name" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_service_name_label\", message: \"Service Name\" })" + }, + { + "name": "value", + "type": "variable", + "value": "newName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNewName(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "isEmpty\n\t\t\t\t\t\t\t? t({ id: \"id_rule_enter_value\", message: \"Required. Enter a value.\" })\n\t\t\t\t\t\t\t: hasErrors\n\t\t\t\t\t\t\t? t({ id: \"id_rule_less_n_chars\", message: \"Exceeds limit. Enter a value under {0} characters.\", values: { 0: 50 } })\n\t\t\t\t\t\t\t: \"\\xa0\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accessType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_access_type\", message: \"Access Type\" })" + }, + { + "name": "value", + "type": "expression", + "value": "i18n._(accessTypes[endpoint.accessType])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msg_spool_size" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_cur_msg_spool_size\", message: \"Current Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "variable", + "value": "messageSpoolSize" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "tracingProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingClientUsername" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_client_username\", message: \"Tracing Client Username\" })" + }, + { + "name": "value", + "type": "expression", + "value": "\"sc-dt-trace-collector\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationClientCertEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_client_cert_auth\", message: \"Client Certificate Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationClientCertEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationOauthEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_oauth_provider_auth\", message: \"OAuth Provider Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationOauthEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "filterName" + }, + { + "name": "name", + "type": "string", + "value": "filterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-filter-name" + }, + { + "name": "value", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "t({ id: \"id_filter_services\", message: \"Filter by service name\" })" + }, + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\ticon: filter ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: filter ? handleClearFilter : undefined\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : formatter.format(parseInt(messageStorage.value))" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "messageStorageErrorText" + }, + { + "name": "readOnly", + "type": "expression", + "value": "activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "namePort" + }, + { + "name": "name", + "type": "variable", + "value": "namePort" + }, + { + "name": "dataQa", + "type": "variable", + "value": "namePort" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "5" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "value", + "type": "variable", + "value": "port" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "name", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_message_vpn_name_help\", message: \"The message VPN name cannot be changed once the service is created.\" })" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "name" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "name" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasAnyErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "anyErrorText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceLimitValue" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.newServiceLimit" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceLimitChange" + }, + { + "name": "value", + "type": "variable", + "value": "newServiceLimit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"serviceLimitValue\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environmentFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "environmentsStr.environmentList.filterPlaceholder" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFilterInput" + }, + { + "name": "width", + "type": "expression", + "value": "\"313px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.environmentName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "environmentName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvNameChange" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "isDuplicate || hasError || hasNameRequiredError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envNameTestId" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "firstNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "firstNameError ? myProfile.firstNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userFirstName" + }, + { + "name": "id", + "type": "string", + "value": "userFirstName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userFirstName" + }, + { + "name": "value", + "type": "variable", + "value": "firstNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFirstName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "lastNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "lastNameError ? myProfile.lastNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userLastName" + }, + { + "name": "id", + "type": "string", + "value": "userLastName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userLastName" + }, + { + "name": "value", + "type": "variable", + "value": "lastNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLastName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "oldPasswordReq" + }, + { + "name": "helperText", + "type": "expression", + "value": "oldPasswordReq ? myProfile.oldPasswordReq : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "id", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "value", + "type": "variable", + "value": "oldPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOldPasswordChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "newPasswordError.length > 0" + }, + { + "name": "helperText", + "type": "variable", + "value": "newPasswordError" + }, + { + "name": "name", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "id", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "confirmPasswordError" + }, + { + "name": "helperText", + "type": "expression", + "value": "confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning" + }, + { + "name": "name", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "id", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValueConfirm" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordConfirmChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.ugName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "userGroupName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGNameChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "hasNameError || isDuplicate || hasNoNameError || isDefaultError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupNameQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userGroupSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupSearchQa" + }, + { + "name": "value", + "type": "variable", + "value": "userGroupSearchValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSearchValue" + }, + { + "name": "placeholder", + "type": "expression", + "value": "userGroups.userGroupsHome.search" + }, + { + "name": "size", + "type": "number", + "value": "155" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tuserGroupSearchValue ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "width", + "type": "string", + "value": "20rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientId?.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientIdErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientId, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientId" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientId.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "hideSecretKey ? \"password\" : \"text\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientSecretKey" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientSecretKeyErrorMsg);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientSecretKey, value, errors } };\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientSecretKey" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientSecretKey.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.oidcDiscoveryUrl.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.discoveryUrlExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "oidcDiscoveryUrl" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.discoveryUrl" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.additionalScopes.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.additionalScopesExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "additionalScopes" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.indexOf(\" \") >= 0) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.noWhiteSpaceAllowed);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.additionalScopes, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalScopes" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.additionalScopes.value as string" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "name", + "type": "string", + "value": "preferredSubdomain" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setPreferredSubdomainText({ edited: true, text: e.value })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "value", + "type": "expression", + "value": "preferredSubdomain.text" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest" + }, + { + "name": "helperText", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "string", + "value": "preferredSubdomainTextField" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "userGroupManagement[\n\t\t\t\t\t\t\t\t\tclaimIdChanged && claimId.trim().length < 1 ? \"claimIdError\" : \"identityProviderHelperText\"\n\t\t\t\t\t\t\t\t]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "claimIdChanged && claimId.trim().length < 1" + }, + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.identityProviderLabel" + }, + { + "name": "name", + "type": "string", + "value": "claimId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => claimIdChangeHandler(value)" + }, + { + "name": "value", + "type": "variable", + "value": "claimId" + }, + { + "name": "dataQa", + "type": "string", + "value": "roleId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editClaimValuesFieldId" + }, + { + "name": "name", + "type": "string", + "value": "editClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage :  " + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "name", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage : undefined" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "summaryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleSummaryError()" + }, + { + "name": "name", + "type": "string", + "value": "summaryfield" + }, + { + "name": "id", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "value", + "type": "variable", + "value": "summaryValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSummaryFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "errorIdError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorIdError()" + }, + { + "name": "name", + "type": "string", + "value": "errorField" + }, + { + "name": "id", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "value", + "type": "variable", + "value": "errorIdValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleErrorIdFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "350" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setLimitRequestNumber(+value)" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "limitRequestNumber" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.totalObjects" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "15rem" + }, + { + "name": "data-qa", + "type": "string", + "value": "limitRequestNumberInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setContactEmail(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "value", + "type": "variable", + "value": "contactEmail" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail)" + }, + { + "name": "helperText", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.overview.banner.errorHelperText}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setPassword(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "value", + "type": "variable", + "value": "password" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "width", + "type": "string", + "value": "45rem" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "inCorrectPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "password" + }, + { + "name": "helperText", + "type": "expression", + "value": "inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "name", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "title", + "type": "expression", + "value": "en.forgotPassword.resetPasswordFieldTitle" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.forgotPassword.email" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetPasswordEmailInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "string", + "value": "List of Emails" + }, + { + "name": "value", + "type": "variable", + "value": "handle" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setHandle(value)" + }, + { + "name": "onFocus", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))" + }, + { + "name": "onBlur", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({\n\t\t\t\t\t\t...previous,\n\t\t\t\t\t\t[name]: { hasErrors: false, helperText: handle ? \"\" : helperText.warning(name) }\n\t\t\t\t\t}))" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "helper.hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "helper.helperText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "width", + "type": "string", + "value": "45%" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search..." + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSearch(event.value)" + }, + { + "name": "value", + "type": "variable", + "value": "search" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "tokenFormValues.name" + }, + { + "name": "aria-label", + "type": "string", + "value": "Name" + }, + { + "name": "data-lpignore", + "type": "string", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameError ?? undefined" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => dispatch(setTokenName(e.value))" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_displayName" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.name.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination?.displayName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.type.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tracingType[tracingDestination?.tracingBackendType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.connectionType.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[tracingDestination.connectionType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.region.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.datadogSite[tracingDestination.datadogSite]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.endpoint.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.endpoint" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_apiKey" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.datadogApiKey.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.datadogApiKey" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceStack", + "totalUsages": 132, + "usagesByMfe": { + "ep": 64, + "intg": 53, + "mc": 3, + "saas": 12 + }, + "commonProps": [ + { + "name": "spacing", + "count": 57 + }, + { + "name": "direction", + "count": 29 + }, + { + "name": "width", + "count": 10 + }, + { + "name": "justifyContent", + "count": 10 + }, + { + "name": "padding", + "count": 10 + }, + { + "name": "alignItems", + "count": 7 + }, + { + "name": "height", + "count": 7 + }, + { + "name": "bgcolor", + "count": 4 + }, + { + "name": "paddingLeft", + "count": 3 + }, + { + "name": "paddingTop", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "width", + "type": "number", + "value": "600" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.25" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(3)" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"360px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "mb", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "my", + "type": "number", + "value": "2.5" + }, + { + "name": "width", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "1" + }, + { + "name": "marginBottom", + "type": "number", + "value": "1" + }, + { + "name": "data-qa", + "type": "string", + "value": "manageCredentialsEditor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "string", + "value": "wrap" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 80px)`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "expression", + "value": "\"wrap\"" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "pr", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "connectorsSidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "6" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "ml", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "mt", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "3" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "height", + "type": "expression", + "value": "allItems.length !== 0 ? `calc(100vh + 80px)` : \"100%\"" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "38rem" + }, + { + "name": "height", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ minHeight: \"45vh\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "marginTop", + "type": "variable", + "value": "marginTop" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "0.5" + } + ] + } + ], + "creationDate": "2022-04-04T15:27:33-04:00" + }, + { + "componentName": "SolaceSelect", + "totalUsages": 104, + "usagesByMfe": { + "ep": 72, + "intg": 10, + "mc": 12, + "saas": 10 + }, + "commonProps": [ + { + "name": "name", + "count": 104 + }, + { + "name": "value", + "count": 104 + }, + { + "name": "onChange", + "count": 102 + }, + { + "name": "dataQa", + "count": 90 + }, + { + "name": "label", + "count": 61 + }, + { + "name": "id", + "count": 58 + }, + { + "name": "hasErrors", + "count": 43 + }, + { + "name": "helperText", + "count": 43 + }, + { + "name": "required", + "count": 36 + }, + { + "name": "disabled", + "count": 34 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_TYPE" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.brokerType" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode !== \"create\"" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "name", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => undefined" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "content.type" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isJaasConfigPassword || readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.authentication.auth.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][saslscram][saslMechanism]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][saslscram][saslMechanism]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.saslMechanism" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.transport" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleTransportChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.type" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Environment`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onEnvironmantChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.environmentError || !!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.environmentError ?? validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.environment" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.mem" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersion[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Application version to add`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onApplicationVersionChange" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationVersion?.id" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.applicationDomain" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomainId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.applicationDomainError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.applicationDomainError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProduct" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedApplicationDomainId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProductVersion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductVersionSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductVersionId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductVersionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductVersionError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => RESOURCE_LABEL_BY_ROLE[value]" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "name", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "version.id" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"valueType\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-type-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"scope\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-scope-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isDomainManager" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg && !isDomainManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${entityName}[versionState]`" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "versionStateId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "stateSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumerationVersion" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersionName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumVersionId" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnumOption || getEnumVersions.isLoading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => valueToMenuItemMap.get(value) || \"\"" + }, + { + "name": "width", + "type": "string", + "value": "35%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationDomain?.value" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${entityTypeToLabel(entityType)} Version`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEntityVersionId" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityVersionChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "versionIncrementStrategySelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionIncrementStrategy" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"versionIncrementStrategySelect\"" + }, + { + "name": "label", + "type": "string", + "value": "Version Incrementing" + }, + { + "name": "width", + "type": "expression", + "value": "width ?? \"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "name", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Graph Type\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Agent Mode" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => EMA_MODES_LABELS[value]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getRuntimeAgentModeErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getRuntimeAgentModeErrorMessage" + }, + { + "name": "name", + "type": "string", + "value": "agent mode" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDiscoveryScanModeChange" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!agentId" + }, + { + "name": "width", + "type": "string", + "value": "620px" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.runtimeAgentMode" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceType" + }, + { + "name": "width", + "type": "string", + "value": "30%" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLayoutTypeChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"90px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "levelDepthString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLevelDepthChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"55px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[environmentSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Environment\"" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[eventMeshSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Modeled Event Mesh\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEnvironmentId === \"\" || eventMeshSelectOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[messagingServiceSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEventMeshId === \"\" || messagingServiceOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventFlowFilterChange" + }, + { + "name": "id", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "name", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "value", + "type": "variable", + "value": "eventFlowOption" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || graphNodeExceeded" + }, + { + "name": "width", + "type": "string", + "value": "280px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "value", + "type": "expression", + "value": "audits[0].id" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "name", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectMessagingServiceChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "350px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleSecondVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSecondVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "async (e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\ttrigger(`${configurationName}-postRequestTarget`);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!getValues(`${configurationName}-postRequestTarget`)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-requestTargetEvaluation`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderType" + }, + { + "name": "name", + "type": "expression", + "value": "`${configurationName}-request`" + }, + { + "name": "value", + "type": "variable", + "value": "requestHeaderType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setRequestHeaderType(e.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\thandleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointConfigurationType-selector" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "context.value" + }, + { + "name": "name", + "type": "string", + "value": "contextSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "contextSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleContextOptionChange" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!isDisabled" + }, + { + "name": "width", + "type": "string", + "value": "400px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDelimiterChange" + }, + { + "name": "value", + "type": "variable", + "value": "delimiter" + }, + { + "name": "disabled", + "type": "variable", + "value": "hasFetchError" + }, + { + "name": "width", + "type": "string", + "value": "150px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"AsyncAPI Version\"" + }, + { + "name": "name", + "type": "string", + "value": "AsyncAPI Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetVersion(e.value as EPSupportedAsyncApiVersion);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Document Extensions\"" + }, + { + "name": "name", + "type": "string", + "value": "documentExtensions" + }, + { + "name": "value", + "type": "variable", + "value": "extension" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetExtension(e.value as SupportedAsyncApiExtensionOptions);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\tconst match = documentExtensionOptions.find((props) => props.value === value);\n\n\t\t\t\treturn match ? match.name : \"\";\n\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredPlan : null" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.plan" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t// borkerType is used in the parent, pass the value back.\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApi[brokerType]" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`queueTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[approvalType]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || brokerTypes[0].value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => brokerTypes.find((type) => type.value === value)?.name || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetSelectedSchemaType(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isNew || consumerTypeMenuItems?.length === 1" + }, + { + "name": "disabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\t\t\t// clear any configuration when changing consumer type\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configuration`, undefined);\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configurations`, []);\n\n\t\t\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Modeled Event Mesh`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => updateBrokerType(e.value, index)" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\thandleBrokerTypeChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[brokerType]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[requiresApproval]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeSchemaVersion" + }, + { + "name": "value", + "type": "expression", + "value": "viewedSchemaVersion?.id" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Schema Type\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "\"Access Approval\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[accessApproval]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEdit || !onBrokerTypeChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedMem" + }, + { + "name": "value", + "type": "expression", + "value": "memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tconst memId = e.value === designedEventFlowOption.value ? \"\" : e.value;\n\n\t\t\t\t\t\tsetSelectedMemId(memId);\n\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionDetailMemFilter`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.consumerType" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\ttrigger(\"subscriptions\"); // trigger validation\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "dataQa", + "type": "string", + "value": "consumerSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "name", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials.configurationTypeId" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeConfigurationType" + }, + { + "name": "value", + "type": "expression", + "value": "configuration.typeId" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "authenticationType" + }, + { + "name": "id", + "type": "string", + "value": "authenticationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "name", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: authType }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthenticationType: authType as AuthenticationType\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authenticationType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"solaceDestinationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destinationType }) =>\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestinationType: destinationType\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destinationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEqual(solaceDirection, ConnectorDirection.Source) ? true : false" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceDestinationType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\tsetConstantField({\n\t\t\t\t\t\t\t...constantField,\n\t\t\t\t\t\t\tdataType: dataType,\n\t\t\t\t\t\t\tconstantValue: getDefaultConstantValue(dataType)\n\t\t\t\t\t\t});\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, dataType: dataType });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetHeaderDataType(dataType);\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "headerDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantDataType(dataType);\n\t\t\t\t\t\tsetDefaultConstantValue(dataType);\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "constantDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "expression", + "value": "props.value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "title", + "type": "expression", + "value": "props.title" + }, + { + "name": "id", + "type": "expression", + "value": "props.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFormatTypeField" + }, + { + "name": "id", + "type": "string", + "value": "sslKeyStoreFormatType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStoreFormat" + }, + { + "name": "name", + "type": "expression", + "value": "\"sslKeyStoreFormat\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStoreFormat }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "clientCertValues.sslKeyStoreFormat" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "view" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_view_by\", message: \"View by\" })" + }, + { + "name": "value", + "type": "variable", + "value": "view" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeView" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"connect-view-by\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "protocol" + }, + { + "name": "name", + "type": "string", + "value": "protocol" + }, + { + "name": "dataQa", + "type": "string", + "value": "protocol" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_protocol\", message: \"Protocol\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "protocolIndex.toString()" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hosturi" + }, + { + "name": "name", + "type": "string", + "value": "hosturi" + }, + { + "name": "dataQa", + "type": "string", + "value": "hosturi" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_hosturi\", message: \"Host URI\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "hostUri" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHostUriChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "data-qa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "selectedTracingProfileId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!selectedTracingProfileId && isSubmitted" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectedTracingProfileId || !isSubmitted ? \"\" : t({ id: \"id_dt_select_tracing_dest\", message: \"Required. Select a tracing destination.\" })" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedTracingProfileId(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloud" + }, + { + "name": "name", + "type": "string", + "value": "cloud" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloud" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "cloudDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "20rem" + }, + { + "name": "id", + "type": "string", + "value": "userGroupDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupDropdownQa" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectedUserGroupRole" + }, + { + "name": "title", + "type": "string", + "value": "User Group Select" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroupRole" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.timeRange" + }, + { + "name": "name", + "type": "string", + "value": "timeRange" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Time Range" + }, + { + "name": "value", + "type": "expression", + "value": "filters.timeRange.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.status" + }, + { + "name": "name", + "type": "string", + "value": "status" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Status" + }, + { + "name": "value", + "type": "expression", + "value": "filters.status.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.category" + }, + { + "name": "name", + "type": "string", + "value": "category" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Category" + }, + { + "name": "value", + "type": "expression", + "value": "filters.category.value" + }, + { + "name": "id", + "type": "string", + "value": "categoryFilter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "disabled", + "type": "expression", + "value": "!filters.category.value" + }, + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.event" + }, + { + "name": "name", + "type": "string", + "value": "event" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Event" + }, + { + "name": "value", + "type": "expression", + "value": "filters.event.value" + }, + { + "name": "helperText", + "type": "expression", + "value": "!filters.category.value ? en.auditLogs.selectCategory : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventFilter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "environments.moveDialogLabels.destinationEnvironment" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceCheckBox", + "totalUsages": 82, + "usagesByMfe": { + "ep": 45, + "intg": 1, + "mc": 9, + "saas": 27 + }, + "commonProps": [ + { + "name": "name", + "count": 81 + }, + { + "name": "checked", + "count": 78 + }, + { + "name": "onChange", + "count": 72 + }, + { + "name": "dataQa", + "count": 70 + }, + { + "name": "label", + "count": 58 + }, + { + "name": "id", + "count": 29 + }, + { + "name": "readOnly", + "count": 20 + }, + { + "name": "hasErrors", + "count": 11 + }, + { + "name": "helperText", + "count": 11 + }, + { + "name": "disabled", + "count": 10 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][tls]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "isTLSChecked" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "readOnly || loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "checkedItems[option.value]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "disabled", + "type": "expression", + "value": "optionDisabled(option, selectedMessagingService)" + }, + { + "name": "label", + "type": "expression", + "value": "option.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetSubscribeToEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "subscribeToEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isSubscribeReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationSubscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "publishEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetPublishEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "publishEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isPublishReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationPublishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"keepParent\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"keepEntityCheckbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleKeepParentChange(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{ label: `Creates a new version of the ${entityType}`, light: true }" + }, + { + "name": "checked", + "type": "variable", + "value": "keepParent" + }, + { + "name": "label", + "type": "expression", + "value": "`I want to keep the ${entityType}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "checkboxName ?? \"customhookCheckbox\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationDomain" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationDomain" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.state" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.state" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.state" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.shared" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.shared" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.shared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.brokerType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.brokerType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.brokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.eventMesh" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.eventMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "checked", + "type": "expression", + "value": "currentFilters.includes(filterType)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "renderCheckboxLabel(customAttributes[0].name)" + }, + { + "name": "checked", + "type": "expression", + "value": "!!selectedFilters.find((filter) => filter.type === filterType)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "broker" + }, + { + "name": "label", + "type": "string", + "value": "Broker" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!brokerEnabled && !toDisableBrokerScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover consumer groups and topics.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableBrokerScan()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "confluentSchemaRegistry" + }, + { + "name": "label", + "type": "string", + "value": "Confluent Schema Registry" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSchemaRegistryOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover schemas from Confluent.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableSchemaRegistryScan()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Show only the modeled event meshes I can access" + }, + { + "name": "name", + "type": "string", + "value": "Filter By Access" + }, + { + "name": "checked", + "type": "variable", + "value": "filterByAccess" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggleFilterByAccessOnChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dontShowConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Don't show this message again.`" + }, + { + "name": "checked", + "type": "expression", + "value": "!showDialogAgain" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dontShowConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowDialogAgain(!event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"requiredConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Require confirmation\"" + }, + { + "name": "checked", + "type": "variable", + "value": "showConfirmDialogBox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"requiredConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleRequireConfirmCheckbox(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"hideAuditResults\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`" + }, + { + "name": "checked", + "type": "expression", + "value": "showHiddenAudits !== \"false\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"hideAuditResults-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleHideTagCheckbox(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"selectAllDomains\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"selectAllDomainsCheckbox\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAllDomainsCheck" + }, + { + "name": "checked", + "type": "variable", + "value": "isChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "isChecked && selectedDomainIds.length !== items.length" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumeration[shared]" + }, + { + "name": "label", + "type": "string", + "value": "Allow Enumeration to be shared across application domains" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[shared]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNamingStrategyChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetOnlyShowEventsWithoutSubscription(e.value);\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "label", + "type": "string", + "value": "Show events without a consumer subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetTopicDomainEnforcement(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!value && !hasValidTopicDomain" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[uniqueTopicAddressEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"uniqueTopicAddressEnforcementEnabled\"" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[topicDomainEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.topicDomainEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[nonDraftDescriptionsEditable]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.nonDraftDescriptionsEditable" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "disabled", + "type": "variable", + "value": "sharedSchema" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\thandleSharedChanged(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "publishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "filter.value" + }, + { + "name": "name", + "type": "expression", + "value": "filter.name" + }, + { + "name": "checked", + "type": "expression", + "value": "filtersMap[application?.id]?.[filter.value]" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`environment-filters-${filter.value}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"doNotShowAgain\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Do not show this warning again\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => props.onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "checked", + "type": "expression", + "value": "props.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_manager\", message: \"Rotate Mission Control Manager permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_manager" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"manager\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleManagerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_manager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_editor\", message: \"Rotate Mission Control Editor permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_editor" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"admin\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEditorChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_editor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_viewer\", message: \"Rotate Mission Control Viewer permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_viewer" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"viewer\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleViewerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_viewer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showMyServices" + }, + { + "name": "name", + "type": "string", + "value": "showMyServices" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-show-mine" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_only_my_services\", message: \"Only show my services\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "userOnly" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetUserOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showDiffs" + }, + { + "name": "name", + "type": "string", + "value": "showDiffs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_differences\", message: \"Show only differences\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "showDiffs" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowDiffs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "name", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mate_link_label\", message: \"Enable mate-link encryption\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: t({ id: \"id_mate_link_text\", message: \"This will encrypt the communication between the primary and backup brokers in a HA setup.\" }),\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "name", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_clone_cert_auth\", message: \"Duplicate all Client and Domain Certificate Authorities\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: This will copy all certificates existing on the source event broker service to the new event broker service.,\n\t\t\t\t\tlight: true\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "name", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "dataQa", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: \"id_port_label\", message: `Enable ${meta.label}, use port:` })}\n\t\t\t\t\t\t" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "checked", + "type": "expression", + "value": "!disabled" + }, + { + "name": "readOnly", + "type": "expression", + "value": "checkboxDisabled || !isPortDisablingEnabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolToggle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmDeleteEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleConfirmDelete" + }, + { + "name": "checked", + "type": "variable", + "value": "confirmDelete" + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDeleting" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmASEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "checked", + "type": "variable", + "value": "isServiceCreationAllowed" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "disabled", + "type": "expression", + "value": "isError || dialogState.updating" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "templateType" + }, + { + "name": "name", + "type": "variable", + "value": "templateType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${templateType}Checkbox`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{environments.configurationTemplates[templateType].label}\n\t\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "variable", + "value": "updateTemplateTypeEnforcement" + }, + { + "name": "checked", + "type": "expression", + "value": "templateStatus.isEnforced" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "name", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "name", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"marketing\"]?.email : false" + }, + { + "name": "id", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "name", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"marketing\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.jitProvisionMainText}\n\t\t\t\t\t\t{userGroupManagement.jitProvisionSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsJitProvisioningChecked(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "isJitProvisioningChecked" + }, + { + "name": "title", + "type": "string", + "value": "Enable Just-in-Time provisioning" + }, + { + "name": "dataQa", + "type": "string", + "value": "jitProvisionCheckboxId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "id", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.customizeGroupMainText}\n\t\t\t\t\t\t{userGroupManagement.customizeGroupSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "checked", + "type": "variable", + "value": "isCustomizeUserGroupChecked" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => customizeDefaultUserGroupCheck(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{isCustomizeUserGroupChecked ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titemMappingCallback={(option) => option}\n\t\t\t\t\t\t\t\t\toptionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}\n\t\t\t\t\t\t\t\t\tonChange={handleUserGroupSelectChange}\n\t\t\t\t\t\t\t\t\tfetchOptionsCallback={handleFetchProtocolOptionsCallback}\n\t\t\t\t\t\t\t\t\tisOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}\n\t\t\t\t\t\t\t\t\twidth=\"30rem\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "title", + "type": "string", + "value": "Customize Default UserGroup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventMesh" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventMeshFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventPortal" + }, + { + "name": "name", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventPortalFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventPortal" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onPermissionCheckboxChange(permission.id)" + }, + { + "name": "name", + "type": "expression", + "value": "permission.id" + }, + { + "name": "checked", + "type": "expression", + "value": "!!isPermissionSelected[permission.id]" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "dataQa", + "type": "expression", + "value": "permission.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceAccordion", + "totalUsages": 75, + "usagesByMfe": { + "ep": 52, + "intg": 4, + "mc": 12, + "saas": 7 + }, + "commonProps": [ + { + "name": "summary", + "count": 75 + }, + { + "name": "details", + "count": 75 + }, + { + "name": "expanded", + "count": 75 + }, + { + "name": "onChange", + "count": 75 + }, + { + "name": "dataQa", + "count": 48 + }, + { + "name": "border", + "count": 38 + }, + { + "name": "key", + "count": 26 + }, + { + "name": "backgroundColor", + "count": 11 + }, + { + "name": "hover", + "count": 7 + }, + { + "name": "indicatorVariant", + "count": 6 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "getEntityDetailsTitle" + }, + { + "name": "details", + "type": "variable", + "value": "getEntityDetailsPanel" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}DetailsAccordion`" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.noChange, null, null)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "applicationsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Application Domains\", appDomains.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(appDomains)" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "memsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMEMClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Modeled Event Meshes\", mems.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(mems)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "environmentsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Environments\", environments.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(environments)" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEventDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "entityType ? `customAttributes-${entityType}-accordion` : null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{`Custom Attributes (${count})`}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t{errorMsg && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{errorMsg}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{!errorMsg && <>{customAttributeValueList}}\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Appearance" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{formMethods && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityAppearance" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails(associatedEnvironmentList)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `eap-${eventApiProductVersion.id}`" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.environmentId" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `messagingService-${item.environmentId}`" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? \"error\" : undefined" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{title}\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t handleDownloadFile(evt, details, emaType, downloadButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleCopyFile(evt, details, emaType, copyButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{details}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onToggle()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tConnection File Details\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t handleDownloadFile(evt)}>\n\t\t\t\t\t\t\t\t\tDownload\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tCopy\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{confFileContent}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChange(\"confFile\")" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionFileDownloadDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "EmaPreflightCheckListAccordion" + }, + { + "name": "details", + "type": "expression", + "value": "renderSummary(emaMode)" + }, + { + "name": "expanded", + "type": "variable", + "value": "isOpen" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggle" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSideInfoBlurbSummary()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion]" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t onTitleLinkClick(messagingService)}\n\t\t\t\t\t\t\t\tdataQa=\"messagingService[Accordion][Title]\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{isCloudBased && } {!messagingService?.eventMeshId && }\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{brokerTypeLabel[messagingService.messagingServiceType] ?? \"Solace\"}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t{!messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t removeMessagingService(messagingService)} title=\"Remove\" dataQa=\"removeMessagingService\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\tConnected Modeled Event Mesh\n\t\t\t\t\t\t{eventMesh ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{eventMesh?.name}{\" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\tNone\n\t\t\t\t\t\t)}\n\t\t\t\t\t
" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "hasIndicator ? \"info\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "demoAccordionList" + }, + { + "name": "expanded", + "type": "expression", + "value": "serviceAccordionControl[item.id]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleServiceAccordionControl(item.id)" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail(item)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "summary", + "type": "expression", + "value": "renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)" + }, + { + "name": "details", + "type": "expression", + "value": "renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRuntimeAgentExpanded" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "dataQa" + }, + { + "name": "summary", + "type": "variable", + "value": "summaryElement" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"importPreviewAccordion\"" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "isSelected ? \"success\" : null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "summary" + }, + { + "name": "summary", + "type": "jsx", + "value": "{summary}" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEnumVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEnumDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiProductVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiProductDetailsTitle(selectedEventApiProduct)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogSchemaVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getSchemaDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogApplicationVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getApplicationDetailsTitle()" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiDetailsTitle(selectedEventApi)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionClick" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${configurationName}-${type}-${index}-requestHeader`" + }, + { + "name": "summary", + "type": "expression", + "value": "getRequestHeaderSummary(header, type, index)" + }, + { + "name": "details", + "type": "expression", + "value": "getRequestHeaderDetails(header, type, index)" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedHeaders[expandKey]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\tsetExpandedHeaders((prev) => {\n\t\t\t\t\t\tprev[expandKey] = !prev[expandKey];\n\n\t\t\t\t\t\treturn { ...prev };\n\t\t\t\t\t});\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "variable", + "value": "queueBindingDetails" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "expression", + "value": "getQueueBindingDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`restDeliveryPointAccordion`" + }, + { + "name": "summary", + "type": "variable", + "value": "accordionSummary" + }, + { + "name": "details", + "type": "variable", + "value": "restConsumers" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getDomainAccordionSummary(domain)" + }, + { + "name": "details", + "type": "expression", + "value": "getDomainAccordionDetails(domain)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainAccordion-${domain.id}`" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedDomainMap[domain.id] === true" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onAccordionChange(domain.id, expandedDomainMap)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"importDomainValidationAccordion\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "importDomainValidationAccordion" + }, + { + "name": "summary", + "type": "expression", + "value": "customAttributeValidations?.validationMessage" + }, + { + "name": "details", + "type": "expression", + "value": "customAttributeValidations?.validations" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`newNodeAccordion-${brokerType.value}`" + }, + { + "name": "key", + "type": "expression", + "value": "brokerType.value" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "expression", + "value": "dragNDropPanelExpansions[brokerType.value]" + }, + { + "name": "onChange", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tsetDragNDropPanelExpansions((prev) => {\n\t\t\t\t\t\t\tconst newState = { ...prev };\n\n\t\t\t\t\t\t\tnewState[brokerType.value] = !prev[brokerType.value];\n\n\t\t\t\t\t\t\treturn newState;\n\t\t\t\t\t\t})" + }, + { + "name": "summary", + "type": "jsx", + "value": "{`${brokerType.label} Objects`}" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].application);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Application\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].event);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tShared Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Conflicting Objects" + }, + { + "name": "details", + "type": "variable", + "value": "conflictingObjects" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpandClick()" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${consumer.name}-consumerAccordion`" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "getAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "`${topicDomain.length} affected Topic Domains`" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{topicDomain.map((topicDomainEntry) => (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{duplicate && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tUsed in\n\t\t\t\t\t\t\t\t\t\t\t{topicDomainEntry?.applicationDomains?.map(({ name }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t\t\t\t{renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\tTips and Tricks for Topic Addresses\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandTopicAddressHelp" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpandTopicAddressHelp(!expandTopicAddressHelp)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordianClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "request.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-events`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Published Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-subscriptions`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Subscribed Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages.applicationDomain.label}\n\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(applications)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "connectorTypeDetails?.name ?? \"\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderVendorConfigurationDetails()}" + }, + { + "name": "expanded", + "type": "variable", + "value": "showSourceDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowSourceDetails(!showSourceDetails)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "\"Solace\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.eventBrokerService}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{(serviceDetails?.name && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{serviceDetails.name}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)) || {\"-\"}}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.bindingDestination}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{getConnectorSummaryValue(solaceDestination)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "showTargetDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowTargetDetails(!showTargetDetails)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tvalue={clientCertValues.sslKeyStoreFormat}\n\t\t\t\t\t\t\treadOnly={readOnly}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sslKeyStoreFormatTypes.map((option, index) => {\n\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{option}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslKeyStorePassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslPrivateKeyPassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonBlur={() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\thasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}\n\t\t\t\t\t\t\thelperText={\n\t\t\t\t\t\t\t\t!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_spool_resource_calc\", message: \"Expanded Spool Size Billing\" })" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCalculations" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCalculations" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[id]" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-advanced-settings" + }, + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_advanced_settings\", message: \"Advanced Settings\" })" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "advancedSettings" + }, + { + "name": "onChange", + "type": "function", + "value": "(_, expanded) => setAdvancedSettings(expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${endpoint.id}Accordion`" + }, + { + "name": "key", + "type": "expression", + "value": "endpoint.id" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{endpoint.name}\n\t\t\t\t\t\t\t\t\t\t\t\t{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{i18n._(accessTypes[endpoint.accessType])}\n\t\t\t\t\t\t\t\t\t\t{endpoint.description}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa=\"actions\"\n\t\t\t\t\t\t\t\t\t\t\t\tid={`public_actions`}\n\t\t\t\t\t\t\t\t\t\t\t\titems={[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tProtocols\n\t\t\t\t\t\t\t\t\t\t\t\tStatus\n\t\t\t\t\t\t\t\t\t\t\t\tPort\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{protocols.map((port) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst value = ports.get(port.protocol);\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{port.label}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? \"Enabled\" : \"Disabled\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? value.port : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandPublicEndpoint[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_used_by_n_services\", message: plural(cluster?.serviceNames.length ?? 0, { one: \"Used by # service\", other: \"Used by # services\" }) })" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "cluster-name-services" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{cluster.serviceNames.map((serviceName) => (\n\t\t\t\t\t\t\t\t\t
{serviceName}
\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 1: Configuration on the Event Broker\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tYou must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Broker Manager's Telemetry\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-1-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep1" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep1Click" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 2: Trace Collection\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCheck Status\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{isConfigured ? Update Configuration : Deploy Configuration}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t{distributedTracingStatus === \"notConfigured\" || distributedTracingStatus === \"pending\" || !telemetryProfileName ? (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t{distributedTracingStatus === \"pending\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\tData Collection is not configured.\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"success\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"success\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-2-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep2" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep2Click" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "section.label" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "summary", + "type": "expression", + "value": "section.label" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleSection(index)" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderProperties(section.data, section.properties)}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tAdvanced Connection Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "advanced_connection_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showAdvancedProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAdvancedProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tClone Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "clone_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCloneProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCloneProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "showEndpoints" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowEndpoint" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "state.showError ? \"error\" : state.showWarning ? \"warn\" : undefined" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "brokerSSONestedAccordion" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleBrokerAccordion()" + }, + { + "name": "summary", + "type": "expression", + "value": "en.brokerSSOConfig.instructionsText" + }, + { + "name": "expanded", + "type": "variable", + "value": "isBrokerAccordionExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1. Click Manage Brokers, then select which event broker services to\n\t\t\t\t\t\t\t\tenable to use Broker SSO.
\n\t\t\t\t\t\t\t\t2. Click Enable SSO.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t3. Click Copy Broker URIs.
\n\t\t\t\t\t\t\t\t4. Add the URIs you've copied to your identity provider.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t5. After you complete these steps for your event broker services, you can use SSO to access them.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tTroubleshooting tip\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tIf a broker has more than one URI, the URIs are copied as comma-separated list. If your identity\n\t\t\t\t\t\t\t\t\tprovider does not support this format, manually enter each URI separately.\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpanded(index)" + }, + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "usersAccordion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderUserSummary(0)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{usersList.map((user, index) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t{isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{hasMore && !showMore && !isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showMore}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{showMore && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showLess}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openAuditFilterOptionsSection" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Time Range\"\n\t\t\t\t\t\t\t\tvalue={filters.timeRange.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{timeRangeLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Status\"\n\t\t\t\t\t\t\t\tvalue={filters.status.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{statusLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Category\"\n\t\t\t\t\t\t\t\tvalue={filters.category.value}\n\t\t\t\t\t\t\t\tid=\"categoryFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.category}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{autoCompleteField()}\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Event\"\n\t\t\t\t\t\t\t\tvalue={filters.event.value}\n\t\t\t\t\t\t\t\thelperText={!filters.category.value ? en.auditLogs.selectCategory : \"\"}\n\t\t\t\t\t\t\t\tid=\"eventFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowFilterOptions((state) => !state)" + }, + { + "name": "expanded", + "type": "variable", + "value": "showFilterOptions" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.auditLogs.filters}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{selectedFilters?.map((filter, index) => (\n\t\t\t\t\t\t\t\t\t deleteFilter(filter.key)}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t{selectedFilters.length > 0 ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.auditLogs.clearAll}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "token.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`" + }, + { + "name": "details", + "type": "jsx", + "value": "<>{renderDetails(false)}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenDetailsAccordion" + } + ] + } + ], + "creationDate": "2022-03-09T10:34:12-05:00" + }, + { + "componentName": "SolaceMenu", + "totalUsages": 65, + "usagesByMfe": { + "ep": 42, + "intg": 2, + "mc": 13, + "saas": 8 + }, + "commonProps": [ + { + "name": "buttonProps", + "count": 65 + }, + { + "name": "items", + "count": 65 + }, + { + "name": "anchorOrigin", + "count": 37 + }, + { + "name": "transformOrigin", + "count": 37 + }, + { + "name": "dataQa", + "count": 25 + }, + { + "name": "id", + "count": 22 + }, + { + "name": "key", + "count": 11 + }, + { + "name": "closeOnSelect", + "count": 4 + }, + { + "name": "numOfMenuItemDisplayed", + "count": 2 + }, + { + "name": "maxWidth", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Add Protocol\"\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "solaceAddProtocolMenuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\tisDisabled: isEmpty(selectedRowIds),\n\t\t\t\t\t\t\tdataQa: \"selectedEntityActions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: en.eventPortalResources.labels.deleteSample.actionMenuTitle\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "getMenuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"versionMoreAction\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "wrappedMenuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: \"eventDetailModalMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"moreActionMenuButton\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsForEntityDetail()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tisDisabled: graphEmpty,\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"text\",\n\t\t\t\tchildren: \"Add Filters\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "filterMenuItems" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "9" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tchildren: \"Set Up Event Management Agent\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getRunDiscoveryScanOptionsItems()" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: variant,\n\t\t\t\t\t\tchildren: \"Run Discovery Scan\",\n\t\t\t\t\t\tdataQa: \"runDiscoveryScan\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"messagingServicesDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServicesDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`messagingService_${entity.id}-moreActions`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMessagingServiceDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "expression", + "value": "getMoreOptionsItemsForMessagingService(entity, true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memMessagingServiceDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"messagingServiceMoreActionsButton\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"View Event Management Agent\",\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),\n\t\t\t\t\t\t\tdataQa: \"viewRuntimeAgentActionMenu\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"runtimeAgentMoreActionsButton\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Connect to an Event Management Agent\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\tdataQa: dataQa + \"-button\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsProps()" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-menu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"custom-solace-menu\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "actionMenuForEntityVersionList" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: numberOfSelection === 0,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: \"Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMoreActions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: buttonVariant || \"outline\",\n\t\t\t\t\t\t\tchildren: buttonText || \"Import\",\n\t\t\t\t\t\t\tisDisabled: disabled,\n\t\t\t\t\t\t\tdataQa: \"chooseImportOptionButton\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"auditImportMenu\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tdataQa: \"designerMoreAction\",\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\tisDisabled: !isChecked,\n\t\t\t\t\t\tdataQa: \"selectedDomainsActions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"Export\",\n\t\t\t\t\t\t\tonMenuItemClick: () => onExport(selectedDomainIds),\n\t\t\t\t\t\t\tdataQa: \"selectedDomainsExport\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\tdataQa: \"domainMoreAction\",\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainMoreActionMenu" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: `${selectedNode?.type ?? \"\"}NodeSidePanelMoreAction`,\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${selectedNode?.type ?? \"\"}NodeSidePanelMoreActionMenu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"appDomainEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomainEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.eventApiProduct.buttons.openEventApiProduct,\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewVersionDetail(e, item, false)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: en.common.button.moreActions,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"memListMoreAction\"\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"createApplication-menu\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: createLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tdataQa: \"createApplication-button\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.standard,\n\t\t\t\t\t\t\tonMenuItemClick: handleCreate,\n\t\t\t\t\t\t\tdataQa: \"createStandardApplication\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.restDeliveryPoint,\n\t\t\t\t\t\t\tonMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),\n\t\t\t\t\t\t\tdataQa: \"createRestDeliveryPointApplication\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"moreActionsButton\",\n\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa: `${eventBroker.id}-moreOptionMenuButton`,\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\ttitle: common.button.moreActions\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "moreOptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-moreOptionMenu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getVersionDetailMenuItem(version, mode)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "actionitems" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: selectedCount < minimalCount,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: t({ id: \"id_actions\", message: \"Actions\" })\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`${eventMesh.id}_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_event_mesh_details\", message: \"Event Mesh Details\" }),\n\t\t\t\t\t\t\t\tonMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),\n\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\tdisabled: !hasWriteAccess\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: t({ id: \"id_download\", message: \"Download\" }),\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tdataQa: \"download\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "string", + "value": "download" + }, + { + "name": "items", + "type": "expression", + "value": "links.download.map((dw) => ({\n\t\t\t\t\t\t\tname: dw.name,\n\t\t\t\t\t\t\tonMenuItemClick: () => openLink(dw.url)\n\t\t\t\t\t\t}))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-edit\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleEdit(idx)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-delete\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleDelete(idx)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_set_as_default\", message: \"Set as Default\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-set-default\",\n\t\t\t\t\t\t\t\t\t\tdisabled: !item.canSetAsDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tchangeHostnameDefaultMutation.mutate(item.name);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-move\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\tsetShowMoveDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_copy_clipboard\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetShowDeleteDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`public_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-edit\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-view\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "certType === \"client\"\n\t\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tdisabled: !canConfigure,\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index),\n\t\t\t\t\t\t\t\t\t\t\tdisabled: index === 0 || !canConfigure\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\tdisabled: item.id === DEFAULT_PROFILE || !canConfigure,\n\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"actions\",\n\t\t\t\tonClick: handleMenuClick\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${service.id}_actions`" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\t\tisDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === \"unsupported\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "actionItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.requestLimitChange,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: `${environmentsStr.environmentList.moreActionLabel}`,\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"environmentMoreActions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "dataTags", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.edit,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),\n\t\t\t\t\t\t\t\tdisabled: groupMappingState\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.remove,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => removeClaimMappingHandler(rowData.id)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: `${token.name}-menu`,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `View Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onViewToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-view`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Regenerate Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onRegenerateToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-regenerate`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Delete Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onDeleteToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-delete`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tService Details\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t\tonMenuItemClick: () => window.open(`/services/${item.serviceId}`, \"_blank\")?.focus()\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: \n\t\t\t\t}" + } + ] + } + ], + "creationDate": "2022-01-06T11:41:32-05:00" + }, + { + "componentName": "SolaceCard", + "totalUsages": 56, + "usagesByMfe": { + "ep": 35, + "intg": 6, + "mc": 5, + "saas": 10 + }, + "commonProps": [ + { + "name": "backgroundColor", + "count": 32 + }, + { + "name": "showCloseButton", + "count": 25 + }, + { + "name": "onClose", + "count": 22 + }, + { + "name": "title", + "count": 20 + }, + { + "name": "dataQa", + "count": 18 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "What is an Event Management Agent?" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoBlurb" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "

{brandableTextValueConverter(\"Environments in PubSub+ Cloud\", \"string\")}

" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissEducationalCard" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "Want to subscribe to specific values?" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowInfoBlurb(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addSubscriptionInfoBlurb" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "getCardTitle(selectedAudit.auditEntityType)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissReuseIndexInfoCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowRDPInfo(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointInformation" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Upload From JSON File\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseEnumVauesHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumValuesHelp\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\n\t\t\t\t\tReferenced Schema Names Require Manual Updates\n\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? \"Conflicting Topic Address\" : \"Conflicting Objects\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "attractedEventsNoResults" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Defining Topic Domains" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResources" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Tips and Tricks for Topic Addresses\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noBrokers" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noMatchingBrokers" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.projectDefinition.help" + }, + { + "name": "dataQa", + "type": "string", + "value": "projectDefinitionHelp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setTranformationBlurbDismissedAtom(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "popover ? \"popoverInfo\" : \"infoCard\"" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!popover" + }, + { + "name": "onClose", + "type": "function", + "value": "() => (popover ? undefined : onClose && onClose)" + }, + { + "name": "title", + "type": "string", + "value": "Setting Values for Target Headers" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "popover ? \"inherit\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseDisplayMessage()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetShowEducationBlurb(false);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setNeedHelp(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Release Notes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "#ffffff" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerSSOCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.messages.firstOpenBottomInfoTitle" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardBottom" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBottomMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.messages.title" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.primary.contrastText" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tMessage Service Alerts & Notification\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Logs Retention" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + }, + { + "name": "dataQa", + "type": "string", + "value": "logsRetentionCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Who Can Receive Notifications?" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationAd" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + } + ], + "creationDate": "2022-03-08T12:16:07-05:00" + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "totalUsages": 53, + "usagesByMfe": { + "ep": 35, + "intg": 4, + "mc": 5, + "saas": 9 + }, + "commonProps": [ + { + "name": "...", + "count": 10 + }, + { + "name": "name", + "count": 7 + }, + { + "name": "value", + "count": 7 + }, + { + "name": "subText", + "count": 4 + }, + { + "name": "supplementalText", + "count": 4 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "RESOURCE_LABEL_BY_ROLE[role]" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "subText", + "type": "expression", + "value": "RESOURCE_DESCRIPTION_BY_ROLE[role]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.scanWithEventPortal" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.scanFromEventPortal" + }, + { + "name": "subText", + "type": "string", + "value": "Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.uploadScanFile" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.uploadScanFile" + }, + { + "name": "subText", + "type": "string", + "value": "Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "eventMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "version" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isSecondVersionOptions && selectedVersionId === version.id ? \"No Difference\" : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceClientUsername.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceClientUsername" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceAuthorizationGroup.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceAuthorizationGroup" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tracingType[TracingType.Insights]" + }, + { + "name": "value", + "type": "expression", + "value": "TracingType.Insights" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isInsights ? \"Default\" : \"Not Available\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]" + }, + { + "name": "value", + "type": "expression", + "value": "TlsConnectionType.SecureSkipValidation" + }, + { + "name": "subText", + "type": "string", + "value": "Skips certificate authority validation" + } + ] + } + ], + "creationDate": "2021-10-12T12:46:31-04:00" + }, + { + "componentName": "SolaceAttributeBadge", + "totalUsages": 50, + "usagesByMfe": { + "ep": 36, + "intg": 2, + "mc": 8, + "saas": 4 + }, + "commonProps": [ + { + "name": "label", + "count": 49 + }, + { + "name": "size", + "count": 22 + }, + { + "name": "boldLabel", + "count": 20 + }, + { + "name": "fillColor", + "count": 19 + }, + { + "name": "labelColor", + "count": 16 + }, + { + "name": "height", + "count": 13 + }, + { + "name": "dataQa", + "count": 11 + }, + { + "name": "variant", + "count": 10 + }, + { + "name": "compressed", + "count": 9 + }, + { + "name": "borderRadius", + "count": 9 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "tagName" + }, + { + "name": "labelColor", + "type": "variable", + "value": "tagTextColor" + }, + { + "name": "fillColor", + "type": "variable", + "value": "tagBgColor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Update Required\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "messages.selectDialog.default" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "pubSubStatus" + }, + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-toDelete`" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "expression", + "value": "\"To Be Deleted\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "StateChipStyleProps[stateName]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "stateName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Current" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "To Be Removed" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "badgePropsForStatus" + }, + { + "name": "label", + "type": "variable", + "value": "status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_BLUE" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "label", + "type": "string", + "value": "New" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.environmentName" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Recommended\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"overriddenBadge\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.overridden" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Added\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.pub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${\n\t\t\t\t\t\t\t\texpandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0\n\t\t\t\t\t\t\t\t\t? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length\n\t\t\t\t\t\t\t\t\t: 0\n\t\t\t\t\t\t\t} Added`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "state" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getColor(state).fillColor ?? undefined" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getColor(state).labelColor ?? undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "{eventMesh.environmentName}" + }, + { + "name": "size", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"100px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{`${schemaVersionSelectedMap[row.id].length} Added`}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{\"Selected\"}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Source\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Destination\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "label", + "type": "expression", + "value": "\"Declined\"" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "label", + "type": "expression", + "value": "ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"connector_status_badge\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "i18n._(getEventMeshState(eventMesh))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getEventMeshStateFillColor(eventMesh)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getEventMeshStateLabelColor(eventMesh)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expired\", message: \"Expired\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expires_soon\", message: \"Expires Soon\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.warnYellow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "language.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "fillColor", + "type": "variable", + "value": "fillColor" + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "dataQa", + "type": "string", + "value": "statusChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "hasSsoError ? t({ id: \"id_service_outofsync_short\", message: \"SSO out-of-sync\" }) : i18n._(getServiceState(service))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getServiceStateFillColor(service, hasSsoError)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getServiceStateLabelColor(service, hasSsoError)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_event_mesh\", message: \"Event Mesh\" })" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "active" + }, + { + "name": "label", + "type": "string", + "value": "Active" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "inactive" + }, + { + "name": "label", + "type": "string", + "value": "Inactive" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceTruncatableLink", + "totalUsages": 48, + "usagesByMfe": { + "ep": 46, + "intg": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 48 + }, + { + "name": "text", + "count": 48 + }, + { + "name": "onClick", + "count": 31 + }, + { + "name": "dataQa", + "count": 8 + }, + { + "name": "href", + "count": 2 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedEventBroker.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedApplication.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsLabel(credentials)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeAValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputA\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeBValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointNameValue" + }, + { + "name": "text", + "type": "variable", + "value": "rdpName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}NameValue`" + }, + { + "name": "text", + "type": "expression", + "value": "entity.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "expression", + "value": "onVersionNameClick ? version.display || version.semver : {version.display || version.semver}" + }, + { + "name": "onClick", + "type": "expression", + "value": "onVersionNameClick ? () => onVersionNameClick(version) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "event.id" + }, + { + "name": "text", + "type": "expression", + "value": "event.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => eventSelectionCallback(event)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{`${applicationVersion.parent.name} `}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{applicationVersion.displayName || applicationVersion.version}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "text", + "type": "variable", + "value": "eventApiProductName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "variable", + "value": "itemName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "messagingService.id" + }, + { + "name": "text", + "type": "expression", + "value": "messagingService.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onTitleLinkClick(messagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion][Title]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityVersion.parent.id}-${entityVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id + \"_name\"" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventMeshName" + }, + { + "name": "onClick", + "type": "expression", + "value": "hasAccess ? () => handleViewDetail(row) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${associatedEvents?.[0]?.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEvents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEvents?.[0])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${associatedEvents?.[0]?.name}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionSummaryPopoverText=${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionName-${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(applicationVersion.parent, applicationVersion)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appName-${application.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "application.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(application)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "id", + "type": "expression", + "value": "event?.name" + }, + { + "name": "text", + "type": "expression", + "value": "event?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(event)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "associatedEventParents?.[0]?.name" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEventParents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEventParents?.[0])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaDetail?.name}`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaDetail?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(null)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaDetail?.name}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${applicationDetail?.parent?.name}-${applicationDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventDetail?.parent?.name}-${eventDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "eventDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionNumber}`" + }, + { + "name": "text", + "type": "expression", + "value": "`Version ${versionNumber}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionLinkClick(relation)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${row.id}-templateLink`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplate(row.id)" + }, + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.templateName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"contextSelector-title\"" + }, + { + "name": "text", + "type": "expression", + "value": "`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "expression", + "value": "item.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "canOpen ? () => onOpen(item) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "node.versionId" + }, + { + "name": "text", + "type": "expression", + "value": "node.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.eventId" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "row.application?.name ?? \"-\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "request.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "request.application.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "applicationDomainLocked ? null : () => onApplicationClick(request.application)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion.id}-link`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewSchemaVersionDetails(schema, schemaVersion)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaVersion.id}-viewDetails`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined" + }, + { + "name": "id", + "type": "expression", + "value": "eventBroker.id" + }, + { + "name": "text", + "type": "expression", + "value": "eventBroker.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${applicationVersion.id}-applicationVersion-link`" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`" + }, + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "limitString(row.name, 35)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(row.name)}_button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`row.name_button`" + } + ] + } + ], + "creationDate": "2024-10-18T10:53:08-04:00" + }, + { + "componentName": "SolaceSelectAutocomplete", + "totalUsages": 44, + "usagesByMfe": { + "ep": 28, + "intg": 4, + "mc": 5, + "saas": 7 + }, + "commonProps": [ + { + "name": "name", + "count": 44 + }, + { + "name": "onChange", + "count": 44 + }, + { + "name": "dataQa", + "count": 43 + }, + { + "name": "options", + "count": 43 + }, + { + "name": "itemComponent", + "count": 43 + }, + { + "name": "itemMappingCallback", + "count": 43 + }, + { + "name": "optionsLabelCallback", + "count": 43 + }, + { + "name": "fetchOptionsCallback", + "count": 43 + }, + { + "name": "value", + "count": 42 + }, + { + "name": "isOptionEqualToValueCallback", + "count": 41 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "name", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "label", + "type": "string", + "value": "Modeled Event Mesh" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEventMeshes[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "name", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "selectedEventMeshes.length === 0" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedMessagingServices[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductVersionId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceAutocomplete" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService" + }, + { + "name": "label", + "type": "string", + "value": "Event Broker Context (optional)" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "values" + }, + { + "name": "options", + "type": "variable", + "value": "matchingValues" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabledCallback" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "debouncedFetchOptionsCallback" + }, + { + "name": "shouldClearSearchOnSelectCallback", + "type": "variable", + "value": "shouldClearSearchOnSelectCallback" + }, + { + "name": "maxHeight", + "type": "string", + "value": "400px" + }, + { + "name": "validateInputCallback", + "type": "variable", + "value": "validateInputValue" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumeration" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationName" + }, + { + "name": "label", + "type": "string", + "value": "Enumeration" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalEnums" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnumOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnumChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumOption" + }, + { + "name": "getOptionDisabledCallback", + "type": "expression", + "value": "sharedSearchCriteria ? handleOptionDisabled : undefined" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "sharedSearchCriteria ? \"You can associate only shared enumerations with shared events.\" : null" + }, + { + "name": "width", + "type": "string", + "value": "65%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomain" + }, + { + "name": "options", + "type": "variable", + "value": "matchingApplicationDomains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationDomainOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "disabled", + "type": "boolean", + "value": "false" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "variable", + "value": "showHelperText" + }, + { + "name": "maxHeight", + "type": "string", + "value": "370px" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationDomainSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationVersionSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ?? \"Application Version\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationVersions" + }, + { + "name": "options", + "type": "variable", + "value": "applicationVersionOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getApplicationVersionSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\tselectedApplicationVersions?.[0] && (\n\t\t\t\t\t{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}\n\t\t\t\t)" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationVersionOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isApplicationVersionSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined" + }, + { + "name": "showGroupDivider", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.divider) ? true : false" + }, + { + "name": "disableCloseOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError || helperText || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersionSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[filterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "label", + "type": "jsx", + "value": "" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedOptions.length > 0 ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOptions" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "CustomAttributeValueAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getCustomAttributeValueOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowCustomAttributeValueOptionDivider" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeCustomAttributeValues" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchCustomAttributeValueOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isCustomAttributeValueOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tdebouncedSelectedOptions &&\n\t\t\t\t\t\tdebouncedSelectedOptions.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[customAttributeFilterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "name", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "placeholder", + "type": "expression", + "value": "displayedEnvironments?.length ? \"\" : \"Select environments\"" + }, + { + "name": "required", + "type": "expression", + "value": "!!isRequired" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!isReadOnly" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "displayedEnvironments" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnvironments" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEnvironments" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "EnvironmentMultiSelectOption" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...option,\n\t\t\t\t\t\tenvironmentOption: getEnvironmentChipObject(environmentOptions, option.id)\n\t\t\t\t\t};\n\t\t\t\t}" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEnvironmentsOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEnvironmentSelectAutocompleteOptionEqual" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tautocompleteRef.current = input;\n\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\tdisplayedEnvironments?.length > 0 && (\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tcolumnGap={8}\n\t\t\t\t\t\t\tshowAll={false}\n\t\t\t\t\t\t\tcontainerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.sharedFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSharedType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredSharedTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShareFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterSharedTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.brokerTypeFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedBrokerType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredBrokerTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerTypeFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterBrokerTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameTemplate" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\tselectTemplate(templates.find((template) => template.id === e.value.value));\n\t\t\t\t\t\t\t\t\t\t\t\t// template changed - keep queue name, clear other properties\n\t\t\t\t\t\t\t\t\t\t\t\tupdateUserConfigValues({ queueName: queueName }, true);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "isTemplateSelectionDisabled(templates, templateOutOfSync)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t// template selected\n\t\t\t\t\t\t\t\t\t\t\t\tconst template = templates.find((template) => template.id === e.value?.value);\n\t\t\t\t\t\t\t\t\t\t\t\tconst clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tsetTemplateOptionSelected({\n\t\t\t\t\t\t\t\t\t\t\t\t\tname: template.name,\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalue: template.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdescription: template.description,\n\t\t\t\t\t\t\t\t\t\t\t\t\tclientProfileName: clientProfileName\n\t\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(clientProfileName);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t// template cleared\n\t\t\t\t\t\t\t\t\t\t\t\treset(true);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "templates.length === 0" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "options", + "type": "expression", + "value": "getAutoCompleteOptions(level)" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterValues" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "value", + "type": "expression", + "value": "getAutoCompleteValue(value, level, name)" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + }, + { + "name": "limitTags", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchMems" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredGatewayMessagingService : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "name", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "label", + "type": "string", + "value": "Requestor" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedRequestors?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedRequestors" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "function", + "value": "(option) => option.name" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRequestorChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option.value === value.value" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\t\t\t\t\t\t\trequestorInputRef.current = input;\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{selectedEventMeshes?.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + }, + { + "name": "maxHeight", + "type": "string", + "value": "22rem" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "id", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchServices" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "expression", + "value": "showMIEnvironmentsFlag ? getOptionsForEnv : getOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedService" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.eventBrokerService" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t: en.connectors.helperText.serviceName" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === \"no_services\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "id", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.transformation" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedTransformationFunction || undefined" + }, + { + "name": "options", + "type": "variable", + "value": "matchingTransformationFunctions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleTransformationFunctionChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "label", + "type": "expression", + "value": "typeof data.label === \"string\"\n\t\t\t\t\t\t\t\t? data.label\n\t\t\t\t\t\t\t\t: data.type === \"input\"\n\t\t\t\t\t\t\t\t? (en.transformations.labels.sourceItem as string)\n\t\t\t\t\t\t\t\t: (en.transformations.labels.targetItem as string)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedField || undefined" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "options", + "type": "variable", + "value": "matchingData" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "maxHeight", + "type": "string", + "value": "30vh" + }, + { + "name": "name", + "type": "string", + "value": "targetVersion" + }, + { + "name": "label", + "type": "string", + "value": "Target Version" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!formError" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "helperText", + "type": "expression", + "value": "formError ? formError : \"\"" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === currentVersion" + }, + { + "name": "fetchOptionsCallback", + "type": "expression", + "value": "useDebouncedCallback(fetchOptionsCallback, 150)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\tsetFormError(\"\");\n\t\t\t\t\t\tsetVersion(event.value as SolaceSelectAutocompleteItemProps);\n\t\t\t\t\t}" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "region" + }, + { + "name": "name", + "type": "string", + "value": "region" + }, + { + "name": "dataQa", + "type": "string", + "value": "region" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "regionDisabled" + }, + { + "name": "placeholder", + "type": "expression", + "value": "getPlaceholder()" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "regionToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemToRegion" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getGroupBy" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "isOptionDisabled" + }, + { + "name": "options", + "type": "variable", + "value": "matchingRegions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterName" + }, + { + "name": "name", + "type": "string", + "value": "clusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clusterName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "clusterNameToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemMappingCallback" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_cluster_name_info\", message: \"Type a new cluster name or select an existing one.\" })" + }, + { + "name": "options", + "type": "variable", + "value": "matchingClusterNames" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "theme.spacing(30)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) =>\n\t\t\t\t!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "name", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptionsCallback" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "options", + "type": "variable", + "value": "usersDropdownList" + }, + { + "name": "title", + "type": "string", + "value": "Select a user to transfer services to" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "userGroupRoleDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupRoleDropdown" + }, + { + "name": "width", + "type": "string", + "value": "800px" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.roles" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupRoleDropdownQa" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupRoleChange" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.roleValue ? dialogState.roleValue : currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleRolesDisabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasRoleError" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasRoleError ? userGroups.ugDialog.ugRoleError : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.username" + }, + { + "name": "id", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "name", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "dataQa", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleEmailSelection(e.value as IEmailOption)" + }, + { + "name": "value", + "type": "expression", + "value": "filters.email.value ? selectedEmail : undefined" + }, + { + "name": "options", + "type": "expression", + "value": "emailSearchTerm ? matchingEmails : getEmails(usersDetails)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.defaultUserGroupLabel" + }, + { + "name": "hasErrors", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "name", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "dataQa", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!selectedUserGroup ? userGroupManagement.selectDefaultGroup : \"\"" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedUserGroup?.name" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "width", + "type": "string", + "value": "30rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "name", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroups" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tsubText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(\", \"),\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "servicesDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "servicesDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceDropdown" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleServiceCallback" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "options", + "type": "variable", + "value": "services" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "value", + "type": "variable", + "value": "dropdownValueFromParam" + } + ] + } + ], + "creationDate": "2021-10-07T02:14:34-04:00\n2021-10-07T02:14:34-04:00" + }, + { + "componentName": "SolaceToggle", + "totalUsages": 32, + "usagesByMfe": { + "ep": 25, + "intg": 2, + "mc": 3, + "saas": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 32 + }, + { + "name": "onChange", + "count": 32 + }, + { + "name": "isOn", + "count": 32 + }, + { + "name": "id", + "count": 24 + }, + { + "name": "label", + "count": 20 + }, + { + "name": "dataQa", + "count": 19 + }, + { + "name": "helperText", + "count": 6 + }, + { + "name": "disabled", + "count": 4 + }, + { + "name": "title", + "count": 2 + }, + { + "name": "...", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + }, + { + "name": "disabled", + "type": "variable", + "value": "disableActionToChangeGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showNewEventVersionIndicator`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowNewEventVersionIndicator?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showNewEventVersionIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}snapNodeToGrid`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSnapNodeToGrid?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "snapNodeToGrid" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMultiSelect" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Multi Select\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMultiSelect" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMultiSelect(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMoveNodes" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Move Nodes\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMoveNodes" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMoveNodes(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowSchema?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showSchema" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all_resources" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment?.showAllResources" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "messages.header.showAllResources" + }, + { + "name": "helperText", + "type": "expression", + "value": "messages.header.helperText" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderShowAllResources" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHideMatch" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideSubRelationshipsMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSubjectRelationshipHideMatch" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showPropertyNames" + }, + { + "name": "label", + "type": "expression", + "value": "application.configuration.showPropertyNames" + }, + { + "name": "isOn", + "type": "variable", + "value": "showPropertyNames" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowPropertyNames(!showPropertyNames)" + }, + { + "name": "dataQa", + "type": "string", + "value": "showPropertyNamesToggle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Advanced Properties\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showAdvancedPropertiesToggle\"" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + }, + { + "name": "disabled", + "type": "expression", + "value": "!restDeliveryPoint?.restConsumerConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.showAdvancedProperties" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`showAdvancedProperties`" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "isOn", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "delete_protection" + }, + { + "name": "name", + "type": "string", + "value": "delete_protection" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-protection" + }, + { + "name": "isOn", + "type": "variable", + "value": "isLocked" + }, + { + "name": "disabled", + "type": "expression", + "value": "!canConfigure" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDeleteProtection" + }, + { + "name": "stateText", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_delete_protection\", message: \"Delete Protection\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({ id: \"id_show_all_environments_help\", message: \"Enable to manage resources across environments\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "label", + "type": "expression", + "value": "brandableTextValueConverter(\"PubSub+\", \"string\") + \" \" + en.accountSettings.preAuthText" + }, + { + "name": "name", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => togglePreAuth(value.value)" + }, + { + "name": "title", + "type": "string", + "value": "Security Settings Pre Auth" + }, + { + "name": "isOn", + "type": "expression", + "value": "!preOrgConfigResponse?.data.useAuthWebUILinks" + }, + { + "name": "disabled", + "type": "expression", + "value": "preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig" + }, + { + "name": "dataQa", + "type": "string", + "value": "preAuthText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "en.notifications[showUnreadNotifications ? \"showingUnreadNotifications\" : \"showingAllNotifications\"]" + }, + { + "name": "id", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "dataQa", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "label", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "name", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setShowUnreadNotifications(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "isOn", + "type": "variable", + "value": "showUnreadNotifications" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceTable", + "totalUsages": 31, + "usagesByMfe": { + "ep": 19, + "intg": 3, + "saas": 9 + }, + "commonProps": [ + { + "name": "rows", + "count": 31 + }, + { + "name": "columns", + "count": 31 + }, + { + "name": "selectionType", + "count": 31 + }, + { + "name": "sortCallback", + "count": 31 + }, + { + "name": "renderCustomRowCells", + "count": 20 + }, + { + "name": "showEmptyState", + "count": 18 + }, + { + "name": "id", + "count": 17 + }, + { + "name": "selectionChangedCallback", + "count": 16 + }, + { + "name": "sortedColumn", + "count": 15 + }, + { + "name": "renderCustomEmptyState", + "count": 14 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "renderCustomRowActionItem", + "type": "expression", + "value": "renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "selectionType ?? SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event-flow-discrepancy-preview-table" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItems" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"metricsDashboardTable\"" + }, + { + "name": "rows", + "type": "expression", + "value": "handleProcessEntities(entities)" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "rowActionMenuItems", + "type": "null", + "value": "null" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\treturn renderRowCells(row);\n\t\t\t}" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "!entities || entities.length === 0" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "id", + "type": "string", + "value": "remTable" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRow" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "actions" + }, + { + "name": "rows", + "type": "variable", + "value": "remEntities" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[selectedMem?.id]" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx", + "props": [ + { + "name": "loading", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderCustomEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "customContentDefinitions", + "type": "variable", + "value": "customContentDefinitions" + }, + { + "name": "displayedCustomContent", + "type": "variable", + "value": "displayedCustomContent" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "variable", + "value": "customContentDisplayChangeCallback" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "customMenuActions" + }, + { + "name": "crossPageRowSelectionSupported", + "type": "expression", + "value": "auditEntityType === null ? false : true" + }, + { + "name": "totalObjectCount", + "type": "variable", + "value": "entityCount" + }, + { + "name": "deselectedRowIds", + "type": "variable", + "value": "deselectedRowIds" + }, + { + "name": "allPagesSelectedByDefault", + "type": "variable", + "value": "allPagesSelectedByDefault" + }, + { + "name": "crossPageSelectionChangedCallback", + "type": "variable", + "value": "handleCrossPageRowSelectionsChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "expression", + "value": "getFilteredRows()" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "expression", + "value": "TEMPLATE_TYPES[type].tableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "messages[type].emptyTableMessage" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "existingSharedEventIds" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: false,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\treturn renderRowCells(row, columnsHiddenInfo);\n\t\t\t\t\t}" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.eventApi.labels.emptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\trenderChildren: renderExpandedRowContent,\n\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\tsetExpandedRowIds: setExpandedRowIds,\n\t\t\t\t\t\tselectRowWhenClickOnChildren: false\n\t\t\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventAccessRequestTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableDataAvailable && !loading" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "expression", + "value": "highlightedRow?.id" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: false,\n\t\t\t\t\t\trenderChildren: (row) => renderExpandedRowContent(row),\n\t\t\t\t\t\texpandedRowIds: [],\n\t\t\t\t\t\tsetExpandedRowIds: () => {\n\t\t\t\t\t\t\tvoid 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentSchemasTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching schemas have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentApplicationsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching applications have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allConnectors" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === connectorSort.split(\":\")[0])" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "id", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allAgents" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetAgentSort(`sort=${column?.field}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === agentSort)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "expression", + "value": "connectorErrorLogs ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "function (): void {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "logsFetching" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "userManagementColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableRows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "rows", + "type": "expression", + "value": "showEmptyState ? [] : tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(columm) => handleSort(columm, drawdownData)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsTableQA" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "resultsPerPageActions" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelectionsChange" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "variable", + "value": "auditLogsRows" + }, + { + "name": "columns", + "type": "variable", + "value": "AuditLogsTableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "emptyState" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.auditLogs.loadingMessage" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "maxHeight", + "type": "string", + "value": "40rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortClaimValuesDirection" + }, + { + "name": "rows", + "type": "expression", + "value": "groupMappingState ? [addMappingRow, ...tableRows] : tableRows" + }, + { + "name": "columns", + "type": "expression", + "value": "columns(groupMappingState)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "rows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "notificationsTable" + }, + { + "name": "loading", + "type": "expression", + "value": "isLoading || isFetchingNotifications || deletingNotification" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.notifications[deletingNotification ? \"deletingNotifications\" : \"fetchingNotifications\"]" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.notifications.emptyStateMessage(showUnreadNotifications)" + }, + { + "name": "columns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "displayedCustomContent", + "type": "array", + "value": "[]" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "getRowActionMenuItem" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\t\t\trenderChildren: (data) => {\n\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tsetExpandedRowIds: expandRowHandler\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "notifications ?? []" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "distributedTracingLimits ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "limitColumn" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingLimits.emptyStateMessage}" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "tracingProfiles ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingProfile.emptyStateMessage}" + } + ] + } + ], + "creationDate": "2021-10-08T15:21:58-04:00" + }, + { + "componentName": "SolaceTabs", + "totalUsages": 31, + "usagesByMfe": { + "ep": 22, + "intg": 4, + "mc": 3, + "saas": 2 + }, + "commonProps": [ + { + "name": "tabs", + "count": 29 + }, + { + "name": "activeTabValue", + "count": 29 + }, + { + "name": "onTabClick", + "count": 22 + }, + { + "name": "size", + "count": 11 + }, + { + "name": "variant", + "count": 9 + }, + { + "name": "...", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabArray" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "selectedTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: \"mostUsed\" },\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: \"leastused\" }\n\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => handleTabClick(tab)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "brokerTypeOptions" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "addObjectsActiveTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleAddObjectTabClick" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "actionTabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleActionTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeStep" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setActiveStep" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t{ value: \"1\", label: t({ id: \"id_get_api\", message: \"1. Get API\" }) },\n\t\t\t\t\t{ value: \"2\", label: t({ id: \"id_connect_service\", message: \"2. Connect to Service\" }) },\n\t\t\t\t\t{ value: \"3\", label: t({ id: \"id_learn_more\", message: \"3. Learn with Tutorials\" }) }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "certType" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setCertType" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{ value: \"client\", label: t({ id: \"id_client_cert_auths\", message: \"Client Certificate Authorities\" }) },\n\t\t\t\t\t\t\t\t\t{ value: \"domain\", label: t({ id: \"id_domain_cert_auths\", message: \"Domain Certificate Authorities\" }) }\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_status\", message: \"Status\" }), value: \"status\" },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_connect\", message: \"Connect\" }), value: \"connect\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_manage\", message: \"Manage\" }), value: \"manage\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_monitoring\", message: \"Monitoring\" }), value: \"monitoring\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_configuration\", message: \"Configuration\" }), value: \"configuration\", disabled: isInProgress },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_tryme\", message: \"Try Me!\" }), value: \"tryme\", disabled: areTabsDisabled }\n\t\t\t\t\t\t]" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + } + ], + "creationDate": "2021-11-01T16:09:18-04:00" + }, + { + "componentName": "SolacePagination", + "totalUsages": 29, + "usagesByMfe": { + "ep": 17, + "intg": 2, + "mc": 4, + "saas": 6 + }, + "commonProps": [ + { + "name": "totalResults", + "count": 29 + }, + { + "name": "pageSize", + "count": 29 + }, + { + "name": "activePage", + "count": 29 + }, + { + "name": "onPageSelection", + "count": 29 + }, + { + "name": "displayText", + "count": 5 + }, + { + "name": "loading", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "tableRows.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "PAGE_SIZE" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "applicationVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "applicationCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setApplicationCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eventCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEventCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "schemaVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "schemaCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setSchemaCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventApiProductVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eapCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEapCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "pagination?.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination?.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination?.count" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "requests.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "displayText", + "type": "expression", + "value": "\"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber + 1" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => 1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "100" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "userTablePage" + }, + { + "name": "pageSize", + "type": "variable", + "value": "USER_LIST_DATA_PER_PAGE" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pageCount || 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => setUserTablePage(page)" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "meta?.pagination.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => fetchNewPage(page)" + }, + { + "name": "totalResults", + "type": "expression", + "value": "meta?.pagination.totalHitCount" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta?.pagination.pageSize" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "10" + }, + { + "name": "totalResults", + "type": "expression", + "value": "rows.length" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => undefined" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "notificationsResponse?.meta?.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => {\n\t\t\t\t\t\t\t\t\tsetPageNumber(page);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "totalResults", + "type": "expression", + "value": "notificationsResponse?.meta?.count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "notificationsResponse?.meta?.pageSize" + } + ] + } + ], + "creationDate": "2021-11-09T18:26:02-05:00" + }, + { + "componentName": "SolaceChip", + "totalUsages": 27, + "usagesByMfe": { + "ep": 20, + "intg": 1, + "saas": 6 + }, + "commonProps": [ + { + "name": "label", + "count": 27 + }, + { + "name": "variant", + "count": 11 + }, + { + "name": "maxWidth", + "count": 9 + }, + { + "name": "key", + "count": 6 + }, + { + "name": "clickable", + "count": 4 + }, + { + "name": "disabled", + "count": 4 + }, + { + "name": "onDelete", + "count": 4 + }, + { + "name": "dataQa", + "count": 4 + }, + { + "name": "borderRadius", + "count": 3 + }, + { + "name": "boldLabel", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + }, + { + "name": "state", + "type": "expression", + "value": "selected ? STATES.ACTIVE : STATES.NOT_SELECTED" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "selectedEventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "protocolName.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "messagingService.eventMeshId" + }, + { + "name": "label", + "type": "expression", + "value": "messagingService.eventMeshName" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "maxWidth", + "type": "string", + "value": "200px" + }, + { + "name": "disabled", + "type": "variable", + "value": "toBeRemoved" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "isSidePanel ? 100 : 150" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t\t\t\t{isAppDomainLocked && }\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "label", + "type": "expression", + "value": "tag.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t {AUDIT_TAGS_LABELS.Hide}\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "node.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "domainInfoMap[item.id].name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "200" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": " 1 ? \"s\" : \"\"}: ${consumersCount}`}>\n\t\t\t\t\t\t{`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`}\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "number", + "value": "110" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerChip-${eventVersionId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "chipProps.labelColor" + }, + { + "name": "fillColor", + "type": "expression", + "value": "chipProps.fillColor" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "jsx", + "value": "{chipProps.label}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "group.id" + }, + { + "name": "label", + "type": "expression", + "value": "group.name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "user.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name + \" : \" + filter.value" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => deleteFilter(filter.key)" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceCircularProgress", + "totalUsages": 27, + "usagesByMfe": { + "ep": 7, + "intg": 3, + "mc": 11, + "saas": 6 + }, + "commonProps": [ + { + "name": "size", + "count": 15 + }, + { + "name": "variant", + "count": 12 + }, + { + "name": "message", + "count": 5 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "disableShrink", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx", + "props": [ + { + "name": "dataQa", + "type": "variable", + "value": "testId" + }, + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + }, + { + "name": "disableShrink", + "type": "variable", + "value": "disableShrink" + }, + { + "name": "message", + "type": "variable", + "value": "message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Retrieving event broker service details..." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Deploying license to broker..." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Removing Distributed Tracing license from broker..." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "variable", + "value": "configuringMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + } + ], + "creationDate": "2022-08-30T23:56:30+05:30" + }, + { + "componentName": "SolaceRadio", + "totalUsages": 25, + "usagesByMfe": { + "ep": 13, + "intg": 4, + "mc": 5, + "saas": 3 + }, + "commonProps": [ + { + "name": "label", + "count": 25 + }, + { + "name": "name", + "count": 25 + }, + { + "name": "value", + "count": 23 + }, + { + "name": "key", + "count": 14 + }, + { + "name": "dataQa", + "count": 13 + }, + { + "name": "id", + "count": 7 + }, + { + "name": "disabled", + "count": 5 + }, + { + "name": "subText", + "count": 5 + }, + { + "name": "checked", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Existing Application\"" + }, + { + "name": "name", + "type": "string", + "value": "existingApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingApplication" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"New Application\"" + }, + { + "name": "name", + "type": "string", + "value": "newApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newApplication" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "key", + "type": "expression", + "value": "`messagingService-${item.id}`" + }, + { + "name": "label", + "type": "jsx", + "value": " handleServiceAccordionControl(item.id)}\n\t\t\t\t\t\t\t\tdetails={renderAccordionDetail(item)}\n\t\t\t\t\t\t\t\tsummary={\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t/>" + }, + { + "name": "name", + "type": "expression", + "value": "item.id" + }, + { + "name": "value", + "type": "expression", + "value": "item.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`selectResultTypeOption_${resultType}`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{auditResultTypeCount}\n\t\t\t\t\t\t\t\t\t{AUDIT_RESULT_CHIPS[resultType]}\n\t\t\t\t\t\t\t\t\t{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "name", + "type": "variable", + "value": "resultType" + }, + { + "name": "value", + "type": "variable", + "value": "resultType" + }, + { + "name": "disabled", + "type": "expression", + "value": "auditResultTypeCount === 0 || isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === pageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "name", + "type": "variable", + "value": "key" + }, + { + "name": "value", + "type": "variable", + "value": "key" + }, + { + "name": "label", + "type": "expression", + "value": "brokerTypeLabel[key]" + }, + { + "name": "disabled", + "type": "expression", + "value": "!allowChangeBrokerType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`brokerType[${key}]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.json" + }, + { + "name": "name", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "string", + "value": "json" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.yaml" + }, + { + "name": "name", + "type": "string", + "value": "yaml" + }, + { + "name": "value", + "type": "string", + "value": "yaml" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + }, + { + "name": "subText", + "type": "expression", + "value": "option.subText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "value" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "label", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`schemaType[${value}]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Add to Existing Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "existingConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"existingConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingConsumer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Create New Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "newConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"newConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newConsumer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`\"endpointsSelector\"[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`systemType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`serviceType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "nonprod" + }, + { + "name": "id", + "type": "string", + "value": "nonprod" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "nonProductionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.nonProdSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "prod" + }, + { + "name": "id", + "type": "string", + "value": "prod" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "productionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.prodSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === selectedPageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceDetailMessage", + "totalUsages": 23, + "usagesByMfe": { + "ep": 13, + "intg": 5, + "mc": 1, + "saas": 4 + }, + "commonProps": [ + { + "name": "details", + "count": 22 + }, + { + "name": "actions", + "count": 19 + }, + { + "name": "msgImg", + "count": 18 + }, + { + "name": "title", + "count": 18 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "messages[configType].emptyConfigurationTitle" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages[configType].emptyLinkToDocumentation}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "{messages[configType].emptyConfigurationDetail}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{en.connectors.buttons.clearFilters}\n\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{secondSectionActionString}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "secondSectionDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping" + }, + { + "name": "details", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.learnMapping,\n\t\t\t\t\t\thref: \"https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.noConnectorFlows" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "details", + "type": "expression", + "value": "en.connectors.labels.tableEmptyDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"create-connector-flow-btn\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"create-connector-flow-btn\",\n\t\t\t\t\t\tchildren: en.connectors.create,\n\t\t\t\t\t\tonClick: onCreateConnectorFlow\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"view-all-connector-btn\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"view-all-connector-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.viewAllTypes,\n\t\t\t\t\t\tonClick: OnViewAllConnectorType\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Nothing to see here!\"" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? \"Please try returning to main page.\"" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-integration\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? \"Go to Integration\",\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? t({ id: \"id_nothing_here\", message: \"Nothing to see here!\" })" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? t({ id: \"id_return_home\", message: \"Please try returning to main page.\" })" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-mission-control\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? t({ id: \"id_goto_mc\", message: \"Go to Mission Control\" }),\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsageSub" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.subTitle}\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.message}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tchildren: drawdownUsage.noDrawdownUsage.contactUs,\n\t\t\t\t\t\tid: \"contactUs-btn\",\n\t\t\t\t\t\tonClick: () => toggleContactUsModalOpenState(),\n\t\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{supportPage.freeTrialDescription}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt2}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "supportPage.freeTrialTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [] + } + ], + "creationDate": "2021-11-03T22:16:02-04:00" + }, + { + "componentName": "SolaceGridList", + "totalUsages": 23, + "usagesByMfe": { + "ep": 9, + "intg": 1, + "mc": 7, + "saas": 6 + }, + "commonProps": [ + { + "name": "items", + "count": 23 + }, + { + "name": "rowMapping", + "count": 23 + }, + { + "name": "gridTemplate", + "count": 23 + }, + { + "name": "dataQa", + "count": 20 + }, + { + "name": "selectedItemId", + "count": 8 + }, + { + "name": "onSelection", + "count": 8 + }, + { + "name": "headers", + "count": 8 + }, + { + "name": "virtualizedListOption", + "count": 4 + }, + { + "name": "indicatorVariantIdentifier", + "count": 3 + }, + { + "name": "emphasizedIdentifier", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedMessagingServiceList" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getMessagingServiceRow" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "selectedMessagingService?.id" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelectMessagingService" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(10ch,auto) 1fr\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceListOfSelectedMEM" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderSchemaVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "schemaListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 52,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderEventVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "eventListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderAppVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "appVersionListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "entityVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "mapEntity" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "processEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(auto, auto) minmax(auto, auto) 16px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"appDomainGraphSearchResultsGrid_\" + entityType" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\theight: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,\n\t\t\t\t\t\titemHeight: SEARCH_LIST_ITEM_HEIGHT,\n\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "eventApiProductVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProductList" + }, + { + "name": "background", + "type": "string", + "value": "white" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "primitiveSchemaTypeOptions" + }, + { + "name": "onSelection", + "type": "variable", + "value": "onPrimitiveTypeChange" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getPrimitiveTypeRowComponents" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedPrimitiveType" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto" + }, + { + "name": "dataQa", + "type": "string", + "value": "primitiveTypes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedRelationshipVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "filteredAndSortedVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "affectedTransformations.map((transformation) => ({\n\t\t\t\t\t\t\tsource: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,\n\t\t\t\t\t\t\ttarget: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName\n\t\t\t\t\t\t}))" + }, + { + "name": "headers", + "type": "array", + "value": "[en.connectors.labels.source, en.connectors.labels.target]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item, index) => [\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.source}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.target}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"1fr 1fr\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "meshes" + }, + { + "name": "items", + "type": "variable", + "value": "meshes" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-meshes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "libraries" + }, + { + "name": "dataQa", + "type": "string", + "value": "libraries" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "90px 1fr 1fr 120px" + }, + { + "name": "items", + "type": "variable", + "value": "librarySummaries" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelection" + }, + { + "name": "headers", + "type": "array", + "value": "[\n\t\t\t\tt({ id: \"id_technology\", message: \"Technology\" }),\n\t\t\t\tt({ id: \"id_library\", message: \"Library\" }),\n\t\t\t\tview === \"language\" ? t({ id: \"id_protocol\", message: \"Protocol\" }) : t({ id: \"id_language\", message: \"Language\" }),\n\t\t\t\t\"\"\n\t\t\t]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item) => [\n\t\t\t\t\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{view === \"language\" ? item.protocol : item.languages}\n\t\t\t\t,\n\t\t\t\t\n\t\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t\tGet Started\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`ldap-groups-${id}`" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hostnames" + }, + { + "name": "dataQa", + "type": "string", + "value": "hostnames" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "hostnames" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "syslogs" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "clientCertAuths" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "profiles" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getServiceLimits() as LimitsData[]" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertMsgSpoolLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(true)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgSpoolLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sapAddonLimitsData" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "erpLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertConnectorLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorsLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "environments ? environments : []" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "withActionColumnMapping" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "isSidePanelOpen ? selectedId : 0" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 200px 200px 200px 24px" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentGridList" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "expression", + "value": "gridRowMaxVisible()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "_.concat(outOfSyncServices, syncedServices)" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 120px 24px" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "10" + }, + { + "name": "dataQa", + "type": "string", + "value": "out-of-sync-collectors" + } + ] + } + ], + "creationDate": "2022-01-31T17:07:37-05:00\n2022-01-31T17:07:37-05:00" + }, + { + "componentName": "SolaceTextArea", + "totalUsages": 21, + "usagesByMfe": { + "ep": 10, + "intg": 1, + "mc": 1, + "saas": 9 + }, + "commonProps": [ + { + "name": "name", + "count": 21 + }, + { + "name": "value", + "count": 18 + }, + { + "name": "onChange", + "count": 18 + }, + { + "name": "dataQa", + "count": 18 + }, + { + "name": "maxLength", + "count": 14 + }, + { + "name": "label", + "count": 14 + }, + { + "name": "helperText", + "count": 12 + }, + { + "name": "hasErrors", + "count": 11 + }, + { + "name": "resizable", + "count": 7 + }, + { + "name": "onBlur", + "count": 5 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`postRequestTargetValue`" + }, + { + "name": "value", + "type": "expression", + "value": "queueBindingConfiguration.postRequestTarget" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`postRequestTargetValue`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${prefix}Value`" + }, + { + "name": "value", + "type": "variable", + "value": "displayedHeaderValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${prefix}Value`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderValue" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[name]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "!isDuplicateVersion" + }, + { + "name": "maxLength", + "type": "expression", + "value": "nameMaxLength + 1" + }, + { + "name": "minRows", + "type": "number", + "value": "1" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "550px" + }, + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Revocation\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Decline\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "disabled", + "type": "expression", + "value": "reviewDecision !== ReviewDecision.declined" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Comment" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "comment" + }, + { + "name": "value", + "type": "expression", + "value": "item?.comments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleOnCommentChange(e, item)" + }, + { + "name": "label", + "type": "expression", + "value": "\"Comment\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "description ?? \"emptyDescription\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Description\"" + }, + { + "name": "value", + "type": "variable", + "value": "description" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetDescription(e.value ?? \"\");\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tsetDescription(description.trim());\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"description\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "10000" + }, + { + "name": "placeholder", + "type": "expression", + "value": "placeholder ?? \"\"" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "maxLength", + "type": "expression", + "value": "props.schema.maxLength" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textArea`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "limitChangeDetails" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.details" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onDetailsChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"limitChangeDetails\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "1500" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "environmentDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvDescriptionChange" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionErrorText()" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasDescError" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDescriptionTestId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "3000" + }, + { + "name": "label", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.details" + }, + { + "name": "name", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setContactUseMessage(value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!validateText(contactUseMessage) ? false : true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!validateText(contactUseMessage) ? \"\" : drawdownUsage.noDrawdownUsage.containsScript" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "userGroupsDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGDescriptionChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsDescriptionQa" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionCount()" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "name", + "type": "string", + "value": "additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalCommentsText(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalCommentsText" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsTextField" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "additionalCommentsText.length >= 255" + }, + { + "name": "helperText", + "type": "expression", + "value": "additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "descriptionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionError()" + }, + { + "name": "name", + "type": "string", + "value": "descriptionField" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "value", + "type": "variable", + "value": "descriptionValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDescriptionFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "5000" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageIssue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setRequestDetailsTexts(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "value", + "type": "variable", + "value": "requestDetailsTexts" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "width", + "type": "string", + "value": "40rem" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalComments(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalComments" + }, + { + "name": "width", + "type": "string", + "value": "30vw" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"sendRequest\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "1000" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.privateRegions.labels.newRequestDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setTicketBody(event.value)" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceSidePanelLayout", + "totalUsages": 21, + "usagesByMfe": { + "ep": 18, + "intg": 1, + "mc": 1, + "saas": 1 + }, + "commonProps": [ + { + "name": "showSidePanel", + "count": 21 + }, + { + "name": "sidePanelWidth", + "count": 21 + }, + { + "name": "sidePanelContent", + "count": 21 + }, + { + "name": "sidePanelPosition", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedMem" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedMem ? (\n\t\t\t\t\t\t undefined}\n\t\t\t\t\t\t\tuserMap={entityCreateUpdateUsersMap}\n\t\t\t\t\t\t/>\n\t\t\t\t\t) : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "394" + }, + { + "name": "sidePanelPosition", + "type": "expression", + "value": "SolacePanelPosition.LEFT" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanelContent()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEnum" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApiProduct" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedSchema" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedApplication" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApi" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEvent" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedDomain" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!highlightedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!isEmpty(selectedRowIds)" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "showPanel" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "480" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedLibrary ? (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{selectedLibrary.displayName}\n\t\t\t\t\t\t\t handleSelectLibrary(null)}>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tGet Started\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "panelOpen" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanelMessage" + }, + { + "name": "sidePanelWidth", + "type": "variable", + "value": "MAX_WIDTH" + } + ] + } + ], + "creationDate": "2021-11-05T01:50:36-04:00" + }, + { + "componentName": "SolaceEnvironmentChip", + "totalUsages": 19, + "usagesByMfe": { + "ep": 9, + "intg": 4, + "mc": 5, + "saas": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 12 + }, + { + "name": "...", + "count": 11 + }, + { + "name": "bgColor", + "count": 8 + }, + { + "name": "fgColor", + "count": 8 + }, + { + "name": "icon", + "count": 8 + }, + { + "name": "dataQa", + "count": 7 + }, + { + "name": "maxWidth", + "count": 4 + }, + { + "name": "onDelete", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "maxWidth" + }, + { + "name": "onDelete", + "type": "expression", + "value": "onDelete || null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "context.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "contextOption.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "dialogState.name || \"Environment Name\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceEnvironmentLabel", + "totalUsages": 17, + "usagesByMfe": { + "ep": 3, + "intg": 6, + "mc": 2, + "saas": 6 + }, + "commonProps": [ + { + "name": "label", + "count": 15 + }, + { + "name": "fgColor", + "count": 15 + }, + { + "name": "bgColor", + "count": 15 + }, + { + "name": "icon", + "count": 15 + }, + { + "name": "variant", + "count": 7 + }, + { + "name": "...", + "count": 2 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "standard" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[environment]" + }, + { + "name": "...", + "type": "spread", + "value": "environmentOption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "title" + }, + { + "name": "label", + "type": "expression", + "value": "environment.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[environment.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "env.name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "env.fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "env.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolacePageHeader", + "totalUsages": 17, + "usagesByMfe": { + "ep": 4, + "intg": 6, + "mc": 5, + "saas": 2 + }, + "commonProps": [ + { + "name": "title", + "count": 15 + }, + { + "name": "breadcrumbs", + "count": 11 + }, + { + "name": "environment", + "count": 10 + }, + { + "name": "borderTop", + "count": 10 + }, + { + "name": "actions", + "count": 6 + }, + { + "name": "subTitle", + "count": 4 + }, + { + "name": "release", + "count": 3 + }, + { + "name": "...", + "count": 2 + }, + { + "name": "actionMenu", + "count": 2 + }, + { + "name": "tabs", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/home/Home.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "overrideProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/home/Home.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "screenPath" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal AI Designer" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]" + }, + { + "name": "release", + "type": "string", + "value": "EXPERIMENTAL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "environment", + "type": "expression", + "value": "environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "actions", + "type": "expression", + "value": "(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actionMenu", + "type": "jsx", + "value": ",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.connectorFlows" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.agents.agents" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_event_meshes\", message: \"Event Meshes\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_service_details\", message: \"Service Details\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "service?.name ?? \"...\"" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]" + }, + { + "name": "tabs", + "type": "jsx", + "value": " {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_services\", message: \"Services\" })" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_compare_services\", message: \"Compare Services\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "subTitle", + "type": "variable", + "value": "subTitle" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Page Title" + }, + { + "name": "environment", + "type": "jsx", + "value": "" + }, + { + "name": "borderTop", + "type": "variable", + "value": "bgColor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.accountDetails.userSettings.settings" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceListItem", + "totalUsages": 16, + "usagesByMfe": { + "ep": 10, + "intg": 1, + "saas": 5 + }, + "commonProps": [ + { + "name": "sx", + "count": 11 + }, + { + "name": "key", + "count": 1 + }, + { + "name": "data-qa", + "count": 1 + }, + { + "name": "disablePadding", + "count": 1 + }, + { + "name": "disableGutters", + "count": 1 + }, + { + "name": "secondaryAction", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "entity.id" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`entityId-${entity.id}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingLeft: \"48px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ height: theme.spacing(sampleSetup ? 7 : 9) }" + }, + { + "name": "secondaryAction", + "type": "jsx", + "value": "{getSecondaryAction()}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tborderTop: index === 0 ? 0 : \"1px solid\",\n\t\t\t\t\t\t\tborderColor: theme.palette.grey[300],\n\t\t\t\t\t\t\tpl: field?.parentId ? getIndentationLevel(field?.parentId) : 3\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + } + ], + "creationDate": "2023-08-02T10:35:34-04:00" + }, + { + "componentName": "SolaceDrawer", + "totalUsages": 16, + "usagesByMfe": { + "ep": 15, + "saas": 1 + }, + "commonProps": [ + { + "name": "open", + "count": 16 + }, + { + "name": "width", + "count": 16 + }, + { + "name": "top", + "count": 16 + }, + { + "name": "height", + "count": 15 + }, + { + "name": "resizable", + "count": 15 + }, + { + "name": "maxWidth", + "count": 15 + }, + { + "name": "onResizeDone", + "count": 14 + }, + { + "name": "minWidth", + "count": 14 + }, + { + "name": "anchor", + "count": 3 + }, + { + "name": "offset", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL" + }, + { + "name": "top", + "type": "expression", + "value": "\"50px\"" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + }, + { + "name": "offset", + "type": "expression", + "value": "\"0px\"" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 100px)`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SEARCH_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "!!rowDetails" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "string", + "value": "10.65%" + }, + { + "name": "width", + "type": "number", + "value": "400" + }, + { + "name": "maxWidth", + "type": "number", + "value": "500" + } + ] + } + ], + "creationDate": "2022-01-18T21:57:14-05:00" + }, + { + "componentName": "SolaceRadioGroup", + "totalUsages": 15, + "usagesByMfe": { + "ep": 9, + "intg": 2, + "mc": 3, + "saas": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 15 + }, + { + "name": "onChange", + "count": 15 + }, + { + "name": "value", + "count": 14 + }, + { + "name": "id", + "count": 13 + }, + { + "name": "inline", + "count": 8 + }, + { + "name": "dataQa", + "count": 4 + }, + { + "name": "hasErrors", + "count": 3 + }, + { + "name": "helperText", + "count": 3 + }, + { + "name": "label", + "count": 2 + }, + { + "name": "required", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetIsNewApplication(e.value === \"true\");\n\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "isNewApplication ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "radioGroupName ?? \"customhookRadioGroup\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceSelectorRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceRadioGroup" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetSelectedMessagingService(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAuditResultTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "auditResultTypeToImport" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "value", + "type": "variable", + "value": "brokerType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetBrokerType(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.format" + }, + { + "name": "name", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "inline", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetFormat(e.value as SupportedAsyncApiDownloadFormat);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "stackLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "format" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "review" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReviewChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaInfo?.schemaType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetMode(e.value);\n\t\t\t\t\t\t\tresetField(\"consumerId\");\n\t\t\t\t\t\t\tresetField(\"consumerName\");\n\t\t\t\t\t\t\tresetField(\"consumerType\");\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "mode" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceType" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceType" + }, + { + "name": "value", + "type": "variable", + "value": "serviceType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceTypeChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "value", + "type": "variable", + "value": "endpointsSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemType" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "string", + "value": "systemType" + }, + { + "name": "value", + "type": "variable", + "value": "systemType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSystemTypeChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "isProduction" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "getIsProductionValue(dialogState.isProduction)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvProductionChange" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceList", + "totalUsages": 14, + "usagesByMfe": { + "ep": 7, + "intg": 5, + "saas": 2 + }, + "commonProps": [ + { + "name": "sx", + "count": 10 + }, + { + "name": "disablePadding", + "count": 5 + }, + { + "name": "key", + "count": 4 + }, + { + "name": "dense", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginTop: \"-10px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\"&& .Mui-selected\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20,\n\t\t\t\t\t\t\t\tborderRight: \"0\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"&& .Mui-selected:hover\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`payloadSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`constantSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`headerSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`defaultHeaderSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ li: { listStyleType: \"disc\" } }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ p: 2 }" + } + ] + } + ], + "creationDate": "2023-08-02T10:35:34-04:00" + }, + { + "componentName": "SolaceCodeEditor", + "totalUsages": 13, + "usagesByMfe": { + "ep": 12, + "intg": 1 + }, + "commonProps": [ + { + "name": "dataQa", + "count": 13 + }, + { + "name": "id", + "count": 13 + }, + { + "name": "mode", + "count": 13 + }, + { + "name": "value", + "count": 13 + }, + { + "name": "readOnly", + "count": 12 + }, + { + "name": "expandable", + "count": 6 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "helperText", + "count": 4 + }, + { + "name": "hasErrors", + "count": 4 + }, + { + "name": "hasWarnings", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "id", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "item.value ? JSON.stringify(jsonValue, null, 2) : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersion?.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`dataCollected[${row.id}]`" + }, + { + "name": "value", + "type": "expression", + "value": "row.data" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dataCollected[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "runtimeAttributes || designerAttributes" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaBody" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaReferences" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "observedConfiguration.value" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => setObservedConfiguration({ name, value })" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationName" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error?.message" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "observedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t// onChange will break this because it will compete with the other debounced error flow\n\t\t\t\t\t\t\t\thandleChangeCustomConfiguration(value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === Mode.template" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersionRefetched.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "expression", + "value": "!shownInCatalogDetailContainer" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion[content]\");\n\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isImportedSchemaVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "value", + "type": "variable", + "value": "prettifiedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion.content\");\n\t\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "id", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)" + } + ] + } + ], + "creationDate": "2021-11-18T16:29:10-05:00" + }, + { + "componentName": "SolacePicker", + "totalUsages": 13, + "usagesByMfe": { + "ep": 11, + "saas": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 13 + }, + { + "name": "onChange", + "count": 13 + }, + { + "name": "value", + "count": 13 + }, + { + "name": "variant", + "count": 13 + }, + { + "name": "icons", + "count": 12 + }, + { + "name": "dataQa", + "count": 11 + }, + { + "name": "numOfItemsPerRow", + "count": 11 + }, + { + "name": "label", + "count": 11 + }, + { + "name": "iconKeyOrderedList", + "count": 10 + }, + { + "name": "inlineLabel", + "count": 9 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customColour-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "icons", + "type": "variable", + "value": "entityColourBlocks" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customIconLogo-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "\"No Results Found\"" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "themePicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select Color Theme\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "themePicker" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "color" + }, + { + "name": "label", + "type": "string", + "value": "Color" + }, + { + "name": "variant", + "type": "string", + "value": "colors" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.color" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvColorChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "icon" + }, + { + "name": "label", + "type": "string", + "value": "Icon" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.icon" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvIconChange" + }, + { + "name": "icons", + "type": "variable", + "value": "Icons24" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceSearchAndFilter", + "totalUsages": 10, + "usagesByMfe": { + "ep": 8, + "intg": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 10 + }, + { + "name": "name", + "count": 10 + }, + { + "name": "placeholder", + "count": 10 + }, + { + "name": "value", + "count": 10 + }, + { + "name": "onChange", + "count": 10 + }, + { + "name": "type", + "count": 10 + }, + { + "name": "dataQa", + "count": 8 + }, + { + "name": "width", + "count": 7 + }, + { + "name": "onClearAll", + "count": 4 + }, + { + "name": "onFocus", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "searchFieldPlaceholderText || \"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onFocus", + "type": "variable", + "value": "handleOnFocus" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphEmpty || disableActionToChangeGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "textboxPlaceholderText ?? \"Search\"" + }, + { + "name": "width", + "type": "variable", + "value": "searchTextBoxWidth" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMeshName" + }, + { + "name": "id", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "value", + "type": "variable", + "value": "memNameFilter" + }, + { + "name": "width", + "type": "string", + "value": "500px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "name", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "value", + "type": "variable", + "value": "filterString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByName" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationFilterByNameField" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "name", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "label", + "type": "variable", + "value": "selectApplicationVersionLabel" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by application name" + }, + { + "name": "value", + "type": "variable", + "value": "searchedApplicationName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSearchedApplicationName(e.value)" + }, + { + "name": "onClearAll", + "type": "function", + "value": "() => setSearchedApplicationName(\"\")" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "width", + "type": "expression", + "value": "\"480px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "filterbyName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "\"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "variable", + "value": "searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.connectors.searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + } + ], + "creationDate": "2023-05-29T22:40:59-04:00" + }, + { + "componentName": "SolaceBackDrop", + "totalUsages": 10, + "usagesByMfe": { + "intg": 3, + "saas": 7 + }, + "commonProps": [ + { + "name": "open", + "count": 10 + }, + { + "name": "data-qa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "connectorDetailsLoading || connectorMetricsLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "saveInProgress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isTokensListLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "isPageLoading || createTokenIsLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "tokenIsLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceToggleButtonGroup", + "totalUsages": 9, + "usagesByMfe": { + "ep": 7, + "mc": 1, + "saas": 1 + }, + "commonProps": [ + { + "name": "options", + "count": 9 + }, + { + "name": "onChange", + "count": 9 + }, + { + "name": "activeValue", + "count": 9 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx", + "props": [ + { + "name": "options", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Docker\",\n\t\t\t\t\tvalue: EmaInstallationTypes.docker,\n\t\t\t\t\tdataQa: \"ema-installation-type-docker\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Java\",\n\t\t\t\t\tvalue: EmaInstallationTypes.java,\n\t\t\t\t\tdataQa: \"ema-installation-type-java\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "options", + "type": "expression", + "value": "getFilterOptions()" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "FILTER_OPTIONS" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "viewOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleToggleView" + }, + { + "name": "activeValue", + "type": "variable", + "value": "selectedView" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "userManagementToggle" + }, + { + "name": "options", + "type": "variable", + "value": "TAB_OPTIONS" + }, + { + "name": "onChange", + "type": "variable", + "value": "onToggleChangeHandler" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + } + ] + } + ], + "creationDate": "2022-07-04T11:35:08-04:00" + }, + { + "componentName": "SolaceBreadcrumb", + "totalUsages": 9, + "usagesByMfe": { + "intg": 4, + "mc": 3, + "saas": 2 + }, + "commonProps": [ + { + "name": "paths", + "count": 9 + }, + { + "name": "maxItems", + "count": 2 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "onRouteClick", + "count": 2 + }, + { + "name": "id", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: \"Micro-Integrations\", link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: `/${id}`,\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "paths", + "type": "expression", + "value": "breadcrumbsPaths2()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: en.connectors.connectorFlows, link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: \"editV2\",\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_service_authentications\", message: \"Service Authentications\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_cert_auths\", message: \"Certificate Authorities\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_client_profiles\", message: \"Client Profiles\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/account-details/user-groups\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.userManagement}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.groupManagement}`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "NotificationLinksBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(route) => history.push(route)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/notifications\",\n\t\t\t\t\t\t\ttitle: en.notifications.notifications\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: notificationTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + } + ], + "creationDate": "2022-06-01T09:58:08-04:00" + }, + { + "componentName": "SolaceErrorBox", + "totalUsages": 8, + "usagesByMfe": { + "ep": 1, + "mc": 5, + "saas": 2 + }, + "commonProps": [ + { + "name": "message", + "count": 8 + }, + { + "name": "showCloseButton", + "count": 2 + }, + { + "name": "onClose", + "count": 2 + }, + { + "name": "showErrorIcon", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_disable_error\", message: \"An error occurred while disabling Distributed Tracing, please try again.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_failed_conf_collector\", message: \"Failed to configure and deploy the collector. For support, contact Solace.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_profile_not_created\", message: \"This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_no_connection\", message: \"Cannot retrieve the telemetry profile due to lack of connection.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_dt_tracing_dest_not_defined\",\n\t\t\t\t\t\t\tmessage: \"A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed.\"\n\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "showErrorIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setErrorMessage(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageWhileSavingSettings" + } + ] + } + ], + "creationDate": "2021-12-15T15:02:06-05:00" + }, + { + "componentName": "SolaceSelectAutocompleteResponsiveTags", + "totalUsages": 8, + "usagesByMfe": { + "ep": 7, + "intg": 1 + }, + "commonProps": [ + { + "name": "containerWidth", + "count": 8 + }, + { + "name": "tags", + "count": 8 + }, + { + "name": "tagMaxWidth", + "count": 8 + }, + { + "name": "overflowIndicatorLabel", + "count": 8 + }, + { + "name": "overflowIndicatorLabelSingular", + "count": 8 + }, + { + "name": "onDelete", + "count": 8 + }, + { + "name": "dataQa", + "count": 8 + }, + { + "name": "numOfRowsToShow", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.requestor}-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh]" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventMeshSearchSelect-tags\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "300" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "\"200px\"" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + } + ], + "creationDate": "2022-10-21T12:41:33-04:00" + }, + { + "componentName": "SolaceLearningButton", + "totalUsages": 7, + "usagesByMfe": { + "ep": 7 + }, + "commonProps": [ + { + "name": "variant", + "count": 7 + }, + { + "name": "onClick", + "count": 7 + }, + { + "name": "dataQa", + "count": 5 + }, + { + "name": "isDisabled", + "count": 4 + }, + { + "name": "startIcon", + "count": 3 + }, + { + "name": "endIcon", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-outline\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!showLoadSampleButton" + }, + { + "name": "startIcon", + "type": "expression", + "value": "!showLoadSampleButton && " + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickLoadSamples" + }, + { + "name": "dataQa", + "type": "string", + "value": "loadSampleDataButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "ExploreOnMyOwnLink" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tdismissableCallback();\n\t\t\t\t\t\t\t\t\tMixpanel.track(\"Element Click\", { \"element-id\": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExploreSample" + }, + { + "name": "dataQa", + "type": "string", + "value": "exploreSampleButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "redirectToVideos" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!email" + }, + { + "name": "variant", + "type": "string", + "value": "dark-outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickInviteUsers" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-call-to-action\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + } + ], + "creationDate": "2023-08-16T16:58:29-04:00" + }, + { + "componentName": "SolaceResponsiveItemList", + "totalUsages": 7, + "usagesByMfe": { + "ep": 5, + "intg": 2 + }, + "commonProps": [ + { + "name": "containerWidth", + "count": 7 + }, + { + "name": "items", + "count": 7 + }, + { + "name": "showAll", + "count": 7 + }, + { + "name": "numOfRowsToShow", + "count": 5 + }, + { + "name": "onItemsRendered", + "count": 5 + }, + { + "name": "onItemsOverflow", + "count": 5 + }, + { + "name": "onItemsOverflowIndicatorClick", + "count": 5 + }, + { + "name": "dataQa", + "count": 5 + }, + { + "name": "columnGap", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t option.value === env.id)}\n\t\t\t\t\t\t\t\t\thasTooltip={true}\n\t\t\t\t\t\t\t\t\tdataQa={env.id}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t};\n\t\t\t\t\t})" + }, + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})" + }, + { + "name": "columnGap", + "type": "number", + "value": "8" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + }, + { + "name": "containerWidth", + "type": "expression", + "value": "containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + } + ], + "creationDate": "2022-10-21T12:41:33-04:00" + }, + { + "componentName": "SolaceCategorizedSearch", + "totalUsages": 6, + "usagesByMfe": { + "ep": 6 + }, + "commonProps": [ + { + "name": "name", + "count": 6 + }, + { + "name": "searchValue", + "count": 6 + }, + { + "name": "onSearchValueChange", + "count": 6 + }, + { + "name": "selectedCategoryValue", + "count": 6 + }, + { + "name": "onCategoryChange", + "count": 6 + }, + { + "name": "categoryOptions", + "count": 6 + }, + { + "name": "searchInputWidth", + "count": 5 + }, + { + "name": "equalButtonWidth", + "count": 4 + }, + { + "name": "categoryOptionsWidth", + "count": 4 + }, + { + "name": "onSearchInputFocus", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconCategorizedSearch\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChanged" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "expression", + "value": "entityFilterOptions.length > 0 ? entityFilterOptions : []" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedEntityTypeFilter" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleEntityTypeFilterChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "searchInputWidth", + "type": "expression", + "value": "\"280px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "tabOptions" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleTabChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + } + ] + } + ], + "creationDate": "2025-03-01T18:59:37-05:00" + }, + { + "componentName": "SolacePopover", + "totalUsages": 6, + "usagesByMfe": { + "intg": 6 + }, + "commonProps": [ + { + "name": "maxWidth", + "count": 6 + }, + { + "name": "title", + "count": 6 + }, + { + "name": "placement", + "count": 5 + }, + { + "name": "id", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "full" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + } + ], + "creationDate": "2022-01-13T13:41:26-05:00" + }, + { + "componentName": "SolaceListItemButton", + "totalUsages": 5, + "usagesByMfe": { + "ep": 5 + }, + "commonProps": [ + { + "name": "selected", + "count": 5 + }, + { + "name": "onClick", + "count": 5 + }, + { + "name": "sx", + "count": 3 + }, + { + "name": "divider", + "count": 2 + }, + { + "name": "disableGutters", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "!currentTab || currentTab === \"get-started\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.getStarted);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "currentTab === \"acme-retail-sample\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.acmeRetail);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceQueue" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceClientProfileName" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tbackground: theme.palette.ux.primary.text.w10,\n\t\t\t\t\t\t\theight: \"100%\",\n\t\t\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t\t\t\tpaddingTop: \"0\",\n\t\t\t\t\t\t\tborder: `1px solid ${theme.palette.ux.secondary.w20}`,\n\t\t\t\t\t\t\tborderBottom: index === data.items.length - 1 ? undefined : \"0\"\n\t\t\t\t\t\t}" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "variable", + "value": "selected" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedIndex(index)" + } + ] + } + ], + "creationDate": "2023-08-02T10:35:34-04:00" + }, + { + "componentName": "SolaceLinearProgress", + "totalUsages": 4, + "usagesByMfe": { + "ep": 1, + "mc": 3 + }, + "commonProps": [ + { + "name": "variant", + "count": 4 + }, + { + "name": "height", + "count": 4 + }, + { + "name": "value", + "count": 3 + }, + { + "name": "color", + "count": 1 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "color", + "type": "string", + "value": "learning" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "value", + "type": "variable", + "value": "completionPercentage" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "key", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "percent >= 99 ? \"indeterminate\" : \"determinate\"" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "variable", + "value": "percent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "expression", + "value": "getCreationPercentage(service.creationState, service.createdTime as Date)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + } + ] + } + ], + "creationDate": "2023-08-17T15:48:59-04:00" + }, + { + "componentName": "SolaceEnvironmentSelectChip", + "totalUsages": 4, + "usagesByMfe": { + "ep": 1, + "intg": 2, + "mc": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 4 + }, + { + "name": "value", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "options", + "count": 4 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "MEMListEnvironmentSelector" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment?.environmentId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderEnvironmentSelector" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceTag", + "totalUsages": 4, + "usagesByMfe": { + "ep": 4 + }, + "commonProps": [ + { + "name": "label", + "count": 4 + }, + { + "name": "fillColor", + "count": 2 + }, + { + "name": "labelColor", + "count": 2 + }, + { + "name": "variant", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + } + ], + "creationDate": "2023-05-23T21:30:48-04:00" + }, + { + "componentName": "SolaceAttributeValuePairForm", + "totalUsages": 4, + "usagesByMfe": { + "ep": 2, + "intg": 1, + "saas": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 4 + }, + { + "name": "avpList", + "count": 4 + }, + { + "name": "labelForKeys", + "count": 4 + }, + { + "name": "labelForValues", + "count": 4 + }, + { + "name": "id", + "count": 3 + }, + { + "name": "enableRequiredKeyFieldIndicator", + "count": 3 + }, + { + "name": "onAVPListUpdate", + "count": 3 + }, + { + "name": "avpKeyValidationCallback", + "count": 2 + }, + { + "name": "avpValueValidationCallback", + "count": 2 + }, + { + "name": "keyIsRequiredMessage", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "avpKeyValidationCallback", + "type": "variable", + "value": "validateEnumKeys" + }, + { + "name": "avpValueValidationCallback", + "type": "variable", + "value": "validateEnumValues" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Enumeration value is required" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getErrorMessage(error) : null" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50,\n\t\t\t\t\t\t\t\t\t\t\t\t\tinitialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "avpList", + "type": "expression", + "value": "enumerationVersion.values" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderMapping" + }, + { + "name": "avpList", + "type": "variable", + "value": "values" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "() as unknown as string" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeader" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(avpList) => setValues([...avpList])" + }, + { + "name": "disableReorder", + "type": "boolean", + "value": "true" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key" + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "enableRequiredValueFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Required Field!" + }, + { + "name": "avpKeyValidationCallback", + "type": "function", + "value": "(currentInput, values) => keyValidator(currentInput, values)" + }, + { + "name": "avpValueValidationCallback", + "type": "function", + "value": "(currentInput, values) => valueValidator(currentInput, values)" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => onChange(e)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + } + ], + "creationDate": "2021-12-20T16:15:41-05:00" + }, + { + "componentName": "SolaceStepper", + "totalUsages": 3, + "usagesByMfe": { + "ep": 1, + "intg": 2 + }, + "commonProps": [ + { + "name": "steps", + "count": 3 + }, + { + "name": "activeStep", + "count": 3 + }, + { + "name": "setActiveStep", + "count": 3 + }, + { + "name": "onClose", + "count": 3 + }, + { + "name": "onSubmit", + "count": 3 + }, + { + "name": "submitLabel", + "count": 3 + }, + { + "name": "onSecondarySubmit", + "count": 2 + }, + { + "name": "secondarySubmitLabel", + "count": 2 + }, + { + "name": "disableSubmit", + "count": 1 + }, + { + "name": "stepContentOverflow", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "variable", + "value": "handleSetActiveStepRequest" + }, + { + "name": "onClose", + "type": "function", + "value": "() => history.push(\"/ep/designer\")" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "messages.aiWizardButton.submit" + }, + { + "name": "disableSubmit", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx", + "props": [ + { + "name": "steps", + "type": "expression", + "value": "renderSteps()" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "onSubmit" + }, + { + "name": "onSecondarySubmit", + "type": "variable", + "value": "onSecondarySubmit" + }, + { + "name": "submitLabel", + "type": "variable", + "value": "submitLabel" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? secondarySubmitLabel : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => discardChangesAndClose()" + }, + { + "name": "onSubmit", + "type": "function", + "value": "() => onSubmit(true)" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined" + }, + { + "name": "onSecondarySubmit", + "type": "function", + "value": "() => onSubmit(false)" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "en.connectors.buttons.createDeploy" + }, + { + "name": "stepContentOverflow", + "type": "expression", + "value": "showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto" + } + ] + } + ], + "creationDate": "2024-03-11T18:07:06-04:00" + }, + { + "componentName": "SolaceFileUploader", + "totalUsages": 3, + "usagesByMfe": { + "intg": 3 + }, + "commonProps": [ + { + "name": "onFileChange", + "count": 3 + }, + { + "name": "maxFiles", + "count": 2 + }, + { + "name": "errorText", + "count": 2 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "readOnly", + "count": 2 + }, + { + "name": "fileNames", + "count": 2 + }, + { + "name": "accept", + "count": 1 + }, + { + "name": "id", + "count": 1 + }, + { + "name": "label", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "accept", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\"application/json\": [\".json\"]\n\t\t\t\t\t\t\t}" + }, + { + "name": "onFileChange", + "type": "function", + "value": "(files) => {\n\t\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\t\tsetFileImported(files);\n\t\t\t\t\t\t\t}" + }, + { + "name": "errorText", + "type": "variable", + "value": "uploadDialogErrorText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "props.id" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "onFileChange", + "type": "function", + "value": "async (files) => props.onChange(await fileUpload(files))" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "props.value ? [\"\"] : []" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "onFileChange", + "type": "variable", + "value": "handleFileChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []" + }, + { + "name": "errorText", + "type": "expression", + "value": "solaceValidationErrors.sslKeyStore" + } + ] + } + ], + "creationDate": "2024-07-04T09:31:30-04:00" + }, + { + "componentName": "SolaceFeatureTag", + "totalUsages": 3, + "usagesByMfe": { + "intg": 3 + }, + "commonProps": [ + { + "name": "text", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "Experimental" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceToasts", + "totalUsages": 2, + "usagesByMfe": { + "ep": 1, + "intg": 1 + }, + "commonProps": [ + { + "name": "message", + "count": 2 + }, + { + "name": "open", + "count": 2 + }, + { + "name": "action", + "count": 2 + }, + { + "name": "severity", + "count": 2 + }, + { + "name": "onClose", + "count": 2 + }, + { + "name": "autoDismiss", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "toast.message" + }, + { + "name": "open", + "type": "expression", + "value": "toast.open" + }, + { + "name": "action", + "type": "expression", + "value": "toast.action" + }, + { + "name": "severity", + "type": "expression", + "value": "toast.severity" + }, + { + "name": "autoDismiss", + "type": "expression", + "value": "toast.autoDismiss" + }, + { + "name": "onClose", + "type": "variable", + "value": "removeToast" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "severity", + "type": "expression", + "value": "severity as SolaceToastsProps[\"severity\"]" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseSnackbar" + }, + { + "name": "action", + "type": "expression", + "value": "action as SolaceToastsProps[\"action\"]" + } + ] + } + ], + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "componentName": "SolaceDatePicker", + "totalUsages": 2, + "usagesByMfe": { + "ep": 1, + "saas": 1 + }, + "commonProps": [ + { + "name": "value", + "count": 2 + }, + { + "name": "onChange", + "count": 2 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "onClear", + "count": 1 + }, + { + "name": "variant", + "count": 1 + }, + { + "name": "disableFuture", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "value", + "type": "variable", + "value": "endOfLifeDate" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEndOfLifeDateChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "endOfLifeDateSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => clearSelectedDate()" + }, + { + "name": "onChange", + "type": "variable", + "value": "setSelectedDate" + }, + { + "name": "variant", + "type": "expression", + "value": "SolaceDatePickerVariant.FORMAT_MONTH_YEAR" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDate" + } + ] + } + ], + "creationDate": "2024-04-26T16:07:50-04:00" + }, + { + "componentName": "SolaceSplitPane", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "minSize", + "count": 2 + }, + { + "name": "defaultSize", + "count": 2 + }, + { + "name": "maxSize", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "-700" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "Math.max(500, leftPanelMaxWidth)" + } + ] + } + ], + "creationDate": "2022-03-01T17:31:19-05:00" + }, + { + "componentName": "SolaceTextDiff", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "text1", + "count": 2 + }, + { + "name": "text2", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "runtimeAttributes" + }, + { + "name": "text2", + "type": "variable", + "value": "designerAttributes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "schemaBody" + }, + { + "name": "text2", + "type": "variable", + "value": "secondSchemaBody" + } + ] + } + ], + "creationDate": "2023-01-06T01:11:20+05:30" + }, + { + "componentName": "SolaceJsonSchemaForm", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "formData", + "count": 2 + }, + { + "name": "formItem", + "count": 2 + }, + { + "name": "formOptions", + "count": 2 + }, + { + "name": "onChange", + "count": 2 + }, + { + "name": "transformError", + "count": 2 + }, + { + "name": "transformWidget", + "count": 2 + }, + { + "name": "readOnly", + "count": 1 + }, + { + "name": "disabled", + "count": 1 + }, + { + "name": "ajvClass", + "count": 1 + }, + { + "name": "transformTitle", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!onChange" + }, + { + "name": "disabled", + "type": "expression", + "value": "!enabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}" + }, + { + "name": "ajvClass", + "type": "variable", + "value": "Ajv2019" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}" + }, + { + "name": "transformTitle", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + } + ] + } + ], + "creationDate": "2024-08-27T15:37:01-04:00" + }, + { + "componentName": "SolaceStackLabel", + "totalUsages": 2, + "usagesByMfe": { + "saas": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 2 + }, + { + "name": "required", + "count": 2 + }, + { + "name": "htmlForId", + "count": 1 + }, + { + "name": "bold", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`environment-type-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`isProduction`" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!!required" + }, + { + "name": "id", + "type": "expression", + "value": "id ?? name.toLowerCase()" + } + ] + } + ], + "creationDate": "2021-09-20T02:03:26-04:00\n2021-09-20T02:03:26-04:00" + }, + { + "componentName": "SolaceMenuItem", + "totalUsages": 1, + "usagesByMfe": { + "ep": 1 + }, + "commonProps": [ + { + "name": "key", + "count": 1 + }, + { + "name": "...", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`graphContextMenu_${menuItem.id ?? index}`" + }, + { + "name": "...", + "type": "spread", + "value": "menuItem" + } + ] + } + ], + "creationDate": "2022-06-17T09:35:53-04:00" + }, + { + "componentName": "SolaceDonutChart", + "totalUsages": 1, + "usagesByMfe": { + "ep": 1 + }, + "commonProps": [ + { + "name": "data", + "count": 1 + }, + { + "name": "showTooltip", + "count": 1 + }, + { + "name": "icon", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "data", + "type": "expression", + "value": "getPieChartData()" + }, + { + "name": "showTooltip", + "type": "boolean", + "value": "true" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + } + ], + "creationDate": "2024-08-29T07:49:12-04:00" + }, + { + "componentName": "SolaceEmptyStateBanner", + "totalUsages": 1, + "usagesByMfe": { + "intg": 1 + }, + "commonProps": [ + { + "name": "bannerImage", + "count": 1 + }, + { + "name": "subtitle", + "count": 1 + }, + { + "name": "title", + "count": 1 + }, + { + "name": "description", + "count": 1 + }, + { + "name": "primaryButton", + "count": 1 + }, + { + "name": "secondaryButton", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx", + "props": [ + { + "name": "bannerImage", + "type": "jsx", + "value": "" + }, + { + "name": "subtitle", + "type": "expression", + "value": "en.connectors.labels.emptyState.subtitle" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.emptyState.title" + }, + { + "name": "description", + "type": "expression", + "value": "en.connectors.labels.emptyState.description" + }, + { + "name": "primaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.checkoutAvailableConnectors,\n\t\t\t\tonClick: onPrimaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-primary-button\"\n\t\t\t}" + }, + { + "name": "secondaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.exploreOnMyOwn,\n\t\t\t\tonClick: onSecondaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-secondary-button\"\n\t\t\t}" + } + ] + } + ], + "creationDate": "2024-03-25T10:53:54-04:00" + }, + { + "componentName": "SolaceGridListMultiSelect", + "totalUsages": 1, + "usagesByMfe": { + "mc": 1 + }, + "commonProps": [ + { + "name": "id", + "count": 1 + }, + { + "name": "items", + "count": 1 + }, + { + "name": "headers", + "count": 1 + }, + { + "name": "actions", + "count": 1 + }, + { + "name": "rowMapping", + "count": 1 + }, + { + "name": "gridTemplate", + "count": 1 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "selectedRowIds", + "count": 1 + }, + { + "name": "onSelection", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "services" + }, + { + "name": "items", + "type": "expression", + "value": "services ?? []" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "services" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedIds" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + } + ] + } + ], + "creationDate": "2022-03-07T13:57:28-05:00" + } + ], + "unusedComponents": [ + { + "name": "WarningText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/WarningText.tsx", + "creationDate": "2022-04-04T21:31:41-04:00" + }, + { + "name": "HelperText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/HelperText.tsx", + "creationDate": "2021-11-09T11:00:14-05:00\n2021-11-03T19:40:42-04:00\n2021-10-24T23:01:06-04:00" + }, + { + "name": "SolaceStepperFooter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx", + "creationDate": "2024-03-11T18:07:06-04:00" + }, + { + "name": "FormChildBase", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/FormChildBase.tsx", + "creationDate": "2021-11-09T11:00:14-05:00\n2021-11-03T19:40:42-04:00\n2021-10-24T23:01:06-04:00" + }, + { + "name": "SolaceAttributeValuePair", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx", + "creationDate": "2021-12-20T16:15:41-05:00" + }, + { + "name": "ErrorText", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/ErrorText.tsx", + "creationDate": "2021-11-09T11:00:14-05:00\n2021-11-03T19:40:42-04:00\n2021-10-24T23:01:06-04:00" + }, + { + "name": "SolaceAutoCompleteTextField", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx", + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "name": "SolaceTree", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceTree.tsx", + "creationDate": "2021-10-20T15:48:29-04:00" + }, + { + "name": "SolaceNotificationCounter", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceNotificationCounter.tsx", + "creationDate": "2022-01-23T16:10:09-05:00" + }, + { + "name": "NoAccess", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/NoAccess.tsx", + "creationDate": "2021-08-12T14:52:39-04:00" + }, + { + "name": "SolaceCardHeader", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceCardHeader.tsx", + "creationDate": "2025-04-02T10:15:59-04:00" + }, + { + "name": "SolaceLearningBanner", + "path": "/Users/ishanphadte/Documents/Github/maas-react-components/src/components/SolaceLearningBanner.tsx", + "creationDate": "2022-03-08T12:16:07-05:00" + } + ], + "unusedComponentsByMfe": { + "ep": [ + "WarningText", + "SolaceStackLabel", + "HelperText", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "ErrorText", + "SolaceAutoCompleteTextField", + "SolaceTree", + "SolaceNotificationCounter", + "NoAccess", + "SolaceGridListMultiSelect", + "SolaceEmptyStateBanner", + "SolaceBreadcrumb", + "SolaceCardHeader", + "SolaceBackDrop", + "SolaceFeatureTag", + "SolaceLearningBanner", + "SolaceFileUploader", + "SolacePopover" + ], + "intg": [ + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "WarningText", + "SolaceStackLabel", + "HelperText", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceLearningButton", + "SolacePicker", + "ErrorText", + "SolaceToggleButtonGroup", + "SolaceAutoCompleteTextField", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceMenuItem", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceDrawer", + "SolaceTag", + "SolaceCardHeader", + "SolaceErrorBox", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceDonutChart" + ], + "mc": [ + "SolaceToasts", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "WarningText", + "SolaceStackLabel", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceAttributeValuePairForm", + "SolaceLearningButton", + "SolacePicker", + "ErrorText", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceListItem", + "SolaceSplitPane", + "SolaceListItemButton", + "SolaceList", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceTag", + "SolaceCardHeader", + "SolaceBackDrop", + "SolaceTable", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceSearchAndFilter", + "SolaceDonutChart", + "SolaceChip", + "SolacePopover" + ], + "saas": [ + "SolaceToasts", + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "WarningText", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceLearningButton", + "ErrorText", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceTree", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceTag", + "SolaceCardHeader", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceSearchAndFilter", + "SolaceDonutChart", + "SolacePopover" + ] + }, + "overallStats": { + "totalUsages": 4047, + "mostUsedComponents": [ + { + "name": "SolaceButton", + "count": 702 + }, + { + "name": "SolaceTypography", + "count": 667 + }, + { + "name": "SolaceLabel", + "count": 302 + }, + { + "name": "SolaceTooltip", + "count": 298 + }, + { + "name": "SolaceMessageBox", + "count": 233 + }, + { + "name": "SolaceGrid", + "count": 227 + }, + { + "name": "SolaceConfirmationDialog", + "count": 192 + }, + { + "name": "SolaceTextField", + "count": 161 + }, + { + "name": "SolaceStack", + "count": 132 + }, + { + "name": "SolaceSelect", + "count": 104 + } + ], + "mostUsedProps": [ + { + "name": "variant", + "count": 1591 + }, + { + "name": "dataQa", + "count": 1021 + }, + { + "name": "id", + "count": 692 + }, + { + "name": "title", + "count": 652 + }, + { + "name": "onClick", + "count": 558 + }, + { + "name": "onChange", + "count": 531 + }, + { + "name": "name", + "count": 527 + }, + { + "name": "value", + "count": 412 + }, + { + "name": "label", + "count": 408 + }, + { + "name": "message", + "count": 248 + } + ], + "mfeUsages": { + "ep": 2412, + "intg": 494, + "mc": 446, + "saas": 695 + }, + "totalUnusedComponents": 12 + }, + "componentsCreatedLastYear": [ + { + "componentName": "SolaceTruncatableLink", + "totalUsages": 48, + "usagesByMfe": { + "ep": 46, + "intg": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 48 + }, + { + "name": "text", + "count": 48 + }, + { + "name": "onClick", + "count": 31 + }, + { + "name": "dataQa", + "count": 8 + }, + { + "name": "href", + "count": 2 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedEventBroker.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedApplication.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsLabel(credentials)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeAValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputA\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeBValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointNameValue" + }, + { + "name": "text", + "type": "variable", + "value": "rdpName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}NameValue`" + }, + { + "name": "text", + "type": "expression", + "value": "entity.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "expression", + "value": "onVersionNameClick ? version.display || version.semver : {version.display || version.semver}" + }, + { + "name": "onClick", + "type": "expression", + "value": "onVersionNameClick ? () => onVersionNameClick(version) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "event.id" + }, + { + "name": "text", + "type": "expression", + "value": "event.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => eventSelectionCallback(event)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{`${applicationVersion.parent.name} `}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{applicationVersion.displayName || applicationVersion.version}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "text", + "type": "variable", + "value": "eventApiProductName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "variable", + "value": "itemName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "messagingService.id" + }, + { + "name": "text", + "type": "expression", + "value": "messagingService.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onTitleLinkClick(messagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion][Title]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityVersion.parent.id}-${entityVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id + \"_name\"" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventMeshName" + }, + { + "name": "onClick", + "type": "expression", + "value": "hasAccess ? () => handleViewDetail(row) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${associatedEvents?.[0]?.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEvents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEvents?.[0])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${associatedEvents?.[0]?.name}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionSummaryPopoverText=${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionName-${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(applicationVersion.parent, applicationVersion)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appName-${application.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "application.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(application)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "id", + "type": "expression", + "value": "event?.name" + }, + { + "name": "text", + "type": "expression", + "value": "event?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(event)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "associatedEventParents?.[0]?.name" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEventParents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEventParents?.[0])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaDetail?.name}`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaDetail?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(null)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaDetail?.name}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${applicationDetail?.parent?.name}-${applicationDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventDetail?.parent?.name}-${eventDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "eventDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionNumber}`" + }, + { + "name": "text", + "type": "expression", + "value": "`Version ${versionNumber}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionLinkClick(relation)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${row.id}-templateLink`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplate(row.id)" + }, + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.templateName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"contextSelector-title\"" + }, + { + "name": "text", + "type": "expression", + "value": "`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "expression", + "value": "item.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "canOpen ? () => onOpen(item) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "node.versionId" + }, + { + "name": "text", + "type": "expression", + "value": "node.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.eventId" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "row.application?.name ?? \"-\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "request.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "request.application.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "applicationDomainLocked ? null : () => onApplicationClick(request.application)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion.id}-link`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewSchemaVersionDetails(schema, schemaVersion)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaVersion.id}-viewDetails`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined" + }, + { + "name": "id", + "type": "expression", + "value": "eventBroker.id" + }, + { + "name": "text", + "type": "expression", + "value": "eventBroker.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${applicationVersion.id}-applicationVersion-link`" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`" + }, + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "limitString(row.name, 35)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(row.name)}_button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`row.name_button`" + } + ] + } + ], + "creationDate": "2024-10-18T10:53:08-04:00" + }, + { + "componentName": "SolaceEnvironmentChip", + "totalUsages": 19, + "usagesByMfe": { + "ep": 9, + "intg": 4, + "mc": 5, + "saas": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 12 + }, + { + "name": "...", + "count": 11 + }, + { + "name": "bgColor", + "count": 8 + }, + { + "name": "fgColor", + "count": 8 + }, + { + "name": "icon", + "count": 8 + }, + { + "name": "dataQa", + "count": 7 + }, + { + "name": "maxWidth", + "count": 4 + }, + { + "name": "onDelete", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "maxWidth" + }, + { + "name": "onDelete", + "type": "expression", + "value": "onDelete || null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "context.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "contextOption.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "dialogState.name || \"Environment Name\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceEnvironmentLabel", + "totalUsages": 17, + "usagesByMfe": { + "ep": 3, + "intg": 6, + "mc": 2, + "saas": 6 + }, + "commonProps": [ + { + "name": "label", + "count": 15 + }, + { + "name": "fgColor", + "count": 15 + }, + { + "name": "bgColor", + "count": 15 + }, + { + "name": "icon", + "count": 15 + }, + { + "name": "variant", + "count": 7 + }, + { + "name": "...", + "count": 2 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "standard" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[environment]" + }, + { + "name": "...", + "type": "spread", + "value": "environmentOption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "title" + }, + { + "name": "label", + "type": "expression", + "value": "environment.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[environment.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "env.name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "env.fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "env.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolacePageHeader", + "totalUsages": 17, + "usagesByMfe": { + "ep": 4, + "intg": 6, + "mc": 5, + "saas": 2 + }, + "commonProps": [ + { + "name": "title", + "count": 15 + }, + { + "name": "breadcrumbs", + "count": 11 + }, + { + "name": "environment", + "count": 10 + }, + { + "name": "borderTop", + "count": 10 + }, + { + "name": "actions", + "count": 6 + }, + { + "name": "subTitle", + "count": 4 + }, + { + "name": "release", + "count": 3 + }, + { + "name": "...", + "count": 2 + }, + { + "name": "actionMenu", + "count": 2 + }, + { + "name": "tabs", + "count": 2 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/home/Home.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "overrideProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/home/Home.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "screenPath" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal AI Designer" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]" + }, + { + "name": "release", + "type": "string", + "value": "EXPERIMENTAL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "environment", + "type": "expression", + "value": "environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "actions", + "type": "expression", + "value": "(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actionMenu", + "type": "jsx", + "value": ",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.connectorFlows" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.agents.agents" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_event_meshes\", message: \"Event Meshes\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_service_details\", message: \"Service Details\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "service?.name ?? \"...\"" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]" + }, + { + "name": "tabs", + "type": "jsx", + "value": " {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_services\", message: \"Services\" })" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_compare_services\", message: \"Compare Services\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "subTitle", + "type": "variable", + "value": "subTitle" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Page Title" + }, + { + "name": "environment", + "type": "jsx", + "value": "" + }, + { + "name": "borderTop", + "type": "variable", + "value": "bgColor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.accountDetails.userSettings.settings" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolacePicker", + "totalUsages": 13, + "usagesByMfe": { + "ep": 11, + "saas": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 13 + }, + { + "name": "onChange", + "count": 13 + }, + { + "name": "value", + "count": 13 + }, + { + "name": "variant", + "count": 13 + }, + { + "name": "icons", + "count": 12 + }, + { + "name": "dataQa", + "count": 11 + }, + { + "name": "numOfItemsPerRow", + "count": 11 + }, + { + "name": "label", + "count": 11 + }, + { + "name": "iconKeyOrderedList", + "count": 10 + }, + { + "name": "inlineLabel", + "count": 9 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customColour-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "icons", + "type": "variable", + "value": "entityColourBlocks" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customIconLogo-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "\"No Results Found\"" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "themePicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select Color Theme\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "themePicker" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "color" + }, + { + "name": "label", + "type": "string", + "value": "Color" + }, + { + "name": "variant", + "type": "string", + "value": "colors" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.color" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvColorChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "icon" + }, + { + "name": "label", + "type": "string", + "value": "Icon" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.icon" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvIconChange" + }, + { + "name": "icons", + "type": "variable", + "value": "Icons24" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceCategorizedSearch", + "totalUsages": 6, + "usagesByMfe": { + "ep": 6 + }, + "commonProps": [ + { + "name": "name", + "count": 6 + }, + { + "name": "searchValue", + "count": 6 + }, + { + "name": "onSearchValueChange", + "count": 6 + }, + { + "name": "selectedCategoryValue", + "count": 6 + }, + { + "name": "onCategoryChange", + "count": 6 + }, + { + "name": "categoryOptions", + "count": 6 + }, + { + "name": "searchInputWidth", + "count": 5 + }, + { + "name": "equalButtonWidth", + "count": 4 + }, + { + "name": "categoryOptionsWidth", + "count": 4 + }, + { + "name": "onSearchInputFocus", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconCategorizedSearch\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChanged" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "expression", + "value": "entityFilterOptions.length > 0 ? entityFilterOptions : []" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedEntityTypeFilter" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleEntityTypeFilterChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "searchInputWidth", + "type": "expression", + "value": "\"280px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "tabOptions" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleTabChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + } + ] + } + ], + "creationDate": "2025-03-01T18:59:37-05:00" + }, + { + "componentName": "SolaceEnvironmentSelectChip", + "totalUsages": 4, + "usagesByMfe": { + "ep": 1, + "intg": 2, + "mc": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 4 + }, + { + "name": "value", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "options", + "count": 4 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "MEMListEnvironmentSelector" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment?.environmentId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderEnvironmentSelector" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceFeatureTag", + "totalUsages": 3, + "usagesByMfe": { + "intg": 3 + }, + "commonProps": [ + { + "name": "text", + "count": 3 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "Experimental" + } + ] + } + ], + "creationDate": "2024-10-29T22:38:58-04:00" + }, + { + "componentName": "SolaceJsonSchemaForm", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "formData", + "count": 2 + }, + { + "name": "formItem", + "count": 2 + }, + { + "name": "formOptions", + "count": 2 + }, + { + "name": "onChange", + "count": 2 + }, + { + "name": "transformError", + "count": 2 + }, + { + "name": "transformWidget", + "count": 2 + }, + { + "name": "readOnly", + "count": 1 + }, + { + "name": "disabled", + "count": 1 + }, + { + "name": "ajvClass", + "count": 1 + }, + { + "name": "transformTitle", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!onChange" + }, + { + "name": "disabled", + "type": "expression", + "value": "!enabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}" + }, + { + "name": "ajvClass", + "type": "variable", + "value": "Ajv2019" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}" + }, + { + "name": "transformTitle", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + } + ] + } + ], + "creationDate": "2024-08-27T15:37:01-04:00" + }, + { + "componentName": "SolaceDonutChart", + "totalUsages": 1, + "usagesByMfe": { + "ep": 1 + }, + "commonProps": [ + { + "name": "data", + "count": 1 + }, + { + "name": "showTooltip", + "count": 1 + }, + { + "name": "icon", + "count": 1 + } + ], + "files": [ + "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "data", + "type": "expression", + "value": "getPieChartData()" + }, + { + "name": "showTooltip", + "type": "boolean", + "value": "true" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + } + ], + "creationDate": "2024-08-29T07:49:12-04:00" + } + ], + "componentsCreatedLastQuarter": [], + "rawData": { + "componentUsages": [ + { + "component": "SolaceToasts", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "toast.message" + }, + { + "name": "open", + "type": "expression", + "value": "toast.open" + }, + { + "name": "action", + "type": "expression", + "value": "toast.action" + }, + { + "name": "severity", + "type": "expression", + "value": "toast.severity" + }, + { + "name": "autoDismiss", + "type": "expression", + "value": "toast.autoDismiss" + }, + { + "name": "onClose", + "type": "variable", + "value": "removeToast" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "severity", + "type": "expression", + "value": "severity as SolaceToastsProps[\"severity\"]" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseSnackbar" + }, + { + "name": "action", + "type": "expression", + "value": "action as SolaceToastsProps[\"action\"]" + } + ] + } + ] + }, + { + "component": "SolaceSelectAutocompleteItem", + "count": 53, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "RESOURCE_LABEL_BY_ROLE[role]" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "subText", + "type": "expression", + "value": "RESOURCE_DESCRIPTION_BY_ROLE[role]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.scanWithEventPortal" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.scanFromEventPortal" + }, + { + "name": "subText", + "type": "string", + "value": "Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.uploadScanFile" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.uploadScanFile" + }, + { + "name": "subText", + "type": "string", + "value": "Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "eventMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "version" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isSecondVersionOptions && selectedVersionId === version.id ? \"No Difference\" : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceClientUsername.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceClientUsername" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceAuthorizationGroup.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceAuthorizationGroup" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tracingType[TracingType.Insights]" + }, + { + "name": "value", + "type": "expression", + "value": "TracingType.Insights" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isInsights ? \"Default\" : \"Not Available\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]" + }, + { + "name": "value", + "type": "expression", + "value": "TlsConnectionType.SecureSkipValidation" + }, + { + "name": "subText", + "type": "string", + "value": "Skips certificate authority validation" + } + ] + } + ] + }, + { + "component": "SolaceButton", + "count": 702, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/schemaUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "jsonSchemaSpecLink" + }, + { + "name": "href", + "type": "string", + "value": "https://json-schema.org/specification.html" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "commandBlockCopyButton" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseMessagingServiceDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenMessagingServiceDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`${protocol}//${host}/environments`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][addSchemaRegistry]" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddSchemaRegistry" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "schemaAuthArray?.length > 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDownload(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!Object.values(namingStrategy).includes(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "onOpenVersion ?? onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "returnToApplicationButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://www.solace.com" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "cancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkToApplicationVersionDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleUndo" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleCheckbox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, \"_self\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learningCenterLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(\"/learningCenter\", \"_self\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/environments.htm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "lcVideoTutorialsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"videoTutorials\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "trainingCoursesLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"courses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "epOverviewDocsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"overviewDocs\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeConfigSidePanelButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"closeDetailsDialog\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner(version)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"cancelAddEventToApplication\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"saveAddEventToApplication\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner?.(version)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddToApplication(version)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-edit`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onEditName(entityType, index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(entityType, index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-viewall-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-add`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAdd(entityType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/runtime`);\n\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/designer`);\n\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApply" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasUnsavedChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + }, + { + "name": "key", + "type": "expression", + "value": "action.id" + }, + { + "name": "...", + "type": "spread", + "value": "action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onVersionAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "addVersionButton" + }, + { + "name": "title", + "type": "string", + "value": "Add New Version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(false)" + }, + { + "name": "title", + "type": "string", + "value": "Hide Version List" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(true)" + }, + { + "name": "title", + "type": "string", + "value": "Show Version List" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "changeVersionState" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onChangeVersionState" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"customAttributeDefinitionsEditorButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenCustomAttributeDialog()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateBackToOrigin" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "underline", + "type": "string", + "value": "none" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleStartOverriding" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetOverrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "variable", + "value": "disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitAndCloseVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionAndCloseButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createVersion" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "configureVarButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "removeDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemove(index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicSubscriptions\", \"link\")" + }, + { + "name": "data-qa", + "type": "string", + "value": "infoBlurbLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "setKafkaPreferences" + }, + { + "name": "onClick", + "type": "expression", + "value": "onSetKafkaPreferences ? onSetKafkaPreferences : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"More Actions\"" + }, + { + "name": "...", + "type": "spread", + "value": "buttonProps" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "latestGraphUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "action-btn-inline-banner" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isButtonDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "onButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "graphEmpty" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(filterType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}-delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteFilter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters(true, true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "latestJarFileLink" + }, + { + "name": "href", + "type": "expression", + "value": "eventManagementAgentResources.version.needUpgradeLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompleteInstallationSetupClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "comnpleteInstallationSetupButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSkipButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleCopyFile(evt, details, emaType, copyButtonId)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/releases" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/error-id-help" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "openMessagingServiceDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyFile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "EMA_PREREQUISITES_LINK" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateRuntimeAgent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewModeledEventMeshes" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewModeledEventMeshes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => removeMessagingService(messagingService)" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeMessagingService" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "agentSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDownloadConnectionFile(item.id, item.name)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleCollectData(selectedMessagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "runDiscoveryScan" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDiscoveryScanButtonDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + }, + { + "name": "key", + "type": "expression", + "value": "\"addMessageService\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewConnectionDetailsButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewConnectionDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteMessagingService(selectedMessagingService)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveVersionEntity(entityVersion.id)" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeEntityFromListButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to manage associations" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "backToGraphView" + }, + { + "name": "dataQa", + "type": "string", + "value": "backToGraphView" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!item?.auth?.canOpenModelEventMesh" + }, + { + "name": "onClick", + "type": "variable", + "value": "onViewDetail" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewMEMDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMem" + }, + { + "name": "dataQa", + "type": "string", + "value": "createModeledEventMeshButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventManagementAgentConnections" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMemDialogOpen" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => showObjectRelationshipsForFirstObjectCallback?.()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshEventMeshDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"designerTool\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshEventMeshDetails()" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest objects and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToMessagingServiceTab" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAutoCollectDialogOpen(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setRefresh(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "title", + "type": "string", + "value": "Refresh all audit results" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "hideSecondaryPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go Back" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCloseDetails" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go to Selection Panel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDeselectAll" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImportJob-close" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDismissJob(jobId)" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(eventDetail.parent, eventDetail)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompareVersions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"compareVersionsBtn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBack" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"backCompareConfigDialog\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewConfiguration(isSchemaParent)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullConfiguration\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventBrokerConnections" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshAuditResult()" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAll" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"applicationDomain\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "buttonVariant || \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "chooseImportOptionButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\thandleImport(\n\t\t\t\t\t\t\tauditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent\n\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionSelection(applicationVersion)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeselect" + }, + { + "name": "dataQa", + "type": "string", + "value": "validationErrorDeselect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/runtime/modeled-event-meshes/${eventMeshId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "designerLink" + }, + { + "name": "dataQa", + "type": "string", + "value": "designerLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"/ep/catalog\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "catalogLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenCelebratoryDialog(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImport-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "action" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoTagAction(request)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetToDefault" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkHref" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDeleteTemplateDialog(true, row)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTemplateButton" + }, + { + "name": "title", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTemplateButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelTemplate" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onSave" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveTemplate" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenAddToApplicationModal(selectedEvent)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(title)}-${secondaryAction.completed}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsecondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);\n\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "secondaryAction?.disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpEMA\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpMEM\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "sampleApplicationsDomainsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableText.solace.links.sampleDocs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"design\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "dismissExploreSample" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thandleOpenLink(\"videoTutorials\");\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "howToVideosButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUserManagement" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreTooltipLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreCardLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleModeSelection(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError ||\n\t\t\t\t\t\t(templates?.length && (templateNotFound || !!templateOutOfSync)) ||\n\t\t\t\t\t\ttemplateHasSchemaErrors ||\n\t\t\t\t\t\t!!errors[FormNameConfiguration]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(type, header)" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeRequestHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addQueueBinding" + }, + { + "name": "isDisabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideQueueBinding" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearOverrideQueueBinding" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveConfiguration()" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeQueueBinding" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRequestHeaderDialog(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRequestHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnAddQueueBinding" + }, + { + "name": "dataQa", + "type": "expression", + "value": "isGlobal ? \"addQueueBinding\" : \"overrideQueueBinding\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleOnDelete" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowConsumerType(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowConsumerType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "showConsumerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowReset" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverrideRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowOverride" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRestConsumer(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "showRestConsumer || !configurationTypeId || !isEditing" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowRestConsumer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "selectAnotherTemplateAction" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSelect" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isSelectDisabled" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"customizeAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCustomize" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"refreshAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant || \"text\"" + }, + { + "name": "onClick", + "type": "expression", + "value": "action.onClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "custom-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.queueConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "template-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "messagesTemplate.solaceQueue.infoBlurb.linkHref" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setModeSelectionToConfirm(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError || templateNotFound || !!templateOutOfSync" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConsumer" + }, + { + "name": "dataQa", + "type": "string", + "value": "addConsumerButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "expression", + "value": "messages[configType].emptyLinkref" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetUserAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "openApplicationDomainButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"sampleDocs\", \"link\")" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(\"clickSampleDocumentationLink\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "importAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => importDomainsFileRef.current?.click()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"enumerations\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoUpload(valuesToUndo)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "fileUploading" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersion[values]-importFromFileButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit((data) => {\n\t\t\t\t\t\t\t\tif (!validateEnumValueSets()) {\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst preparedData = prepareEntityForBackend(data);\n\n\t\t\t\t\t\t\t\treturn handleSaveEntityAndVersion(preparedData);\n\t\t\t\t\t\t\t})" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEnumeration.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToSelectedApplicationDomain()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainGraphSidePanel-details-editBtn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelCustomAttributesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || isWritingEpCore || saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveCustomAttributesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}NodeSidePanelCustomAttributeEditButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClickCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave(existingLatestNonRetiredVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || saveInProgress || isWritingEpCore" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClosePanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "leftSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit Appearance" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAppearance" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-appearance-button" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => goToComponentLists?.()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest versions and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"Add To Graph\"" + }, + { + "name": "title", + "type": "string", + "value": "Add To Graph" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!nodeIdWithUnsavedChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "findOnGraph" + }, + { + "name": "key", + "type": "expression", + "value": "\"findOnGraph\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "searchButtonDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "key", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchPanelCollapseButton" + }, + { + "name": "title", + "type": "string", + "value": "Collapse" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleNavigateToComponentList(e, entityType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEventApis" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventApisButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "selectedEventApiVersionIds.includes(versionData.id) ? \"text\" : \"outline\"" + }, + { + "name": "id", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "key", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? \"remove\" : \"add\", versionData)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t\tonFilterButtonClicked(item);\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterButton-${item.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApi.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "source === \"application\" ? en.application.links.extension : en.eventApi.links.extension" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "version === \"2.5.0\" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.asyncApi" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`planDeleteButton-${index}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onPlanDelete(index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAddPlanButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "planFields.length === 5" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAddPlanClicked" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpen(true)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.approvalTypes.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApiProduct.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createEventApiProductButton" + }, + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createSchema.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTriggerVersionDuplication(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageReferencedSchemas" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "revokeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "approveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddButtonClick" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!editableSubscriptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.add`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.${index}.remove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteButtonClick(consumerId, index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "subscription === \"\" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscriptionAddButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSuggestedEvents(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.download" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${name}-configDownload`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\tdownload(new Blob([configuration]), getConfigurationName(name), \"application/json\");\n\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleInitiateOverride" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-overrideConfigButton`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-clearOverrideButton`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configurationRemove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleEventVersionSelect(e, item)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleEventsExpand" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sortedItems.length === 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFindEventsClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "launchUserAccessDialog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "getRrbacRoles.isLoading || getAttributeAssignments.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isSaveButtonDisabled()" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(onFormSubmit)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTopicDomain" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddTopicDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromUI(index)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromBackend(topicDomain.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editApplicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "title", + "type": "expression", + "value": "\"Launch link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTopicAddressResourceLink" + }, + { + "name": "href", + "type": "variable", + "value": "resource" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Edit link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Delete link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDelete" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDelete()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesAdd" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kafkaEvents\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEvent.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemas" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemasForPrimitiveType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasForPrimitiveTypeButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`remove${keyOrValue}SchemaButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenQuickCreateSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"quickCreateSchemaButton\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "backButton" + }, + { + "name": "title", + "type": "string", + "value": "Back" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "notifyParentOfSchemaVersionSelection" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectPrimitiveTypeButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to add subscription" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleManageSubscriptions(currentSubscription, consumerName)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Quick Create Event" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDialog(\"quickCreateEvent\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "quickCreateEventButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tremove();\n\t\t\t\t\t\t\t\tremoveToast();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEvents" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === SidePanel.manageEvents" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventsButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "data-qa", + "type": "string", + "value": "topicAddressHelpCloseButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Source}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.source ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Destination}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.destination ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSendAllRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "sendRequestButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertFormValuesForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createApplication.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddToEnvironmentData({ ...eventBrokerRecord })" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-addApplicationButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "declinedRequests.length + requestsToCreate.length === 0 ? \"outline\" : \"call-to-action\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageRequestButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenRequestPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`sub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.sub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`pub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.pub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEventVersionSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonAddSubscription(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageRelationshipBtnClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageLinksBtn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dataQa + \"-expandAll\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleRequestsExpand" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isValid || !isDirty" + }, + { + "name": "onClick", + "type": "expression", + "value": "mode === \"existingConsumer\" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)" + }, + { + "name": "data-qa", + "type": "string", + "value": "addSubscriptionButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "gotoRuntimeTab" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "launchRDPDeploymentDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRDPToBrokerButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetIsEditing(true);\n\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onToggleInputBType" + }, + { + "name": "title", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "startIcon", + "type": "expression", + "value": "showSparkle ? : undefined" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${id}_filterToggleButton`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClearFilterClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterToggleButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.READ_ONLY)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.CREATE)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.EDIT)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "removeRelation" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRelation(relation)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAdd" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add_${inputOrOutput}_button`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(handle)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "openUploadModal" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetReImport(true);\n\t\t\t\t\t\t\t\topenUploadModal();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-edit-constant-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetConstantField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyConstantEdit" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetCustomHeaderField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-custom-header-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyHeaderEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`delete-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetIdToDelete(id);\n\t\t\t\t\t\t\tsetShowDeleteDialog(true);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConstant" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "startIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMapWithAI" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-constant-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddConstantDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddHeaderDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSensitiveField ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSensitiveField ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSensitiveField(!showSensitiveField)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e: any) => onClick && onClick(e)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "expression", + "value": "onDropPropertyClick(label)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "zeroStateDocLink" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(CONNECTOR_AVAILABLE)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeployState" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openConnectorFlowButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${serviceDetails?.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRowIds([])" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.buttons.close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showClientSecret ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showClientSecret ? \"showClientSecretButton\" : \"hideClientSecretButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowClientSecret(!showClientSecret)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslKeyStorePassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslKeyStorePassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslKeyStorePassword(!showSslKeyStorePassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t? connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t: en.connectors.buttons.integrationHub.hrefLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/ToastAction.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "intg-toast-action" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRedirect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(action.title)}`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "href", + "type": "variable", + "value": "href" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "editButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createconnector" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "save" + }, + { + "name": "dataQa", + "type": "string", + "value": "save" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleDownloadLog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createAgent" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/SolaceToast.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDismiss()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant ?? \"text\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + }, + { + "name": "href", + "type": "expression", + "value": "action.href ? action.href : undefined" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, helpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "help-no-access" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, secondaryHelpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "secondary-help-no-access" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Configure-Message-Spools.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_deleteprotection" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_service_deletion_protection.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_migration" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_dist_tracing" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-dt-for-cloud.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewPassword" + }, + { + "name": "title", + "type": "expression", + "value": "showPassword ? t({ id: \"id_hide_password\", message: \"Hide password\" }) : t({ id: \"id_view_password\", message: \"View password\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_copy\", message: \"Copy\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/mesh-manager/${eventMesh.id}`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_event_mesh" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-scaleup-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewScaleUpLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "type", + "type": "string", + "value": "button" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ggs_tryme.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTryMe" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenTryMe" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectLibrary(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLibraryDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelection(item)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "open-ticket" + }, + { + "name": "href", + "type": "expression", + "value": "buildSupportURL(isSAP, service.errorId, service.id)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/distributed-tracing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUpgradeDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/upgrade-event-broker.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "onOpen" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-upgrade-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewUpgradeLogs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tutorial.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "dw.url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.tutorial" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tconst fileInput = fileInputRef?.current;\n\t\t\t\t\t\tif (fileInput) {\n\t\t\t\t\t\t\tif (fileInput.value) {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tfileInput.value = \"\";\n\t\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t\t// that's fine\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfileInput.click();\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleCancel(idx)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSave(idx)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddGroup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowCreateHostname" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-hostname" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-hostnames.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDisable" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_semp_request" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateEndpoint" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-endpoint" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggle" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasERPLimit || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_erp_event_addon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/erp-add-on.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_mate_link_encryption" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || mateLinkEncryption.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !canEnable" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableLdapManagement" + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-ldap-management" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAccessShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-access" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerClientProfiles" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !curClusterName" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowClusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-cluster-name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/edit-cluster-name.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || isDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMessageSpoolSize" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-message-spool-size" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "distributedTracingStatus == \"error\" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-disable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-enable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerTelemetryProfiles" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCheckConnectionStatus" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isConfigured || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleConfigureDataCollection" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-deploy" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding-create" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || syslogs.length >= 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "usernames.length === 0 || !allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowRotatePasswords" + }, + { + "name": "dataQa", + "type": "string", + "value": "rotate_passwords" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnable" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoring-enable" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !!configuringMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-open-broker-manager" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-client-auth" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowAuthentication" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableStandardDomainCertAuth" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddClientCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-client-cert-auth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddDomainCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-domain-cert-auth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-create" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(path)) || \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\ttrack(TRACK_ELEMENT_CLICK, { \"element-id\": dataQa });\n\t\t\t\t\t\t\topenWindow(getBrokerWebUI(path), serviceId);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "truststoreUri ?? \"https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "open-broker-manager" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI()) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "openBrokerManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_service" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateService" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_user_access" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRetry" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "service.name" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: \"status\" }))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createService" + }, + { + "name": "dataQa", + "type": "string", + "value": "createService" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createServiceDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "cloning-documentation" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/cloud-clone-service.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCustomize" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "reset" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetPort" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_services" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_pick_service_type.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_cloud" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/choose-cloud-provider.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_regions" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_regions.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!ssoBrokerEnabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageBrokerButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleViewSettingMapping" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGotoUserGroups" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "hyperLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "aupIsLoading" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAgree" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "id", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/event-management-agents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=environment" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-enabled`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thistory.push(`/ep/runtime/templates`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentTypeInfo\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentsInfo\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "buttonEventManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/templates" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "createEnvButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCreateEnvClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfChangesDone()" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfSaveDisabled()" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveProfileButton" + }, + { + "name": "id", + "type": "string", + "value": "saveButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApplyButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave" + }, + { + "name": "onClick", + "type": "function", + "value": "() => saveNotifyPreferences()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLess" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGroupMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "ugCount <= 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"searchIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "id", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => editSSOConfiguration()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasLoginSubdomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setHideSecretKey((state) => !state)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[hideSecretKey ? \"showKey\" : \"hideKey\"]" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => updateSsoConfiguration({ state: \"enabled\" })" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "id", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!haveStagedChangesToSave" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "testSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "testSsoConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleSsoSetup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "setupSsoButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "setUpSsoButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.accountSettings.learnMoreSSODoc" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadAuditLogs" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadAuditLogsJsonLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRow(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "logDetailsCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"setup-idp-link\", \"link\")" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGroupClaimHelpLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!claimId" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canDiscardChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave || !(canDiscardChanges || !isEnabled)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveChangesButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelAddMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelAddClaimMapping" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!groupMappingState ||\n\t\t\t\t\t\tselectedUserGroups.length < 1 ||\n\t\t\t\t\t\t!claimValuesMapping ||\n\t\t\t\t\t\tclaimValueError ||\n\t\t\t\t\t\tclaimValuesMapping.trim().length < 1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addGroupMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "claimMappingToEdit !== -1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelClaimMappingEditHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => saveMappingDetails(rowData.id)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormCancel" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormSubmit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSaveButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceCloudStatus\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/users`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestLimitChangeDialogOpen(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/support/question`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "en.overview.eventPortalSection.objectCountHelpLink" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/service-limits`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestUpgradeDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAdvancedSettingsHidden((x) => !x)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deleteAccountButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsDeleteAccountDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sendEmailButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!email.isValid" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateToLogin" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-notifications\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "stopNotification" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || mutating" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenConfirmationDialog(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscardChanges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "NotificationIsActive ? \"updateNotifications\" : \"activateNotifications\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSubmission" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-email-integrations\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com/contact/" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.contactSupport" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"supportPage\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventPortalCloudEma\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "always" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tokenManagementHelpLink\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCreateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasMaxNumberOfTokens" + }, + { + "name": "dataQa", + "type": "string", + "value": "createApiTokenButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyToken" + }, + { + "name": "dataQa", + "type": "string", + "value": "copyTokenButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceOpenAPIV2\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "mode === \"create\" ? \"text\" : \"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createTokenIsLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTokenBtn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onRegenerateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "regenerateTokenButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/user-settings/notify-settings`)" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationSettingsButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.settings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refreshNotificationSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refetchNotifications()" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "markAllNotificationsReadButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => markAllRead()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${header.key}-copy`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => navigator.clipboard.writeText(header.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "update" + }, + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-update`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUpdate(item)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "`/services/${item.serviceId}`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tracingDestinationLink\", \"link\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingProfile.infoMessage.link.href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "viewServicesButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSynchTracingDialog(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingLimits.infoMessage.link.href" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "tracingDestinationCreationIsDisabled ? \"text\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "tracingDestinationCreationIsDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTracingDialog({ mode: Mode.Create, isOpen: true })" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTracingProfile" + } + ] + } + ] + }, + { + "component": "SolaceEnvironmentLabel", + "count": 17, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "standard" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[environment]" + }, + { + "name": "...", + "type": "spread", + "value": "environmentOption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "title" + }, + { + "name": "label", + "type": "expression", + "value": "environment.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[environment.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "env.name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "env.fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "env.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + } + ] + }, + { + "component": "SolaceTypography", + "count": 667, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "color", + "type": "expression", + "value": "bulkMoveLimitExceeded ? \"error\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "marginTop", + "type": "number", + "value": "0.5" + }, + { + "name": "marginBottom", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingBottom", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mb", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "sx", + "type": "expression", + "value": "fromGraphView ? { color: \"text.secondary\" } : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "messageDetailsAddEvents" + }, + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginBottom: 1, color: ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabel\"" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "expression", + "value": "selected && 500" + }, + { + "name": "pl", + "type": "expression", + "value": "imageComponent ? 2 : 5.25" + }, + { + "name": "pr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.brand.w30 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "width", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: invertTextColor }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "showGraphic ? 500 : \"100%\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: invertTextColor }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "fontSize", + "type": "expression", + "value": "`24px`" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionPopup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionPopup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "style", + "type": "object", + "value": "{ marginBottom: \"16px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`filtername-${index}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-template`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"warning\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ ml: 1 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_fieldName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_propertyType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "config.key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"apiErrorResponse\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorPrefix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"errorMessages\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorSuffix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[500] }" + }, + { + "name": "id", + "type": "string", + "value": "conn_flow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connector_marketing_description" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "mr", + "type": "number", + "value": "4" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_help" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "expression", + "value": "\"6px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "textVariant ? textVariant : \"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "ml", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\t\t\tWebkitLineClamp: \"3\",\n\t\t\t\t\t\t\t\tWebkitBoxOrient: \"vertical\"\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "mr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ width: \"90%\", wordWrap: \"break-word\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "variant ?? \"body1\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\thistory.push({\n\t\t\t\t\t\t\t\t\tpathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`\n\t\t\t\t\t\t\t\t})" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "component", + "type": "string", + "value": "div" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "ml", + "type": "string", + "value": "-0.5rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "pt", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "marginTop", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "role" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"16px\", fontWeight: \"500\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + }, + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ alignContent: \"center\" }" + }, + { + "name": "fontSize", + "type": "number", + "value": "24" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3.3" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "string", + "value": "1rem" + }, + { + "name": "sx", + "type": "object", + "value": "{ opacity: 0.8 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "securitySettingsWarning" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "subTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ whiteSpace: \"initial\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"bolder\", color: \"inherit\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "item" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "0.5" + }, + { + "name": "mb", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.33rem\", marginBottom: \".3rem\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + }, + { + "name": "data-qa", + "type": "string", + "value": "supportModalSuccessMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"contents\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "className", + "type": "string", + "value": "message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "desc" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "variable", + "value": "index" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "capitalize" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noProblemText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.text.secondary }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + } + ] + }, + { + "component": "SolaceConfirmationDialog", + "count": 192, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "confirmationObj.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.cancelLabel,\n\t\t\t\t\t\tdataQa: \"returnToForm\",\n\t\t\t\t\t\tonClick: () => closeModal(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.okLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"leaveAndDiscard\",\n\t\t\t\t\t\tonClick: () => closeModal(true)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Modeled Event Mesh" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Add Existing Event Broker" + }, + { + "name": "isOpen", + "type": "expression", + "value": "open && !openMessagingServiceDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleAddExistingMessagingService();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress || !!submitError?.message\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "addInProgress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "generateTitleDialog(mode)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "title || \"Event Broker Connection Details\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.deployToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.move(\n\t\t\t\tselectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)\n\t\t\t)" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: onClose },\n\t\t\t\t{ label: en.common.button.move, variant: \"call-to-action\", onClick: handleSubmit, isDisabled: moveDisabled }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "startMove.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: onClose }]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messages.credentials.saveCredentialsAndContinue,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: onSave,\n\t\t\t\t\t\t\tdataQa: \"saveCredentialsAndContinue\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !isValid\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: () => onClose(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.action,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleOnClick,\n\t\t\t\t\tdataQa: \"updateEntityInEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "submitting || isDeploymentPreviewLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tDetected Event Flow Mismatches\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tEdit Application\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(cancel)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.addEventApiProduct" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Add to Environment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleCloseWithErrors }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "applicationVersionId" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "getTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "string", + "value": "KafkaSampleSuccessDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.selectDialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.select,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tisDisabled: !value,\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "showProgressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tsetIsDialogOpen(false);\n\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Custom Attributes" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"customAttributes-cancel\", onClick: () => setIsDialogOpen(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tdataQa: \"customAttributes-save\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: disabled || isSaving === true,\n\t\t\t\t\tonClick: () => handleSave()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isSaving" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "versionStateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Manage Lifecycle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tonClick: handleLifecycleChanges,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isSaveDisabled()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "changeEntityVersionStateHook?.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCancel },\n\t\t\t\t{ label: resetButtonLabel, variant: \"outline\", onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "confirmExitDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Close ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Return To Form\", variant: \"outline\", onClick: handleCancel }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteVersionDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel} Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCancel },\n\t\t\t\t{ label: !isLastVersion || keepParent ? \"Delete Version\" : `Delete Version & ${entityTypeLabel}`, variant: \"outline\", onClick: handleDelete }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Duplicate Application Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ dataQa: \"save\", label: \"Save\", variant: \"call-to-action\", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "duplicateEntityVersion.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Warning\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Return to Form\", onClick: onClose },\n\t\t\t\t{ label: \"Reload\", variant: \"outline\", onClick: handleReload }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Configure Variable" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: refreshGraphRequiredOnClosingErrorDialog ? \"Close & Refresh Graph\" : \"Close\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Publish Graph Layout\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "layoutConflictDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: `Return to ${entityLabel}`, onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Publish Layout\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: graphUpdating,\n\t\t\t\t\tonClick: handleContinuePublishLayout,\n\t\t\t\t\tdataQa: \"continuePublishLayout\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Changes Partially Published\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "partialPublishDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ label: \"Refresh\", variant: \"outline\", onClick: handleRefreshGraph, id: \"refreshGraph\", dataQa: \"refreshGraph\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? defaultTilte" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Remove\", dataQa: \"removeAssociation\", variant: \"outline\", onClick: () => onRemove(idToRemove) }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "\"fail-download-async-api\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, variant: \"outline\" as const, onClick: action(\"onClose\") }]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "false" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "unableToDeleteDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Unable to Delete" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseUnableToDeleteDialog },\n\t\t\t\t\t{ label: \"Open Modeled Event Mesh\", variant: \"outline\", onClick: handleOpenModeledEventMesh }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Skip and Install" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Skip\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleSkip\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Connection File Created" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose, dataQa: \"connectionFileDialogCloseButton\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Setting Up Offline Event Management Agent" + }, + { + "name": "isOpen", + "type": "variable", + "value": "standaloneDialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleStandaloneClose, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Management Agent Set Up Complete" + }, + { + "name": "isOpen", + "type": "variable", + "value": "emaSetupCompleteDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tonClick: handleEmaSetupCompleteDialogClose,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Go to Modeled Event Meshes\",\n\t\t\t\t\t\t\tonClick: handleGotoMEM,\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${runtimeAgentName}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Management Agent Connection" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: deleteEventManagementAgent.isLoading,\n\t\t\t\t\t\t\tonClick: handleDelete\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Custom Discovery Scan" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Run Discovery Scan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isRunDiscoveryScanButtonDisabled,\n\t\t\t\t\tonClick: initiateCustomScan\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Data Collection\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Data Collection" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteScan.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Run Discovery Scan" + }, + { + "name": "actions", + "type": "expression", + "value": "renderDialogActionButtons(messagingServicesForDataCollection)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "eventManagementAgentNeedsUpdateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Event Management Agent Needs Update" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseEMAUpdateDialog },\n\t\t\t\t\t\t{ label: \"Open Event Management Agent\", variant: \"outline\", onClick: handleGoToEMA }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Data Collection Logs\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add Environment Association\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(\n\t\t\t\tisLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,\n\t\t\t\tcancel,\n\t\t\t\tupdate\n\t\t\t)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "isAddMode ? (\n\t\t\t\t\t
\n\t\t\t\t\t\t setIsAddMode(false)}>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tAdd Environment Association\n\t\t\t\t\t
\n\t\t\t\t) : (\n\t\t\t\t\t<>{showViewOnly ? \"View Environment Associations\" : \"Manage Environment Associations\"}\n\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "showViewOnly\n\t\t\t\t\t? [{ label: \"Close\", variant: \"call-to-action\", onClick: handleClose }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleClose },\n\t\t\t\t\t\t\t{ label: isAddMode ? \"Add\" : \"Save\", variant: \"call-to-action\", onClick: handleClick }\n\t\t\t\t\t ]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeCompareDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? \"Configuration\" : \"Runtime Configuration\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeDetailsDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"closeConfirmDialog\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"applyConfirmDialog\",\n\t\t\t\t\tonClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),\n\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Import Progress" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tdataQa: \"auditImport-close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => setAuditImportProgressDialogOpen(false)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "!!isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"cancelAuditButton\" },\n\t\t\t\t{ label: \"Import\", variant: \"call-to-action\", isDisabled: auditInError, onClick: handleImport, dataQa: \"importAuditButton\" }\n\t\t\t]" + }, + { + "name": "customAction", + "type": "variable", + "value": "customAction" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "renderHeader()" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "application.configuration.setDefaultTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: application.configuration.setDefaultTemplate,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetObservedConfiguration({\n\t\t\t\t\t\t\t\t\tname: configurationName,\n\t\t\t\t\t\t\t\t\tvalue: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "defaultTemplateConfirmationDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: () => onClose() },\n\t\t\t\t{ label: en.common.button.delete, dataQa: \"deleteTemplate\", variant: \"outline\", onClick: handleDeleteTemplate }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"learningCenterErrorDialog\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "contentText", + "type": "variable", + "value": "description" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setApiError(null) }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.template) {\n\t\t\t\t\t\t\t\t\tupdateUserConfigValues({}, true);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.addRequestHeader" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\tonClick: () => handleClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tdataQa: \"add-request-header-submit\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tlabel: en.application.configuration.restDeliveryPoint.addRequestHeader,\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleAddRequestHeader();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\tmodeSelectionToConfirm === Mode.custom\n\t\t\t\t\t\t\t\t\t? messagesConfiguration.solaceClientProfileName.customize\n\t\t\t\t\t\t\t\t\t: messagesConfiguration.selectTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.custom) {\n\t\t\t\t\t\t\t\t\tsetValue(FormCustomizedClientProfileName, observedConfiguration ?? \"\");\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\treset(modeSelectionToConfirm === Mode.template);\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Application Domain\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Application Domain`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t\t\t{ dataQa: \"delete\", label: \"Delete\", variant: \"outline\", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deleteApplicationDomain.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Application Domain Export Preview" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"domainExport-cancel\", onClick: () => onCancel() },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Export\",\n\t\t\t\t\tdataQa: \"domainExport-confirm\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: !!errorMsg,\n\t\t\t\t\tonClick: () => onExport()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "customAttributeValidations?.title" + }, + { + "name": "isOpen", + "type": "expression", + "value": "!!customAttributeValidations" + }, + { + "name": "actions", + "type": "expression", + "value": "customAttributeValidations?.actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetErrorMsg(\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "appDomainCount === 1 ? \"Importing Application Domain\" : \"Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "\"The import may take several minutes.\"" + }, + { + "name": "actions", + "type": "null", + "value": "null" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Kafka Settings\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Save\", variant: \"outline\", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Select Shared Events" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "showErrorDialog" + }, + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${collisionErrors ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: en.common.button.cancel, onClick: () => setOpen(false) },\n\t\t\t\t\t\t{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "updatePublishState.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetOpen(false);\n\t\t\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "userNotFoundDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "User No Longer Exist" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: \"Close & Clear Filters\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\t\t\tonClick: handleCloseAndClearFilters\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Revoke Event Access\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Revoke Event Access" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Revoke Access\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: declineEventAccessRequest.isLoading\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Review Event Access Request\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Review Event Access Request" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Send Review\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: sendReviewButtonDisabled,\n\t\t\t\t\t\t\tdataQa: \"sendReviewButton\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Subscription`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteSubscriptionButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(consumerId, index), dataQa: \"deleteSubscriptionButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Consumer`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteConsumerButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: handleDelete, dataQa: \"deleteConsumerButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title || \"Error\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "failedTopicDomains?.length > 0\n\t\t\t\t\t? [{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn },\n\t\t\t\t\t\t\t{ label: \"Use Duplicates\", variant: \"outline\", onClick: onContinue }\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ dataQa: \"topicAddressResourcesCancel\", label: \"Cancel\", variant: \"outline\", onClick: onReset },\n\t\t\t\t{ dataQa: \"topicAddressResourcesDone\", label: ctaLabel, variant: \"call-to-action\", onClick: onDone }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "\"Topic Address Required\"" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!error" + }, + { + "name": "title", + "type": "expression", + "value": "\"Error Sending Requests\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "error ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.removeCredentials" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.remove,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {\n\t\t\t\t\t\t\t\t\t\trefreshApplicationDeploymentPreviews.refresh();\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\thandleBackendError(messages.credentials.removeCredentialsErrorTitle, error);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// close the dialog\n\t\t\t\t\t\t\t\tsetRemoveCredentialsData(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "isEditing\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: () => setOpen(false), dataQa: \"credentialsCancel\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: common.button.save,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tonClick: () => onSave(),\n\t\t\t\t\t\t\t\tisDisabled: isLoading || !isValid || !!error,\n\t\t\t\t\t\t\t\tdataQa: \"credentialsSave\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [{ label: common.button.close, variant: \"call-to-action\", onClick: () => setOpen(false), dataQa: \"credentialsClose\" }]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isLoading" + }, + { + "name": "title", + "type": "expression", + "value": "getInProgressTitle(activeStep)" + }, + { + "name": "actions", + "type": "array", + "value": "[]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "errorMessage !== \"\"" + }, + { + "name": "title", + "type": "string", + "value": "Encountered Error while Creating Assets" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "genAiErrorMessage !== \"\"" + }, + { + "name": "title", + "type": "expression", + "value": "`Encountered Error while ${getInProgressTitle(activeStep)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"call-to-action\", onClick: () => setGenAiErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isMoreInformationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "More Information Required" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setIsMoreInformationDialogOpen(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "activeStepToConfirm !== -1" + }, + { + "name": "title", + "type": "string", + "value": "Progress Reset Warning" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setActiveStepToConfirm(-1)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Continue\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => handleSetActiveStep(activeStepToConfirm)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Disclaimer\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setIsDialogOpen(false) }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" }]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: en.connectors.buttons.apply,\n\t\t\t\t\t\t\t\tonClick: onApplyTransformation,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"applyTransformationButton\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.importPayloads(direction)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "uploadDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"close-upload-dialog\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\tsetUploadDialog(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.import,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"upload-file\",\n\t\t\t\t\t\tonClick: handleUploadFile\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "fieldType === FieldType.constant\n\t\t\t\t\t\t\t? en.connectors.labels.deleteConstantField\n\t\t\t\t\t\t\t: en.connectors.labels.deleteHeaderField" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.labels.deleteHeaderFieldContext" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showDeleteDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetIdToDelete(\"\");\n\t\t\t\t\t\t\t\tsetShowDeleteDialog(false);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\t\t\tonClick: () => handleDeleteButtonClick(),\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"deleteEdgeDialog-cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\tdataQa: \"deleteEdgeDialog-delete\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: removeRelation\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.transformations.labels.deleteMapping" + }, + { + "name": "contentText", + "type": "expression", + "value": "!isEmpty(affectedTransformations) && affectedTransformations.length > 1\n\t\t\t\t\t? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)\n\t\t\t\t\t: en.transformations.labels.deleteDialogText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.errorDeploymentTitle" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: connectors.buttons.close,\n\t\t\t\t\t\tdataQa: \"connectordeployerror-close\",\n\t\t\t\t\t\tonClick: () => setDeployErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"connectorStateChange-cancel\", onClick: () => setShowDeployDialog(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: action === \"deploy\" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,\n\t\t\t\t\tdataQa: \"connectorStateChange-deploy\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleStateChange\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "action === \"deploy\" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.deleteDialogTitle" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.deleteConfirmationMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.connectors.buttons.close, onClick: onClose },\n\t\t\t\t{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: \"outline\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.connectors.labels.mapWithAI}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiDialogClose(false),\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.map,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"confirm-ai-mapping\",\n\t\t\t\t\t\tonClick: handleAiMapping,\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"An error occurred\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Open Support Ticket\",\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.errorAiMap" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.close,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-error-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit ? t({ id: \"id_dlg_edit_msg_spool_title\", message: \"Edit Message Spool Size\" }) : t({ id: \"id_dlg_customize_msg_spool_title\", message: \"Customize Message Spool Size\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"customizeMessageSpoolCancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_apply\", message: \"Apply\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: isEdit ? \"customizeMessageSpoolSave\" : \"customizeMessageSpoolApply\",\n\t\t\t\t\tisDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: t({ id: \"id_ok\", message: \"OK\" }),\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "count ? t({ id: \"id_dlg_delete_services_title\", message: \"Delete Services\" }) : t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: count ? t({ id: \"id_delete_services\", message: \"Delete Services\" }) : t({ id: \"id_delete_service\", message: \"Delete Service\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"delete-service-ok\",\n\t\t\t\t\tisDisabled: matchText.trim() !== matchName,\n\t\t\t\t\tonClick: onDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rename_service_title\", message: \"Edit Service Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rename-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rename-service-ok\",\n\t\t\t\t\tisDisabled: hasErrors,\n\t\t\t\t\tonClick: handleRename\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_clone_service_title\", message: \"Clone Service: Pre-Check\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "expression", + "value": "isReady && (results.errors.length > 0 || results.warnings.length > 0)\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-cancel\",\n\t\t\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_continue\", message: \"Continue\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-continue\",\n\t\t\t\t\t\t\t\tisDisabled: results.errors.length > 0,\n\t\t\t\t\t\t\t\tonClick: onContinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: []" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_error_title\", message: \"An error occurred\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_open_support_ticket\", message: \"Open Support Ticket\" }),\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_auto_upgrade_plan_title\", message: \"Plan Upgrade\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose },\n\t\t\t\t{ label: \"Run Upgrade\", onClick: handleUpgrade, variant: \"call-to-action\", isDisabled: !!formError || upgradeMutation.isLoading }\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ variant: \"outline\", label: \"Close\", onClick: () => onClose() }]" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "id ? t({ id: \"id_dlg_client_profile_edit_title\", message: \"Edit Client Profile\" }) : t({ id: \"id_dlg_client_profile_create_title\", message: \"Create Client Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: id ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: id ? \"client-profile-save\" : \"client-profile-create\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "addMode\n\t\t\t\t\t? t({ id: \"id_dlg_client_cert_auth_title\", message: \"Add Client Certificate Authority\" })\n\t\t\t\t\t: t({ id: \"id_dlg_client_cert_auth_edit_title\", message: \"Edit Client Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => onClose()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit\n\t\t\t\t\t? t({ id: \"id_dlg_edit_syslog_config_title\", message: \"Edit Syslog Forwarding Destination\" })\n\t\t\t\t\t: t({ id: \"id_dlg_create_syslog_config_title\", message: \"Create Syslog Forwarding Destination\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "create ? t({ id: \"id_dlg_create_endpoint_title\", message: \"Create Endpoint\" }) : t({ id: \"id_dlg_edit_endpoint_title\", message: \"Edit Endpoint\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_create_hostname_title\", message: \"Create Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"create-hostname-save\",\n\t\t\t\t\tisDisabled: isLoadingCertificates || saveDisabled,\n\t\t\t\t\tonClick: handleCreate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"library-close\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_client_auth_title\", message: \"Edit Client Authentication\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_edit_cluster_name_title\", message: \"Edit Cluster Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Distributed Tracing\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-confirm\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_move_hostname_title\", message: \"Move Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-hostname-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleMove\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Configure Data Collection\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_dt_confirmDeploy\", message: \"Confirm and Deploy\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-confirm\",\n\t\t\t\t\tonClick: handleConfirmDeploy,\n\t\t\t\t\tisDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rotate_passwords_title\", message: \"Rotate Broker Passwords\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_rotate\", message: \"Rotate\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-rotate\",\n\t\t\t\t\tonClick: handleRotate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_hostname_title\", message: \"Delete Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"delete-hostname-confirm\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_mgmt_access_title\", message: \"Set LDAP Group Access\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_mate_link_encryption_title\", message: \"Mate-Link Encryption\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-disable\",\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_profile_title\", message: \"Edit LDAP Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_domain_cert_auth_title\", message: \"Add Domain Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_endpoint\", message: \"Delete Endpoint\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"delete-endpoint-cancel\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"delete-endpoint-confirmed\", onClick: handleDeleteEndpoint }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_syslog_config\", message: \"Deactivate Syslog Forwarding\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_syslog_config\", message: \"Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server.\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"syslog-config-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_deactivate\", message: \"Deactivate\" }), variant: \"outline\", dataQa: \"syslog-config-delete\", onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_disable_standard_domain_cert_auth\", message: \"Disable Standard Domain Certificate Authorities\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_disable_standard_domain_cert_auth_desc\",\n\t\t\t\t\t\t\tmessage: \"This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates.\"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelConfirmDisable },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_disable\", message: \"Disable\" }), variant: \"call-to-action\", onClick: handleConfirmDisable }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_cert_auth\", message: \"Delete Certificate Authority\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_prompt_delete_cert_auth\",\n\t\t\t\t\t\t\tmessage: \"Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? \"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", isDisabled: !allowServiceQueries, onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_client_profile\", message: \"Delete Client Profile\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_client_profile\", message: \"Are you sure you want to permanently delete this client profile?\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"client-profile-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"client-profile-delete\", onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.brokerSSOConfig.dialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: \"outline\" }\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.viewMessageSpoolDetails.buttons.close,\n\t\t\t\t\tonClick: onClose,\n\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Change Request - ${editLimitsRow.name}`" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => setEditLimitsRow(null),\n\t\t\t\t\t\t\tisDisabled: submittingTicket\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.serviceLimits.buttons.sendRequest,\n\t\t\t\t\t\t\tonClick: onSubmit,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: !confirmDelete || isDeleting\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\"\n\t\t\t\t\t? en.environments.labels.createEnvironment\n\t\t\t\t\t: en.environments.labels.editEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? en.environments.button.create : en.common.buttons.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled:\n\t\t\t\t\t\tisDuplicate || isLoading || hasError || hasDescError || (dialogState.type === \"create\" ? false : !isEdited)\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.labels.ASEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isUpdating" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleCloseDialog\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.save,\n\t\t\t\t\tid: \"deleteButton\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdateEnvironment,\n\t\t\t\t\tisDisabled: isError || isUpdating\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"cancelConfigurationTemplatesDialog\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tdataQa: \"applyConfigurationTemplatesDialog\",\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? userGroups.ugDialog.create : userGroups.ugDialog.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,\n\t\t\t\t\tdataQa: \"ugDialogSaveQa\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroups.ugDeleteDialog.deleteUG" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.cancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: isError || isDeleting,\n\t\t\t\t\tdataQa: \"ugDialogDeleteQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.enableSsoConfig" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelEnableSso\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.activate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: enableSsoConfiguration\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.configureSsoSettings" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelConfigureSettings\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.save,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: saveStagedSsoConfiguration,\n\t\t\t\t\t\tisDisabled: !canSaveSettings\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[cannotTestSso ? \"testSsoConfigError\" : \"testSsoConfig\"]" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[cannotTestSso ? \"close\" : \"cancel\"],\n\t\t\t\t\t\tonClick: cancelSsoTest\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.test,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: testSsoConfiguration,\n\t\t\t\t\t\tisDisabled: cannotTestSso\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.setUpSso" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.cancel,\n\t\t\t\t\t\tonClick: cancelSsoSetup\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.sendRequest,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: sendSsoSetupRequest,\n\t\t\t\t\t\tisDisabled: !canSendRequest || submittingTicket,\n\t\t\t\t\t\tdataQa: \"sendRequestButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: cancelButtonLabel || userGroupManagement.cancel,\n\t\t\t\t\tonClick: cancelHandler,\n\t\t\t\t\tdataQa: \"cancelNotificationHandlerQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionButtonLabel,\n\t\t\t\t\tid: \"notificationModalActionButton\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: actionHandler,\n\t\t\t\t\tdataQa: \"notificationModalActionButton\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroupManagement.removeClaimMapping" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.cancel,\n\t\t\t\t\tonClick: () => setIsClaimMappingRemoveDialogOpen(false),\n\t\t\t\t\tdataQa: \"cancelClaimMappingQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.remove,\n\t\t\t\t\tid: \"deleteClaimMappingId\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: deleteClaimMapping,\n\t\t\t\t\tdataQa: \"deleteClaimMappingQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "confirmDialogOpen || errorDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: supportPage.dialog.close,\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tdataQa: \"supportTicketModelOKButton\",\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestLimitChangeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestLimitChangeDialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.close,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeCloseAction\",\n\t\t\t\t\t\t\tonClick: onCloseRequestLimitChange\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.sendRequest,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeSendRequestAction\",\n\t\t\t\t\t\t\tonClick: onRequestLimitChange,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: !limitRequestNumber\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestUpgradeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.dialogTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.cancel,\n\t\t\t\t\t\tdataQa: \"requestUpgradeCloseAction\",\n\t\t\t\t\t\tonClick: onCloseRequestUpgradeDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.sendRequest,\n\t\t\t\t\t\tdataQa: \"requestUpgradeSendRequestAction\",\n\t\t\t\t\t\tonClick: RequestUpgradeHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\t(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||\n\t\t\t\t\t\t\t(!!contactEmail && !isValidEmail(contactEmail))\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDeleteAccountDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.deleteAccountQuestion" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.cancel,\n\t\t\t\t\t\tdataQa: \"cancelDeleteAccountButton\",\n\t\t\t\t\t\tonClick: onCloseDeleteAccountDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.delete,\n\t\t\t\t\t\tdataQa: \"confirmDeleteAccountButton\",\n\t\t\t\t\t\tonClick: deleteAccountHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled: !password\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Deactivate Service Notifications" + }, + { + "name": "contentText", + "type": "string", + "value": "Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed." + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", dataQa: \"cancel\", onClick: () => setOpenConfirmationDialog(false), variant: \"text\" },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Deactivate\",\n\t\t\t\t\t\tdataQa: \"deactivate\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tstopNotifications();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environments.moveDialogLabels.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"move-datacenter-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.move,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-datacenter-ok\",\n\t\t\t\t\tonClick: handleMove,\n\t\t\t\t\tisDisabled: !!errors.environment\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "downloadDialog.errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.downloadFailed" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"OK\", onClick: handleCloseDialog }]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "contentText", + "type": "variable", + "value": "undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.new" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: onClose\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.privateRegions.button.sendRequest,\n\t\t\t\t\t\tonClick: onRequest,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tisDisabled: loading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.copyToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\t\tvariant: isCopied ? \"outline\" : \"call-to-action\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tisDisabled: !isCopied,\n\t\t\t\t\t\tdataQa: \"closeTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.genericError.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.regenerateToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Regenerate\",\n\t\t\t\t\t\tonClick: handleRegenerate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmRegenerateTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.deleteToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmDeleteTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingProfile.title.details" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: tracingProfile.button.close,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingSynchDialog.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingSynchDialog.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: close\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingProfile.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "modifyingTracingProfile" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + } + ] + }, + { + "component": "SolaceTable", + "count": 31, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "renderCustomRowActionItem", + "type": "expression", + "value": "renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "selectionType ?? SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event-flow-discrepancy-preview-table" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItems" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"metricsDashboardTable\"" + }, + { + "name": "rows", + "type": "expression", + "value": "handleProcessEntities(entities)" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "rowActionMenuItems", + "type": "null", + "value": "null" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\treturn renderRowCells(row);\n\t\t\t}" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "!entities || entities.length === 0" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "id", + "type": "string", + "value": "remTable" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRow" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "actions" + }, + { + "name": "rows", + "type": "variable", + "value": "remEntities" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[selectedMem?.id]" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx", + "props": [ + { + "name": "loading", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderCustomEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "customContentDefinitions", + "type": "variable", + "value": "customContentDefinitions" + }, + { + "name": "displayedCustomContent", + "type": "variable", + "value": "displayedCustomContent" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "variable", + "value": "customContentDisplayChangeCallback" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "customMenuActions" + }, + { + "name": "crossPageRowSelectionSupported", + "type": "expression", + "value": "auditEntityType === null ? false : true" + }, + { + "name": "totalObjectCount", + "type": "variable", + "value": "entityCount" + }, + { + "name": "deselectedRowIds", + "type": "variable", + "value": "deselectedRowIds" + }, + { + "name": "allPagesSelectedByDefault", + "type": "variable", + "value": "allPagesSelectedByDefault" + }, + { + "name": "crossPageSelectionChangedCallback", + "type": "variable", + "value": "handleCrossPageRowSelectionsChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "expression", + "value": "getFilteredRows()" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "expression", + "value": "TEMPLATE_TYPES[type].tableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "messages[type].emptyTableMessage" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "existingSharedEventIds" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: false,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\treturn renderRowCells(row, columnsHiddenInfo);\n\t\t\t\t\t}" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.eventApi.labels.emptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\trenderChildren: renderExpandedRowContent,\n\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\tsetExpandedRowIds: setExpandedRowIds,\n\t\t\t\t\t\tselectRowWhenClickOnChildren: false\n\t\t\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventAccessRequestTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableDataAvailable && !loading" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "expression", + "value": "highlightedRow?.id" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: false,\n\t\t\t\t\t\trenderChildren: (row) => renderExpandedRowContent(row),\n\t\t\t\t\t\texpandedRowIds: [],\n\t\t\t\t\t\tsetExpandedRowIds: () => {\n\t\t\t\t\t\t\tvoid 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentSchemasTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching schemas have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentApplicationsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching applications have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allConnectors" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === connectorSort.split(\":\")[0])" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "id", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allAgents" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetAgentSort(`sort=${column?.field}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === agentSort)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "expression", + "value": "connectorErrorLogs ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "function (): void {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "logsFetching" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "userManagementColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableRows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "rows", + "type": "expression", + "value": "showEmptyState ? [] : tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(columm) => handleSort(columm, drawdownData)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsTableQA" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "resultsPerPageActions" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelectionsChange" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "variable", + "value": "auditLogsRows" + }, + { + "name": "columns", + "type": "variable", + "value": "AuditLogsTableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "emptyState" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.auditLogs.loadingMessage" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "maxHeight", + "type": "string", + "value": "40rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortClaimValuesDirection" + }, + { + "name": "rows", + "type": "expression", + "value": "groupMappingState ? [addMappingRow, ...tableRows] : tableRows" + }, + { + "name": "columns", + "type": "expression", + "value": "columns(groupMappingState)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "rows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "notificationsTable" + }, + { + "name": "loading", + "type": "expression", + "value": "isLoading || isFetchingNotifications || deletingNotification" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.notifications[deletingNotification ? \"deletingNotifications\" : \"fetchingNotifications\"]" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.notifications.emptyStateMessage(showUnreadNotifications)" + }, + { + "name": "columns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "displayedCustomContent", + "type": "array", + "value": "[]" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "getRowActionMenuItem" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\t\t\trenderChildren: (data) => {\n\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tsetExpandedRowIds: expandRowHandler\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "notifications ?? []" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "distributedTracingLimits ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "limitColumn" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingLimits.emptyStateMessage}" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "tracingProfiles ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingProfile.emptyStateMessage}" + } + ] + } + ] + }, + { + "component": "SolaceCard", + "count": 56, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "What is an Event Management Agent?" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoBlurb" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "

{brandableTextValueConverter(\"Environments in PubSub+ Cloud\", \"string\")}

" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissEducationalCard" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "Want to subscribe to specific values?" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowInfoBlurb(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addSubscriptionInfoBlurb" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "getCardTitle(selectedAudit.auditEntityType)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissReuseIndexInfoCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowRDPInfo(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointInformation" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Upload From JSON File\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseEnumVauesHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumValuesHelp\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\n\t\t\t\t\tReferenced Schema Names Require Manual Updates\n\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? \"Conflicting Topic Address\" : \"Conflicting Objects\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "attractedEventsNoResults" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Defining Topic Domains" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResources" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Tips and Tricks for Topic Addresses\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noBrokers" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noMatchingBrokers" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.projectDefinition.help" + }, + { + "name": "dataQa", + "type": "string", + "value": "projectDefinitionHelp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setTranformationBlurbDismissedAtom(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "popover ? \"popoverInfo\" : \"infoCard\"" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!popover" + }, + { + "name": "onClose", + "type": "function", + "value": "() => (popover ? undefined : onClose && onClose)" + }, + { + "name": "title", + "type": "string", + "value": "Setting Values for Target Headers" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "popover ? \"inherit\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseDisplayMessage()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetShowEducationBlurb(false);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setNeedHelp(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Release Notes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "#ffffff" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerSSOCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.messages.firstOpenBottomInfoTitle" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardBottom" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBottomMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.messages.title" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.primary.contrastText" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tMessage Service Alerts & Notification\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Logs Retention" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + }, + { + "name": "dataQa", + "type": "string", + "value": "logsRetentionCard" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Who Can Receive Notifications?" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationAd" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + } + ] + }, + { + "component": "SolaceTooltip", + "count": 298, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventManagementAgent?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody(memName)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environmentOption.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Remove" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Remove`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltipTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.preview.aclProfile" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "aclProfileConfig" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.credentials.clientCredentials" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientCredentialConfig" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueConfig-${identifier}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "queueBindingTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueBindingConfig-${queueBindingTitle}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`rdpConfig-${identifier}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "POPOVER_CONTENT" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}\n\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.applicationVersionRemovalWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventVersion?.displayName || eventVersion?.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-subscriptions`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{subscriptions.slice(1).map((sub, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{sub}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-discrepancies`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{discrepancies.slice(1).map((discrepancy, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{discrepancy}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "getHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle(title, description)" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Configuring\"" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "string", + "value": "Update event broker to configure recent changes to this application" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "resourceName" + }, + { + "name": "data-qa", + "type": "string", + "value": "resourceNameTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "placement", + "type": "variable", + "value": "placement" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "selectedEntity.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "onVersionHover ? onVersionHover(version.id) : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${version.id}-${index}`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`Matching text for '${searchText}'`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "children" + }, + { + "name": "open", + "type": "variable", + "value": "open" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOnOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleOnClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t{searchText && {`Matching text for '${searchText}'`}}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isSubscribeReadOnly ? \"Already subscribing to event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isPublishReadOnly ? \"Already publishing event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add the custom attribute to All application domains or only the Current application domain.\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"customAttributeScopeTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue?.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "getStringValuesTooltipContent(customAttributeValue?.stringValues)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "caName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestVersion" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\tLink applications to show an organizational relationship in the graph view.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about linked applications\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "right-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "enterDelay", + "type": "number", + "value": "800" + }, + { + "name": "enterNextDelay", + "type": "number", + "value": "800" + }, + { + "name": "disableFocusListener", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "graphViewToggle" + }, + { + "name": "title", + "type": "string", + "value": "Graph View" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "selected === \"graph\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "listViewToggle" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disableHoverOnListView" + }, + { + "name": "title", + "type": "expression", + "value": "entityName ? : \"Components\"" + }, + { + "name": "variant", + "type": "expression", + "value": "entityName ? \"html\" : \"text\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.parentName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.versionName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "customAttributeName" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "\"Filters relevant only to other object types\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": " 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventApiProductName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.parent?.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "renderProtocolPopover(messagingService.supportedProtocols ?? [])" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainIcon-${applicationDomainName}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "itemName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainChip-${applicationDomainName}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "\"The event broker must be in a modeled event mesh to receive runtime data or send configuration data.\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "brokerType" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row.modeledEventMesh.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "(runtimeAgent as EventManagementAgent)?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSempUrlFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getMsgVpnFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "{renderUnavailableMessagingServices()}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "STATUS_DESC_DISPLAY_MAP[status]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "timeMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "getTooltipVariant(item)" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\t\t\t\tAUDIT_ENTITY_TYPE_MAP[auditEntityType]\n\t\t\t\t\t\t\t)}.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "secondaryPanelTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSidePanelTitle()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`domainName-${domain.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionSummaryPopover-${application.id}`" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "title", + "type": "jsx", + "value": "
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${jobId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${createdTime}`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "renderSubjectRelationshipHelp()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(tag)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(hideAuditTag)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationVersion.displayName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipBody" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "rowIdentifierValue" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "parentName" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName} ${numAdditionalParents}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "enumEntity.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApiProduct.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "schema.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "application.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "en.application.applicationType[application.applicationType]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(application.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApi.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "event.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(event.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "secondaryAction?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "reuseIndexTooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t÷\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getTooltipContent()" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "right" + }, + { + "name": "dataQa", + "type": "string", + "value": "queueBindingHelpTooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Unable to edit when custom attributes have unsaved changes" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionInfo?.displayName || versionInfo?.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue.customAttributeDefinitionName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to edit when ${entityType} has unsaved changes`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "unsavedChangesWarningMsg" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"version\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"displayName\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tEvent version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "node.displayName || node.versionSemver" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "nodeWarningTypeDescription[warnings?.[0]]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "SecondaryTextHoverContent()" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tAll object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn about downloading AsyncAPI documents\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tPrepend Application Domain Name\n\t\t\t\t\t\t\tUse this option when the file contains objects with the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tAppend Major Version Number\n\t\t\t\t\t\t\tUse this option when the file contains more than one version of the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"namingStrategyTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.parent?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"availability-Tooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"small\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"approvalTypes-Tooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.requestor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "formatISOTimeFromNow(row.createdTime)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[request.applicationDomainId]?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "eventMesh.environmentName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "warning" + }, + { + "name": "placement", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "consumer.name" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "key", + "type": "expression", + "value": "`tooltip-${name}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicatonDomainPopoverContent(name)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityConfigSidePanelProps.title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Application Domain\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "displayName ? displayName : version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "viewedSchema.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewedSchemaName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[schemaParent.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "sharedSchema ? \"This event is shared. Only shared schemas can be created\" : \"\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${schemaVersionSelectedMap[row.id].length} Added`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Selected\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.addApplication" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "!!applicationVersion?.id" + }, + { + "name": "disableFocusListener", + "type": "expression", + "value": "!!applicationVersion?.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.approved" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.pending" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.declined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.toBeRequested" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event Access Requests\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "eventName ? \"Event is not shared across application domains\" : \"You do not have access to view this event because it is not shared\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "applicationName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event is not the latest version\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.info" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.source" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.target" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.nonDroppableTooltip" + }, + { + "name": "open", + "type": "expression", + "value": "isActive && !canDrop" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "maxQueueMsgsInfo" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "small" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"service-auth-tooltip\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{helpMessage}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_tiles\", message: \"Grid View\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_list\", message: \"List View\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "email" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(service.id as string)?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environment.label || \"n/a\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(serviceId)?.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "chipProps.tooltip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{roleIdNameMap &&\n\t\t\t\t\t\t\t\t\tuser.roles\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)\n\t\t\t\t\t\t\t\t\t\t.map((role) => {roleIdNameMap[role]})}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-warning`" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.configurationTemplates.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "environment.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "textValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "dataQa", + "type": "string", + "value": "pcuCalculationTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "user.email" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (\n\t\t\t\t\t\t\t\t\t\t{mappedRolesData[item].name}\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "rowData.claimValues" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.userGroups\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)\n\t\t\t\t\t\t\t\t\t\t.map(({ name, value }) => (\n\t\t\t\t\t\t\t\t\t\t\t{name}\n\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(c.status)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(mc.status)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection[\n\t\t\t\t\t\t\t\t\t\t\tuser?.eventPortal2AccessEnabled ? \"totalObjectsTooltip1\" : \"totalObjectsTooltip2\"\n\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.totalObjectsCountText}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.objectsCountLearnLinkText}\n\t\t\t\t\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.readyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.inMaintenanceTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcOperational" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcNotoperational" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row?.epCapabilities == Status.ERROR ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.eventManagementAgentErrorText}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "variant", + "type": "string", + "value": "rich" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingDestinationLimitReached\n\t\t\t\t\t\t\t\t\t? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)\n\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + } + ] + }, + { + "component": "SolaceLabel", + "count": 302, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Domain`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessApproval`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "parentShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMesh[environment]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"bulkMoveCurrentAppDomainLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerConfiguration\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerName\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationName\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationVersion\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"directClients\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventQueues\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"kafkaConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationA\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfile\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RDPName\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RESTConsumerType\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfileLabel\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"queueConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Name`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Version`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "roleHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionVersion]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDisplayName]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDescription]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "version" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Preview`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customColour]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customColour]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customIconLogo]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customIconLogo]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[versionState]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[versionState]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[stateName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[stateName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkedApplications-label" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[state]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[state]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"newVersion-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"newVersion\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "defaultClientProfileName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "multiSelectKey" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`entityVersion-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "env" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshOfMessagingServiceToBeDeleted-none-label" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]-label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[agentMode]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[EventBrokers]-title" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`serviceLabel-${messagingService.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connectedMem\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgentIdLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationDomainLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-applabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelObjecs\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelAction\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsNameLabel" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsDescriptionLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsEnvironementAssociationLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductBrokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiBrokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`postRequestTarget-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}TypeLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}NameLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}ValueLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"postRequestTarget-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointConfigurationEmpty" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointConfigurationType-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointConfigurationType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointName-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointName`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "template" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectAllDomainsLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectedDomainsLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "sectionId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filename-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "kafkaDelimiter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumeration[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumeration[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearchLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "domainsSearch" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filter-popup-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declaredEAPVersions-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "declaredEAPVersions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + }, + { + "name": "required", + "type": "expression", + "value": "!isEmpty(getValues(`${versionObjectName}.name`))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "planNameLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "availabilityLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "approvalType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[schemaType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[schemaType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaTypeLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsLoadingLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsNoPermission\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEvents\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-templateLabel`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "suggested-events" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"name-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resource-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"description-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesMessageLabel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesPreview\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[requiresApproval]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[requiresApproval]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddressResource" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventShared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "appearsIn-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "appearsIn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "\"domainsSearch[label]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[description]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`schemaVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`schemaVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[topicAddress]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[topicAddress]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noCredentials`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noApplicationVersion`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "not-declared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectedMem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"subscription\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventTopic" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomainLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "targetHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "headerExpression" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${props.id}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-key`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "type" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${detail.label}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_status\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_direction\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_description\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`connector-${config.label}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_eventBrokerService\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_bindingDestination\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"sslKeyStoreFileUploaderLabel\"" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${label}_label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "keyTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "valueTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`role-label-${resourceRole}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label\"`" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + }, + { + "name": "required", + "type": "variable", + "value": "required" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "endpoints" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryptionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "mateLinkEncryption" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "certAuthoritiesLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloneCertificateAuthorities" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "environment" + }, + { + "name": "required", + "type": "expression", + "value": "!!serviceId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "htmlForId", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "`${nameCheck}-label`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "regionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "region" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloudLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloud" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "clusterName" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "systemType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/components/CommonFormControl.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "activeStorageAddOns" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "unusedStorage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.styles.ts", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "current-environment-label" + } + ] + } + ] + }, + { + "component": "SolaceAccordion", + "count": 75, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "getEntityDetailsTitle" + }, + { + "name": "details", + "type": "variable", + "value": "getEntityDetailsPanel" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}DetailsAccordion`" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.noChange, null, null)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "applicationsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Application Domains\", appDomains.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(appDomains)" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "memsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMEMClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Modeled Event Meshes\", mems.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(mems)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "environmentsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Environments\", environments.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(environments)" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEventDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "entityType ? `customAttributes-${entityType}-accordion` : null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{`Custom Attributes (${count})`}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t{errorMsg && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{errorMsg}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{!errorMsg && <>{customAttributeValueList}}\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Appearance" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{formMethods && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityAppearance" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails(associatedEnvironmentList)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `eap-${eventApiProductVersion.id}`" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.environmentId" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `messagingService-${item.environmentId}`" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? \"error\" : undefined" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{title}\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t handleDownloadFile(evt, details, emaType, downloadButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleCopyFile(evt, details, emaType, copyButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{details}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onToggle()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tConnection File Details\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t handleDownloadFile(evt)}>\n\t\t\t\t\t\t\t\t\tDownload\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tCopy\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{confFileContent}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChange(\"confFile\")" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionFileDownloadDialog" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "EmaPreflightCheckListAccordion" + }, + { + "name": "details", + "type": "expression", + "value": "renderSummary(emaMode)" + }, + { + "name": "expanded", + "type": "variable", + "value": "isOpen" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggle" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSideInfoBlurbSummary()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion]" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t onTitleLinkClick(messagingService)}\n\t\t\t\t\t\t\t\tdataQa=\"messagingService[Accordion][Title]\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{isCloudBased && } {!messagingService?.eventMeshId && }\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{brokerTypeLabel[messagingService.messagingServiceType] ?? \"Solace\"}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t{!messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t removeMessagingService(messagingService)} title=\"Remove\" dataQa=\"removeMessagingService\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\tConnected Modeled Event Mesh\n\t\t\t\t\t\t{eventMesh ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{eventMesh?.name}{\" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\tNone\n\t\t\t\t\t\t)}\n\t\t\t\t\t
" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "hasIndicator ? \"info\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "demoAccordionList" + }, + { + "name": "expanded", + "type": "expression", + "value": "serviceAccordionControl[item.id]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleServiceAccordionControl(item.id)" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail(item)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "summary", + "type": "expression", + "value": "renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)" + }, + { + "name": "details", + "type": "expression", + "value": "renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRuntimeAgentExpanded" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "dataQa" + }, + { + "name": "summary", + "type": "variable", + "value": "summaryElement" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"importPreviewAccordion\"" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "isSelected ? \"success\" : null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "summary" + }, + { + "name": "summary", + "type": "jsx", + "value": "{summary}" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEnumVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEnumDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiProductVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiProductDetailsTitle(selectedEventApiProduct)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogSchemaVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getSchemaDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogApplicationVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getApplicationDetailsTitle()" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiDetailsTitle(selectedEventApi)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionClick" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${configurationName}-${type}-${index}-requestHeader`" + }, + { + "name": "summary", + "type": "expression", + "value": "getRequestHeaderSummary(header, type, index)" + }, + { + "name": "details", + "type": "expression", + "value": "getRequestHeaderDetails(header, type, index)" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedHeaders[expandKey]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\tsetExpandedHeaders((prev) => {\n\t\t\t\t\t\tprev[expandKey] = !prev[expandKey];\n\n\t\t\t\t\t\treturn { ...prev };\n\t\t\t\t\t});\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "variable", + "value": "queueBindingDetails" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "expression", + "value": "getQueueBindingDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`restDeliveryPointAccordion`" + }, + { + "name": "summary", + "type": "variable", + "value": "accordionSummary" + }, + { + "name": "details", + "type": "variable", + "value": "restConsumers" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getDomainAccordionSummary(domain)" + }, + { + "name": "details", + "type": "expression", + "value": "getDomainAccordionDetails(domain)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainAccordion-${domain.id}`" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedDomainMap[domain.id] === true" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onAccordionChange(domain.id, expandedDomainMap)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"importDomainValidationAccordion\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "importDomainValidationAccordion" + }, + { + "name": "summary", + "type": "expression", + "value": "customAttributeValidations?.validationMessage" + }, + { + "name": "details", + "type": "expression", + "value": "customAttributeValidations?.validations" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`newNodeAccordion-${brokerType.value}`" + }, + { + "name": "key", + "type": "expression", + "value": "brokerType.value" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "expression", + "value": "dragNDropPanelExpansions[brokerType.value]" + }, + { + "name": "onChange", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tsetDragNDropPanelExpansions((prev) => {\n\t\t\t\t\t\t\tconst newState = { ...prev };\n\n\t\t\t\t\t\t\tnewState[brokerType.value] = !prev[brokerType.value];\n\n\t\t\t\t\t\t\treturn newState;\n\t\t\t\t\t\t})" + }, + { + "name": "summary", + "type": "jsx", + "value": "{`${brokerType.label} Objects`}" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].application);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Application\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].event);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tShared Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Conflicting Objects" + }, + { + "name": "details", + "type": "variable", + "value": "conflictingObjects" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpandClick()" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${consumer.name}-consumerAccordion`" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "getAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "`${topicDomain.length} affected Topic Domains`" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{topicDomain.map((topicDomainEntry) => (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{duplicate && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tUsed in\n\t\t\t\t\t\t\t\t\t\t\t{topicDomainEntry?.applicationDomains?.map(({ name }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t\t\t\t{renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\tTips and Tricks for Topic Addresses\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandTopicAddressHelp" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpandTopicAddressHelp(!expandTopicAddressHelp)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordianClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "request.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-events`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Published Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-subscriptions`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Subscribed Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages.applicationDomain.label}\n\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(applications)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "connectorTypeDetails?.name ?? \"\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderVendorConfigurationDetails()}" + }, + { + "name": "expanded", + "type": "variable", + "value": "showSourceDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowSourceDetails(!showSourceDetails)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "\"Solace\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.eventBrokerService}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{(serviceDetails?.name && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{serviceDetails.name}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)) || {\"-\"}}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.bindingDestination}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{getConnectorSummaryValue(solaceDestination)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "showTargetDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowTargetDetails(!showTargetDetails)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tvalue={clientCertValues.sslKeyStoreFormat}\n\t\t\t\t\t\t\treadOnly={readOnly}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sslKeyStoreFormatTypes.map((option, index) => {\n\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{option}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslKeyStorePassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslPrivateKeyPassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonBlur={() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\thasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}\n\t\t\t\t\t\t\thelperText={\n\t\t\t\t\t\t\t\t!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_spool_resource_calc\", message: \"Expanded Spool Size Billing\" })" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCalculations" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCalculations" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[id]" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-advanced-settings" + }, + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_advanced_settings\", message: \"Advanced Settings\" })" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "advancedSettings" + }, + { + "name": "onChange", + "type": "function", + "value": "(_, expanded) => setAdvancedSettings(expanded)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${endpoint.id}Accordion`" + }, + { + "name": "key", + "type": "expression", + "value": "endpoint.id" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{endpoint.name}\n\t\t\t\t\t\t\t\t\t\t\t\t{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{i18n._(accessTypes[endpoint.accessType])}\n\t\t\t\t\t\t\t\t\t\t{endpoint.description}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa=\"actions\"\n\t\t\t\t\t\t\t\t\t\t\t\tid={`public_actions`}\n\t\t\t\t\t\t\t\t\t\t\t\titems={[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tProtocols\n\t\t\t\t\t\t\t\t\t\t\t\tStatus\n\t\t\t\t\t\t\t\t\t\t\t\tPort\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{protocols.map((port) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst value = ports.get(port.protocol);\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{port.label}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? \"Enabled\" : \"Disabled\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? value.port : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandPublicEndpoint[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_used_by_n_services\", message: plural(cluster?.serviceNames.length ?? 0, { one: \"Used by # service\", other: \"Used by # services\" }) })" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "cluster-name-services" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{cluster.serviceNames.map((serviceName) => (\n\t\t\t\t\t\t\t\t\t
{serviceName}
\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 1: Configuration on the Event Broker\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tYou must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Broker Manager's Telemetry\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-1-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep1" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep1Click" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 2: Trace Collection\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCheck Status\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{isConfigured ? Update Configuration : Deploy Configuration}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t{distributedTracingStatus === \"notConfigured\" || distributedTracingStatus === \"pending\" || !telemetryProfileName ? (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t{distributedTracingStatus === \"pending\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\tData Collection is not configured.\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"success\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"success\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-2-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep2" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep2Click" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "section.label" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "summary", + "type": "expression", + "value": "section.label" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleSection(index)" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderProperties(section.data, section.properties)}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tAdvanced Connection Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "advanced_connection_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showAdvancedProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAdvancedProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tClone Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "clone_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCloneProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCloneProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "showEndpoints" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowEndpoint" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "state.showError ? \"error\" : state.showWarning ? \"warn\" : undefined" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "brokerSSONestedAccordion" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleBrokerAccordion()" + }, + { + "name": "summary", + "type": "expression", + "value": "en.brokerSSOConfig.instructionsText" + }, + { + "name": "expanded", + "type": "variable", + "value": "isBrokerAccordionExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1. Click Manage Brokers, then select which event broker services to\n\t\t\t\t\t\t\t\tenable to use Broker SSO.
\n\t\t\t\t\t\t\t\t2. Click Enable SSO.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t3. Click Copy Broker URIs.
\n\t\t\t\t\t\t\t\t4. Add the URIs you've copied to your identity provider.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t5. After you complete these steps for your event broker services, you can use SSO to access them.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tTroubleshooting tip\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tIf a broker has more than one URI, the URIs are copied as comma-separated list. If your identity\n\t\t\t\t\t\t\t\t\tprovider does not support this format, manually enter each URI separately.\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpanded(index)" + }, + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "usersAccordion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderUserSummary(0)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{usersList.map((user, index) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t{isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{hasMore && !showMore && !isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showMore}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{showMore && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showLess}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openAuditFilterOptionsSection" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Time Range\"\n\t\t\t\t\t\t\t\tvalue={filters.timeRange.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{timeRangeLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Status\"\n\t\t\t\t\t\t\t\tvalue={filters.status.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{statusLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Category\"\n\t\t\t\t\t\t\t\tvalue={filters.category.value}\n\t\t\t\t\t\t\t\tid=\"categoryFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.category}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{autoCompleteField()}\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Event\"\n\t\t\t\t\t\t\t\tvalue={filters.event.value}\n\t\t\t\t\t\t\t\thelperText={!filters.category.value ? en.auditLogs.selectCategory : \"\"}\n\t\t\t\t\t\t\t\tid=\"eventFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowFilterOptions((state) => !state)" + }, + { + "name": "expanded", + "type": "variable", + "value": "showFilterOptions" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.auditLogs.filters}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{selectedFilters?.map((filter, index) => (\n\t\t\t\t\t\t\t\t\t deleteFilter(filter.key)}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t{selectedFilters.length > 0 ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.auditLogs.clearAll}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "token.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`" + }, + { + "name": "details", + "type": "jsx", + "value": "<>{renderDetails(false)}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenDetailsAccordion" + } + ] + } + ] + }, + { + "component": "SolaceAttributeBadge", + "count": 50, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "tagName" + }, + { + "name": "labelColor", + "type": "variable", + "value": "tagTextColor" + }, + { + "name": "fillColor", + "type": "variable", + "value": "tagBgColor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Update Required\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "messages.selectDialog.default" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "pubSubStatus" + }, + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-toDelete`" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "expression", + "value": "\"To Be Deleted\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "StateChipStyleProps[stateName]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "stateName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Current" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "To Be Removed" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "badgePropsForStatus" + }, + { + "name": "label", + "type": "variable", + "value": "status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_BLUE" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "label", + "type": "string", + "value": "New" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.environmentName" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Recommended\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"overriddenBadge\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.overridden" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Added\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.pub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${\n\t\t\t\t\t\t\t\texpandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0\n\t\t\t\t\t\t\t\t\t? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length\n\t\t\t\t\t\t\t\t\t: 0\n\t\t\t\t\t\t\t} Added`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "state" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getColor(state).fillColor ?? undefined" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getColor(state).labelColor ?? undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "{eventMesh.environmentName}" + }, + { + "name": "size", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"100px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{`${schemaVersionSelectedMap[row.id].length} Added`}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{\"Selected\"}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Source\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Destination\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "label", + "type": "expression", + "value": "\"Declined\"" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "label", + "type": "expression", + "value": "ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"connector_status_badge\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "i18n._(getEventMeshState(eventMesh))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getEventMeshStateFillColor(eventMesh)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getEventMeshStateLabelColor(eventMesh)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expired\", message: \"Expired\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expires_soon\", message: \"Expires Soon\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.warnYellow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "language.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "fillColor", + "type": "variable", + "value": "fillColor" + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "dataQa", + "type": "string", + "value": "statusChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "hasSsoError ? t({ id: \"id_service_outofsync_short\", message: \"SSO out-of-sync\" }) : i18n._(getServiceState(service))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getServiceStateFillColor(service, hasSsoError)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getServiceStateLabelColor(service, hasSsoError)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_event_mesh\", message: \"Event Mesh\" })" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "active" + }, + { + "name": "label", + "type": "string", + "value": "Active" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "inactive" + }, + { + "name": "label", + "type": "string", + "value": "Inactive" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + } + ] + }, + { + "component": "SolaceMessageBox", + "count": 233, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "submitWarning.message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\tEvent Portal does not require your authentication passwords. After Event Portal generates the connection file, replace\n\t\t\t\t\tthe environment variables with your passwords in the installation command, so you can keep them secure.{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\tLearn more about authentication passwords\n\t\t\t\t\t\n\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "\"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.bulkMoveInfo[entityType]" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "getErrorMessage(errors)" + }, + { + "name": "dataQa", + "type": "string", + "value": "previewErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"aclProfileMessageBox\"" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t{messages.preview.aclProfileInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{messages.preview.learnMoreAboutACLProfiles}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseAclProfileInfoMessage()" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.inProgress" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "addHelpText" + }, + { + "name": "onClose", + "type": "function", + "value": "() => onCloseAddHelp()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "deleteHelpText" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"After an object version is Retired, you cannot associate it to other object versions.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(\n\t\t\t\t\t\t\t\tentityType\n\t\t\t\t\t\t\t)} will be removed from the graph view if all versions are in retired state.`" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "stateChangeErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "color", + "type": "expression", + "value": "theme.palette.ux.error.w100" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? \"versions\" : \"version\"} open for editing`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUnsavedWarning(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "\"Any unsaved changes will be lost if you reload the page.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"unsavedWarning\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enumErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "enumWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(item.name)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissErrorStatus" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"deletionErrorMsgBoxSidePanel\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedGatewayMessaggingServices" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedVersions" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t{eventManagementAgentResources.version.needUpgradePrompt}\n\t\t\t\t\t\n\t\t\t\t\t\t{eventManagementAgentResources.version.needUpgradeLinkText}\n\t\t\t\t\t\n\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Connection details updated. Download the file and run it with the Event Management Agent to update the connection.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Unable to create connections to Event Management Agents." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "validationError.eventBrokerError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The event broker must be in a modeled event mesh to receive runtime data or send configuration data." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tUnable to delete connection to{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tselectedMessagingServices.filter((service) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted;\n\t\t\t\t\t\t\t\t\t\t\t})[0]?.name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t. It is associated with one or more objects in the environment.\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`Event Management agent ${emsStatus}`" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Event Management Agent installation setup complete" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"The next steps require you be on the system hosting the connected agent.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\tYou can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those\n\t\t\t\t\t\t\t\t\t\tdatacenters.\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tView Datacenters\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setViewDatacentersInfoBanner(false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "string", + "value": "One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\tConnection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that\n\t\t\t\t\t\t\t\tthe agent connects to.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t handleDownloadConnectionFile(item.id, item.name)}>\n\t\t\t\t\t\t\t\t\t\tDownload Connection File\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{ConnectionStatusLabel.connectionIncomplete}\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tInstall the Event Management Agent and run the connection file to connect to Event Portal.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDownload and install the Event Management Agent.\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "string", + "value": "Event management agent not connected to Event Portal. View logs for details." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{dataCollectionErrorMessage}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tYour event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and\n\t\t\t\t\t\t\t\t\t\t\t\tre-add it to the modelled event mesh\n\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t handleDeleteMessagingService(selectedMessagingService)}>\n\t\t\t\t\t\t\t\t\t\t\t\t\tDelete From Event Portal\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{renderDataCollectionError}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\tUnable to delete connection to {selectedMessagingService.name}. It is associated\n\t\t\t\t\t\t\t\t\t\t\twith one or more objects in the environment.\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoMsgBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\tModeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows\n\t\t\t\t\t\tbetween publishing and subscribing applications.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about modeled event meshes\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warningInfoBoxMessage" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{showServiceWarning && (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tChoose Event Broker\n\t\t\t\t\t\t\t\t\t{renderMessagingServiceSelect()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{showAuditResultTypeWarning ? \"Choose Audit Result Type\" : \"Selected Objects\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{renderSelectionStats()}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects that are already in Event Portal do not need to be imported again.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"matchFoundMessage\"" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseMatchFoundMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t
{errorMessage}
\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Resolve partial matches caused by runtime configuration changes by updating the event from the audit results." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "No differences found in the compared version configurations." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variantType" + }, + { + "name": "message", + "type": "variable", + "value": "_message" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "dismissible" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleMessageBoxOnClose(variantType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NONDRAFT_WARNING" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftWarning" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "`Selected ${\n\t\t\t\t\tAUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]\n\t\t\t\t} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\tentityType\n\t\t\t\t)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "EVENT_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tUnable to import \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{invalidAudits.length} of {audits.length} selected {auditEntityType}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeselect\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationErrorWithDeselect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "submitError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tIf you plan to create objects on the event broker, consider to tag them as \n\t\t\t\t\t\t\tTo Be Created\n\t\t\t\t\t\t\t using the Quick Actions.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${status} ${subStatus ?? \"\"}`}
\n\t\t\t\t\t\t\t{actionText && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t{actionIcon}\n\t\t\t\t\t\t\t\t\t\t{actionText}\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + }, + { + "name": "onClose", + "type": "variable", + "value": "onAuditImportDone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.appDomainFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tsetAppDomainFilterError(false);\n\t\t\t\t\t\t\t\t\tsetSelectedAppDomainId(\"all\");\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.tableFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\tsetTableFiltersError(false);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedSharedType(null);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedBrokerType(null);\n\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!!onClose" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "action?.label && !!action?.onClick ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{action.label}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "variable", + "value": "dense" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{error}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`runtimeConfigurationBanner-${applicationVersion.id}`" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{application.configuration.warningOutOfSync}\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "getEmptyMessageDetails(true)" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "EXPORT_MESSAGE" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "variable", + "value": "messageType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.eventApiProduct.labels.downloadInfo" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "message", + "type": "variable", + "value": "conflictMessage" + }, + { + "name": "details", + "type": "expression", + "value": "getErrorDetails()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t setTriggerVersionDuplication(true)}>\n\t\t\t\t\t\t\t\t\t\tDuplicate Version\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowImportedSchemaInfoBanner(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editImportedSchemaWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "schemaVersionReferencesError.message" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasErrorText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_TYPE_MISMATCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SHARED_VALUE_MISMATCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_VERSION_NOT_FOUND" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "noOptionSelectedError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendValidationErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tCannot delete the last topic domain when{\" \"}\n\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain is selected.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "applicationDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "topicDomainSuccessMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"One or more topic domains were not created successfully.\"" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(failedTopicDomains, false)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "duplicateTopicDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(duplicateTopicDomainEntries, true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"All versions of an event have the same broker type. It cannot be changed after the event is created\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBrokerTypeHelp" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "brokerTypeWarning" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"brokerTypeWarning\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "errors.event.shared.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tAll versions of a Kafka event use the same topic address and use versions from the same schema object.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{\"Learn more about creating Kafka events\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseInfoMessage()" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaEventInfoBanner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "expression", + "value": "`This ${pageID === PageID.eventSearchSchemas ? \"event\" : \"schema\"} is shared. Only shared schemas can be selected.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "messages.credentials.removeCredentialsWarning" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? \"s\" : \"\"}. `}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t{renderWarningDetails()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonSharedEventWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_TOPIC_ADDRESS_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_PUBLISHER_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_MATCHED_SUBSCRIPTION" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForPubEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "errorMessageForPubEvents || subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsInfo(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsWarning(true)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForAdditionalEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUndeployedInformation(false)" + }, + { + "name": "message", + "type": "expression", + "value": "messages.add.addApplicationDescription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : \"You do not have access to this event.\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "messages.credentials.configurationWarning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onCloseError" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`Returning to an earlier step will reset your progress. `" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messages.info}\n\t\t\t\t\t\t\t{getWizardButton(\"text\", goToWizard, false)}\n\t\t\t\t\t\t" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowMessageBox(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "messages.projectDefinition.guide" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "sourceTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "targetTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.helperText.payloadMessage" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setPayloadInfoDismissed(!payloadInfoDismissed)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.reImportWarning(direction.toLowerCase())" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "payloadMappingsValidationErrors.apiError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxConstantCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxHeaderCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{renderErrorMessages(step, validationErrors)}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "down_state_error_message" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error\n\t\t\t\t\t\t\t\t\t\t\t\t\t? en.connectors.labels.errorStateMessage\n\t\t\t\t\t\t\t\t\t\t\t\t\t: en.connectors.labels.downStateMessage}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error && (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? \"Unknown error\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.additionalSupportMessage}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? \"\")" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_state_message" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tdetailsStepValidationErrors,\n\t\t\t\t\t\t\t\tisEqual(connectorTypeDetails.direction, ConnectorDirection.Source),\n\t\t\t\t\t\t\t\ttrue,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tinitialStepValidationErrors,\n\t\t\t\t\t\t\t\tvendorSourceDirection,\n\t\t\t\t\t\t\t\tfalse,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "downErrorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowDownError(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{errorMessageDetails ?? \"\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "error_message_box" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(connectorState ?? \"\")" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_message_box" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_edit_msg_spool_info\", message: \"This change will not impact queue size.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_customize_msg_spool_info\", message: \"You cannot decrease the message spool size after creating the service, but you can increase it without service interruption.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "type" + }, + { + "name": "message", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "eventMesh.errorMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\tSorry, a problem occurred trying to create your service.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Support Ticket\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\tid: \"id_sso_out_of_sync\",\n\t\t\t\t\t\t\t\t\tmessage: \"The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details.\"\n\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tPlan Upgrade\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{t({\n\t\t\t\t\t\t\t\tid: \"id_auto_upgrade_failed\",\n\t\t\t\t\t\t\t\tmessage: `Upgrade steps have failed. Contact Solace for support.`\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t setViewLogs(true)}>\n\t\t\t\t\t\t\t\tView Upgrade Logs\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade steps have failed. Contact Solace for support." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_facilities\", message: \"At least one facility must be selected.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "warningMessage.join(\" \")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "pickMessage(isProfileConfigured, isAccessConfigured)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_deployment\", message: \"There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "disable-distributed-tracing-error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_destination_out_of_date\", message: \"Tracing destination is out of date on this service.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_retrieving_details\", message: \"An error occurred while retrieving Distributed Tracing details, please try again.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enableDistributedTracingErrorMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "patchBrandingText(t({ id: \"id_dt_error_disabling\", message: \"An error occurred while disabling Distributed Tracing. For support, contact Solace.\" }))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_not_supported\", message: \"Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_configuration_progress\", message: \"Configuration in progress...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "configuration-progress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_running\", message: \"Collector is running.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_down\", message: \"Collector is down.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_collector_status\", message: \"Retrieving collector status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-collector-status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_connection_service_active\", message: \"Connection to the service is active.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "brokerConnectionErrorMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_service_status\", message: \"Retrieving service status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-service-status" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_syslog_error\", message: \"Failed to retrieve the configuration for Syslog Forwarding.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\tid: \"id_nodeport_info\",\n\t\t\t\t\tmessage: \"You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation.\"\n\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.errorMessage)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.warningMessage)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_not_latest_version\", message: \"Consider using the latest version. (Recommended)\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_max_spool_size\", message: \"Select a different region. You have reached your limits for this service.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "isSAP\n\t\t\t\t\t\t\t\t\t? t({\n\t\t\t\t\t\t\t\t\t\t\tid: \"id_error_limits_sap\",\n\t\t\t\t\t\t\t\t\t\t\tmessage: \"You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit.\"\n\t\t\t\t\t\t\t\t\t })\n\t\t\t\t\t\t\t\t\t: t({ id: \"id_error_limits\", message: \"Select another service type. You have either reached your limits, or the region does not support this service type.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} \n\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.brokerSsoSetup}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.viewSettings}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{text + \" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{link}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tI Agree\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenTopInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenBottomInfoLearnMore}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardTop" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "deleteError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t{en.environments.labels.deleteDialogMessage}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn more in the documentation\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.errors.duplicateName" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.error.typeRequired" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.info.typeCannotBeChanged" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "messages.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTemplateWarning" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotComplete" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotYetApplied" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.jitInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{userGroupManagement.saveChangesText}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{userGroupManagement.testAccess}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.noAdminMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.overview.banner.WE_HIT_AN_ISSUE" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.forgotPassword.errorSendingResetEmail" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.notifications.fetchingNotificationsErrorNotLoggedIn" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.learnMore}\n\t\t\t\t\n\t\t\t
" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.privateRegions.emaInfoBanner.title}{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.privateRegions.emaInfoBanner.linkText}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.anyApplicationsOrScriptsUsingThisToken" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.thisCannotBeUndone" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{en.tokens.text.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.tokens.text.learnMore}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "failed-to-synch" + }, + { + "name": "key", + "type": "expression", + "value": "item.serviceId" + }, + { + "name": "message", + "type": "expression", + "value": "tracingSynchDialog.error(item.serviceName)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.link.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "infoBox" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{outOfSynchMessageBox.outOfDate({\n\t\t\t\t\t\t\t\t\toutOfSynchServices: outOfSynchServices.length,\n\t\t\t\t\t\t\t\t\tassociatedServices: associateServicesCount\n\t\t\t\t\t\t\t\t})}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setSynchTracingDialog(true)}>\n\t\t\t\t\t\t\t\t\t\t{outOfSynchMessageBox.viewServices}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingLimits.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingLimits" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.delete" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorDeletingTracingDestination" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingDestinations" + } + ] + } + ] + }, + { + "component": "SolaceTextField", + "count": 161, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_NAME" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.name" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\" || mode === \"edit\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][registryUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? renderKafkaAuthHelperText(\"registryUrl\") : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[registryUrl]" + }, + { + "name": "label", + "type": "string", + "value": "Registry URL" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUsername" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUrl" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"e.g. ########.messaging.solace.cloud or 123.89.40.72\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.host" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tsetValue(name, value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly && isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"Use a comma (,) to separate the messaging services in the Kafka cluster.\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.bootstrapServers" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "expression", + "value": "loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.port" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "selectedMode === \"view\"" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[solace][messaging][protocol][${index}][port]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "name", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "value", + "type": "variable", + "value": "attributeValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[name]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.messageVPN" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "value", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "mode === \"edit\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\t\t\t\t\t\t\t\t\t\tconst validVersion = semverValid(newValue) ?? newValue;\n\n\t\t\t\t\t\t\t\t\t\tonChange(validVersion);\n\t\t\t\t\t\t\t\t\t\tcheckVersionAndSetWarning(validVersion);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"DuplicateEntityVersion[version]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Name" + }, + { + "name": "value", + "type": "variable", + "value": "variableName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => handleNameValidate()" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "nameErrorMsg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityNameTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "entityName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxLength + 1" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "label", + "type": "string", + "value": "New Application Domain Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || SHARE_WARNING" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityVersionTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "label", + "type": "string", + "value": "New Application Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || \"\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + }, + { + "name": "disabled", + "type": "expression", + "value": "!domainId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "value", + "type": "variable", + "value": "agentId" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "value", + "type": "expression", + "value": "scan.messagingServiceName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "topicAddress" + }, + { + "name": "label", + "type": "string", + "value": "Topic Address" + }, + { + "name": "value", + "type": "expression", + "value": "selectedAudits[0].identifier" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`detailsName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "clientProfileName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetClientProfileName(e.value);\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`clientProfileName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "email-input" + }, + { + "name": "name", + "type": "string", + "value": "email-input" + }, + { + "name": "type", + "type": "string", + "value": "email" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress" + }, + { + "name": "helperText", + "type": "expression", + "value": "!isValid ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.eventPortalResources.labels.startJourney.inviteUsers.helperTextError\n\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!isValid" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEmailInput" + }, + { + "name": "value", + "type": "variable", + "value": "email" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "variable", + "value": "validateEmail" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonChange(value?.trim());\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-postRequestTarget`" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message || \"\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderName" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value ? value.trim() : \"\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`restDeliveryPointName-editor`" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!getValues(`${formName}.configurationTypeId`)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormCustomizedClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "messagesConfiguration.solaceClientProfileName.clientProfileName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (e.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\thandleFilenameUpdate(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\thandleFilenameUpdate(value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filenameInput`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumeration[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (semverValid(newValue) !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tcheckIfVersionStillLatestAfterUpdate(newValue, versionId);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(semverValid(newValue) ?? newValue);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "isDuplicateVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "nodeNameTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomain-graph-object-name-field" + }, + { + "name": "value", + "type": "variable", + "value": "nodeName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "handleKeyDown" + }, + { + "name": "onFocus", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetTimeout(() => e.target.select(), 100); // Delay to ensure select() works\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "`${nameEditorWidth}px`" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxNameLength + 1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${level.name}-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error && \"Invalid Format\"" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxTTLTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxMsgSpoolUsageTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`planNameTextField-${index}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isGlobal" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"applicationDomain[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDisplayName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesLink" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "type", + "type": "string", + "value": "url" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[version]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventVersion[version]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"application[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.common.labels.name" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputA" + }, + { + "name": "value", + "type": "expression", + "value": "inputA ?? \"\"" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputAValidationError" + }, + { + "name": "helperText", + "type": "variable", + "value": "inputAValidationError" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputA" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputB" + }, + { + "name": "value", + "type": "expression", + "value": "inputB || \"\"" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || (configuration.inputB.type === \"password\" && !isEditing)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputBValidationError" + }, + { + "name": "helperText", + "type": "expression", + "value": "inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputB" + }, + { + "name": "readOnly", + "type": "expression", + "value": "configuration.inputB.type !== \"password\" && !isEditing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "name ?? \"emptyName\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Name\"" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newName = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newName = name.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"name\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "placeholder", + "type": "variable", + "value": "placeholder" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "topic ?? \"emptyTopic\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "topic" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newTopic = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newTopic = topic.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "variable", + "value": "label" + }, + { + "name": "maxLength", + "type": "variable", + "value": "maxLength" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.host" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionDetailsHostTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.host)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: host }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\thost: host\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.host" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.host" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.messageVpn" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: msgVpn }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: msgVpn\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.messageVpn)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.msgVpn\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.messageVpn" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "solaceBindingDestination" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destination }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestination: destination\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destination" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceBindingDestinationTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tvalidateDestination();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.destination" + }, + { + "name": "helperText", + "type": "expression", + "value": "solaceValidationErrors.destination && validationEnabled\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.destination\n\t\t\t\t\t\t\t\t\t\t\t: // flipped because solaceDirection is the opposite of the actual connector direction\n\t\t\t\t\t\t\t\t\t\t\tisEqual(solaceDirection, ConnectorDirection.Source)\n\t\t\t\t\t\t\t\t\t\t\t? en.connectors.helperText.destinationTarget\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.destinationSource" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "value", + "type": "expression", + "value": "String(constantField.constantValue)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.headerName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, headerName: e.value });\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "headerName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderName(e.value);\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeaderExample" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerExpressionExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.headerExpressionExample" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "type", + "type": "expression", + "value": "sensitiveField && !showSensitiveField ? \"password\" : \"text\"" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "endAdornment", + "type": "variable", + "value": "endAdornment" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textField`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "props.value ? \"\" : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "values.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => setValues({ ...values, name })" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tif (isEmpty(values.name)) {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({\n\t\t\t\t\t\t\t\t\t...initialStepValidationErrors,\n\t\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({ ...initialStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!initialStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled ? initialStepValidationErrors.name : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "tokenUri" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.tokenUri" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenUriTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: tokenUri }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\ttokenUri: tokenUri\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.tokenUri)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.tokenUri" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientId" + }, + { + "name": "dataQa", + "type": "string", + "value": "tclientIdTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientId }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientId: clientId\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientId)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientId" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientSecret" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientSecret" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientSecretTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientSecret }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientSecret: clientSecret\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientSecret)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientSecret\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientSecret" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientSecret\n\t\t\t\t\t\t? solaceValidationErrors.clientSecret\n\t\t\t\t\t\t: \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "showClientSecret ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowClientSecret(!showClientSecret)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showClientSecret ? : }\n\t\t\t\t\t\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "scopes" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.scopes" + }, + { + "name": "dataQa", + "type": "string", + "value": "scopesTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: scopes }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientName }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameBasicAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientUsername)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.basicAuthUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername\n\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientPasswordTextField" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientPassword }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientPassword: clientPassword\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowPassword(!showPassword)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showPassword ? : }\n\t\t\t\t\t\n\t\t\t\t]" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientPassword)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientPassword\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.clientPassword" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.clientPassword && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.clientPassword\n\t\t\t\t\t\t\t: en.connectors.helperText.clientPassword\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "\"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStorePassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslKeyStorePassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStorePassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStorePasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStorePassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslKeyStorePassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyAliasName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyAliasName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyAliasName" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyAliasNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyAliasName }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyPassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyPasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyPassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameClientCertAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!readOnly && !!solaceValidationErrors.clientCertUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "connectorDetails.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => {\n\t\t\t\t\t\tsetConnectorDetails({ ...connectorDetails, name });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tif (isEmpty(connectorDetails.name)) {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({\n\t\t\t\t\t\t\t\t...detailsStepValidationErrors,\n\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!detailsStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "clone" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "eventBrokerService" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "authenticationTypeReadOnlyField" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(basicAuthValues.clientUsername)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "value", + "type": "variable", + "value": "clientPassword" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "key" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(key)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "value" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextField.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(hasBlurred || isSubmitted) && hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "(hasBlurred || isSubmitted ? errorText : \"\") || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "name", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "dataQa", + "type": "string", + "value": "newMessageSpoolSize" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_msg_spool_size_label\", message: \"New Message Spool Size (GB)\" })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "progress" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "4" + }, + { + "name": "value", + "type": "expression", + "value": "messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasMessageStorageErrors ? messageStorageErrorText : t({ id: \"id_default_size_gb\", message: \"Default: {0} GB\", values: { 0: formatter.format(defaultMessageSpoolSize) } })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-service-confirm-name" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\tPlease type {matchText} to confirm.\n\t\t\t\t\t\t\t" + }, + { + "name": "value", + "type": "variable", + "value": "matchName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setMatchName(e.value)" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "rename-service-name" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_service_name_label\", message: \"Service Name\" })" + }, + { + "name": "value", + "type": "variable", + "value": "newName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNewName(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "isEmpty\n\t\t\t\t\t\t\t? t({ id: \"id_rule_enter_value\", message: \"Required. Enter a value.\" })\n\t\t\t\t\t\t\t: hasErrors\n\t\t\t\t\t\t\t? t({ id: \"id_rule_less_n_chars\", message: \"Exceeds limit. Enter a value under {0} characters.\", values: { 0: 50 } })\n\t\t\t\t\t\t\t: \"\\xa0\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accessType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_access_type\", message: \"Access Type\" })" + }, + { + "name": "value", + "type": "expression", + "value": "i18n._(accessTypes[endpoint.accessType])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msg_spool_size" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_cur_msg_spool_size\", message: \"Current Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "variable", + "value": "messageSpoolSize" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "tracingProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingClientUsername" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_client_username\", message: \"Tracing Client Username\" })" + }, + { + "name": "value", + "type": "expression", + "value": "\"sc-dt-trace-collector\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationClientCertEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_client_cert_auth\", message: \"Client Certificate Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationClientCertEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationOauthEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_oauth_provider_auth\", message: \"OAuth Provider Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationOauthEnabled)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "filterName" + }, + { + "name": "name", + "type": "string", + "value": "filterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-filter-name" + }, + { + "name": "value", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "t({ id: \"id_filter_services\", message: \"Filter by service name\" })" + }, + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\ticon: filter ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: filter ? handleClearFilter : undefined\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : formatter.format(parseInt(messageStorage.value))" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "messageStorageErrorText" + }, + { + "name": "readOnly", + "type": "expression", + "value": "activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "namePort" + }, + { + "name": "name", + "type": "variable", + "value": "namePort" + }, + { + "name": "dataQa", + "type": "variable", + "value": "namePort" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "5" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "value", + "type": "variable", + "value": "port" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "name", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_message_vpn_name_help\", message: \"The message VPN name cannot be changed once the service is created.\" })" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "name" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "name" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasAnyErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "anyErrorText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceLimitValue" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.newServiceLimit" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceLimitChange" + }, + { + "name": "value", + "type": "variable", + "value": "newServiceLimit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"serviceLimitValue\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environmentFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "environmentsStr.environmentList.filterPlaceholder" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFilterInput" + }, + { + "name": "width", + "type": "expression", + "value": "\"313px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.environmentName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "environmentName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvNameChange" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "isDuplicate || hasError || hasNameRequiredError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envNameTestId" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "firstNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "firstNameError ? myProfile.firstNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userFirstName" + }, + { + "name": "id", + "type": "string", + "value": "userFirstName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userFirstName" + }, + { + "name": "value", + "type": "variable", + "value": "firstNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFirstName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "lastNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "lastNameError ? myProfile.lastNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userLastName" + }, + { + "name": "id", + "type": "string", + "value": "userLastName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userLastName" + }, + { + "name": "value", + "type": "variable", + "value": "lastNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLastName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "oldPasswordReq" + }, + { + "name": "helperText", + "type": "expression", + "value": "oldPasswordReq ? myProfile.oldPasswordReq : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "id", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "value", + "type": "variable", + "value": "oldPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOldPasswordChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "newPasswordError.length > 0" + }, + { + "name": "helperText", + "type": "variable", + "value": "newPasswordError" + }, + { + "name": "name", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "id", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "confirmPasswordError" + }, + { + "name": "helperText", + "type": "expression", + "value": "confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning" + }, + { + "name": "name", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "id", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValueConfirm" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordConfirmChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.ugName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "userGroupName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGNameChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "hasNameError || isDuplicate || hasNoNameError || isDefaultError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupNameQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userGroupSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupSearchQa" + }, + { + "name": "value", + "type": "variable", + "value": "userGroupSearchValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSearchValue" + }, + { + "name": "placeholder", + "type": "expression", + "value": "userGroups.userGroupsHome.search" + }, + { + "name": "size", + "type": "number", + "value": "155" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tuserGroupSearchValue ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "width", + "type": "string", + "value": "20rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientId?.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientIdErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientId, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientId" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientId.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "hideSecretKey ? \"password\" : \"text\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientSecretKey" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientSecretKeyErrorMsg);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientSecretKey, value, errors } };\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientSecretKey" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientSecretKey.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.oidcDiscoveryUrl.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.discoveryUrlExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "oidcDiscoveryUrl" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.discoveryUrl" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.additionalScopes.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.additionalScopesExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "additionalScopes" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.indexOf(\" \") >= 0) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.noWhiteSpaceAllowed);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.additionalScopes, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalScopes" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.additionalScopes.value as string" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "name", + "type": "string", + "value": "preferredSubdomain" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setPreferredSubdomainText({ edited: true, text: e.value })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "value", + "type": "expression", + "value": "preferredSubdomain.text" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest" + }, + { + "name": "helperText", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "string", + "value": "preferredSubdomainTextField" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "userGroupManagement[\n\t\t\t\t\t\t\t\t\tclaimIdChanged && claimId.trim().length < 1 ? \"claimIdError\" : \"identityProviderHelperText\"\n\t\t\t\t\t\t\t\t]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "claimIdChanged && claimId.trim().length < 1" + }, + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.identityProviderLabel" + }, + { + "name": "name", + "type": "string", + "value": "claimId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => claimIdChangeHandler(value)" + }, + { + "name": "value", + "type": "variable", + "value": "claimId" + }, + { + "name": "dataQa", + "type": "string", + "value": "roleId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editClaimValuesFieldId" + }, + { + "name": "name", + "type": "string", + "value": "editClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage :  " + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "name", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage : undefined" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "summaryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleSummaryError()" + }, + { + "name": "name", + "type": "string", + "value": "summaryfield" + }, + { + "name": "id", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "value", + "type": "variable", + "value": "summaryValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSummaryFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "errorIdError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorIdError()" + }, + { + "name": "name", + "type": "string", + "value": "errorField" + }, + { + "name": "id", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "value", + "type": "variable", + "value": "errorIdValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleErrorIdFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "350" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setLimitRequestNumber(+value)" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "limitRequestNumber" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.totalObjects" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "15rem" + }, + { + "name": "data-qa", + "type": "string", + "value": "limitRequestNumberInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setContactEmail(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "value", + "type": "variable", + "value": "contactEmail" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail)" + }, + { + "name": "helperText", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.overview.banner.errorHelperText}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setPassword(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "value", + "type": "variable", + "value": "password" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "width", + "type": "string", + "value": "45rem" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "inCorrectPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "password" + }, + { + "name": "helperText", + "type": "expression", + "value": "inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "name", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "title", + "type": "expression", + "value": "en.forgotPassword.resetPasswordFieldTitle" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.forgotPassword.email" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetPasswordEmailInput" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "string", + "value": "List of Emails" + }, + { + "name": "value", + "type": "variable", + "value": "handle" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setHandle(value)" + }, + { + "name": "onFocus", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))" + }, + { + "name": "onBlur", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({\n\t\t\t\t\t\t...previous,\n\t\t\t\t\t\t[name]: { hasErrors: false, helperText: handle ? \"\" : helperText.warning(name) }\n\t\t\t\t\t}))" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "helper.hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "helper.helperText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "width", + "type": "string", + "value": "45%" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search..." + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSearch(event.value)" + }, + { + "name": "value", + "type": "variable", + "value": "search" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "tokenFormValues.name" + }, + { + "name": "aria-label", + "type": "string", + "value": "Name" + }, + { + "name": "data-lpignore", + "type": "string", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameError ?? undefined" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => dispatch(setTokenName(e.value))" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_displayName" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.name.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination?.displayName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.type.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tracingType[tracingDestination?.tracingBackendType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.connectionType.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[tracingDestination.connectionType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.region.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.datadogSite[tracingDestination.datadogSite]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.endpoint.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.endpoint" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_apiKey" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.datadogApiKey.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.datadogApiKey" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + } + ] + }, + { + "component": "SolaceChip", + "count": 27, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + }, + { + "name": "state", + "type": "expression", + "value": "selected ? STATES.ACTIVE : STATES.NOT_SELECTED" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "selectedEventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "protocolName.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "messagingService.eventMeshId" + }, + { + "name": "label", + "type": "expression", + "value": "messagingService.eventMeshName" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "maxWidth", + "type": "string", + "value": "200px" + }, + { + "name": "disabled", + "type": "variable", + "value": "toBeRemoved" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "isSidePanel ? 100 : 150" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t\t\t\t{isAppDomainLocked && }\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "label", + "type": "expression", + "value": "tag.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t {AUDIT_TAGS_LABELS.Hide}\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "node.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "domainInfoMap[item.id].name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "200" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": " 1 ? \"s\" : \"\"}: ${consumersCount}`}>\n\t\t\t\t\t\t{`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`}\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "number", + "value": "110" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerChip-${eventVersionId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "chipProps.labelColor" + }, + { + "name": "fillColor", + "type": "expression", + "value": "chipProps.fillColor" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "jsx", + "value": "{chipProps.label}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "group.id" + }, + { + "name": "label", + "type": "expression", + "value": "group.name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "user.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name + \" : \" + filter.value" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => deleteFilter(filter.key)" + } + ] + } + ] + }, + { + "component": "SolaceSelect", + "count": 104, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_TYPE" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.brokerType" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode !== \"create\"" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "name", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => undefined" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "content.type" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isJaasConfigPassword || readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.authentication.auth.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][saslscram][saslMechanism]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][saslscram][saslMechanism]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.saslMechanism" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.transport" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleTransportChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.type" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Environment`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onEnvironmantChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.environmentError || !!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.environmentError ?? validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.environment" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.mem" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersion[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Application version to add`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onApplicationVersionChange" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationVersion?.id" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.applicationDomain" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomainId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.applicationDomainError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.applicationDomainError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProduct" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedApplicationDomainId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProductVersion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductVersionSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductVersionId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductVersionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductVersionError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => RESOURCE_LABEL_BY_ROLE[value]" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "name", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "version.id" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"valueType\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-type-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"scope\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-scope-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isDomainManager" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg && !isDomainManager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${entityName}[versionState]`" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "versionStateId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "stateSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumerationVersion" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersionName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumVersionId" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnumOption || getEnumVersions.isLoading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => valueToMenuItemMap.get(value) || \"\"" + }, + { + "name": "width", + "type": "string", + "value": "35%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationDomain?.value" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${entityTypeToLabel(entityType)} Version`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEntityVersionId" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityVersionChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "versionIncrementStrategySelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionIncrementStrategy" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"versionIncrementStrategySelect\"" + }, + { + "name": "label", + "type": "string", + "value": "Version Incrementing" + }, + { + "name": "width", + "type": "expression", + "value": "width ?? \"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "name", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Graph Type\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Agent Mode" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => EMA_MODES_LABELS[value]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getRuntimeAgentModeErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getRuntimeAgentModeErrorMessage" + }, + { + "name": "name", + "type": "string", + "value": "agent mode" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDiscoveryScanModeChange" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!agentId" + }, + { + "name": "width", + "type": "string", + "value": "620px" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.runtimeAgentMode" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceType" + }, + { + "name": "width", + "type": "string", + "value": "30%" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLayoutTypeChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"90px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "levelDepthString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLevelDepthChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"55px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[environmentSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Environment\"" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[eventMeshSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Modeled Event Mesh\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEnvironmentId === \"\" || eventMeshSelectOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[messagingServiceSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEventMeshId === \"\" || messagingServiceOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventFlowFilterChange" + }, + { + "name": "id", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "name", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "value", + "type": "variable", + "value": "eventFlowOption" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || graphNodeExceeded" + }, + { + "name": "width", + "type": "string", + "value": "280px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "value", + "type": "expression", + "value": "audits[0].id" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "name", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectMessagingServiceChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "350px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleSecondVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSecondVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "async (e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\ttrigger(`${configurationName}-postRequestTarget`);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!getValues(`${configurationName}-postRequestTarget`)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-requestTargetEvaluation`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderType" + }, + { + "name": "name", + "type": "expression", + "value": "`${configurationName}-request`" + }, + { + "name": "value", + "type": "variable", + "value": "requestHeaderType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setRequestHeaderType(e.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\thandleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointConfigurationType-selector" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "context.value" + }, + { + "name": "name", + "type": "string", + "value": "contextSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "contextSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleContextOptionChange" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!isDisabled" + }, + { + "name": "width", + "type": "string", + "value": "400px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDelimiterChange" + }, + { + "name": "value", + "type": "variable", + "value": "delimiter" + }, + { + "name": "disabled", + "type": "variable", + "value": "hasFetchError" + }, + { + "name": "width", + "type": "string", + "value": "150px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"AsyncAPI Version\"" + }, + { + "name": "name", + "type": "string", + "value": "AsyncAPI Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetVersion(e.value as EPSupportedAsyncApiVersion);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Document Extensions\"" + }, + { + "name": "name", + "type": "string", + "value": "documentExtensions" + }, + { + "name": "value", + "type": "variable", + "value": "extension" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetExtension(e.value as SupportedAsyncApiExtensionOptions);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\tconst match = documentExtensionOptions.find((props) => props.value === value);\n\n\t\t\t\treturn match ? match.name : \"\";\n\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredPlan : null" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.plan" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t// borkerType is used in the parent, pass the value back.\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApi[brokerType]" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`queueTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[approvalType]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || brokerTypes[0].value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => brokerTypes.find((type) => type.value === value)?.name || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetSelectedSchemaType(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isNew || consumerTypeMenuItems?.length === 1" + }, + { + "name": "disabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\t\t\t// clear any configuration when changing consumer type\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configuration`, undefined);\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configurations`, []);\n\n\t\t\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Modeled Event Mesh`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => updateBrokerType(e.value, index)" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\thandleBrokerTypeChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[brokerType]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[requiresApproval]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeSchemaVersion" + }, + { + "name": "value", + "type": "expression", + "value": "viewedSchemaVersion?.id" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Schema Type\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "\"Access Approval\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[accessApproval]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEdit || !onBrokerTypeChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedMem" + }, + { + "name": "value", + "type": "expression", + "value": "memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tconst memId = e.value === designedEventFlowOption.value ? \"\" : e.value;\n\n\t\t\t\t\t\tsetSelectedMemId(memId);\n\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionDetailMemFilter`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.consumerType" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\ttrigger(\"subscriptions\"); // trigger validation\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "dataQa", + "type": "string", + "value": "consumerSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "name", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials.configurationTypeId" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeConfigurationType" + }, + { + "name": "value", + "type": "expression", + "value": "configuration.typeId" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "authenticationType" + }, + { + "name": "id", + "type": "string", + "value": "authenticationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "name", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: authType }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthenticationType: authType as AuthenticationType\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authenticationType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"solaceDestinationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destinationType }) =>\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestinationType: destinationType\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destinationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEqual(solaceDirection, ConnectorDirection.Source) ? true : false" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceDestinationType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\tsetConstantField({\n\t\t\t\t\t\t\t...constantField,\n\t\t\t\t\t\t\tdataType: dataType,\n\t\t\t\t\t\t\tconstantValue: getDefaultConstantValue(dataType)\n\t\t\t\t\t\t});\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, dataType: dataType });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetHeaderDataType(dataType);\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "headerDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantDataType(dataType);\n\t\t\t\t\t\tsetDefaultConstantValue(dataType);\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "constantDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "expression", + "value": "props.value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "title", + "type": "expression", + "value": "props.title" + }, + { + "name": "id", + "type": "expression", + "value": "props.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFormatTypeField" + }, + { + "name": "id", + "type": "string", + "value": "sslKeyStoreFormatType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStoreFormat" + }, + { + "name": "name", + "type": "expression", + "value": "\"sslKeyStoreFormat\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStoreFormat }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "clientCertValues.sslKeyStoreFormat" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelect.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "view" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_view_by\", message: \"View by\" })" + }, + { + "name": "value", + "type": "variable", + "value": "view" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeView" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"connect-view-by\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "protocol" + }, + { + "name": "name", + "type": "string", + "value": "protocol" + }, + { + "name": "dataQa", + "type": "string", + "value": "protocol" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_protocol\", message: \"Protocol\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "protocolIndex.toString()" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hosturi" + }, + { + "name": "name", + "type": "string", + "value": "hosturi" + }, + { + "name": "dataQa", + "type": "string", + "value": "hosturi" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_hosturi\", message: \"Host URI\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "hostUri" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHostUriChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "data-qa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "selectedTracingProfileId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!selectedTracingProfileId && isSubmitted" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectedTracingProfileId || !isSubmitted ? \"\" : t({ id: \"id_dt_select_tracing_dest\", message: \"Required. Select a tracing destination.\" })" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedTracingProfileId(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloud" + }, + { + "name": "name", + "type": "string", + "value": "cloud" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloud" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "cloudDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "20rem" + }, + { + "name": "id", + "type": "string", + "value": "userGroupDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupDropdownQa" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectedUserGroupRole" + }, + { + "name": "title", + "type": "string", + "value": "User Group Select" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroupRole" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.timeRange" + }, + { + "name": "name", + "type": "string", + "value": "timeRange" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Time Range" + }, + { + "name": "value", + "type": "expression", + "value": "filters.timeRange.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.status" + }, + { + "name": "name", + "type": "string", + "value": "status" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Status" + }, + { + "name": "value", + "type": "expression", + "value": "filters.status.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.category" + }, + { + "name": "name", + "type": "string", + "value": "category" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Category" + }, + { + "name": "value", + "type": "expression", + "value": "filters.category.value" + }, + { + "name": "id", + "type": "string", + "value": "categoryFilter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "disabled", + "type": "expression", + "value": "!filters.category.value" + }, + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.event" + }, + { + "name": "name", + "type": "string", + "value": "event" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Event" + }, + { + "name": "value", + "type": "expression", + "value": "filters.event.value" + }, + { + "name": "helperText", + "type": "expression", + "value": "!filters.category.value ? en.auditLogs.selectCategory : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventFilter" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "environments.moveDialogLabels.destinationEnvironment" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)" + } + ] + } + ] + }, + { + "component": "SolaceCheckBox", + "count": 82, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][tls]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "isTLSChecked" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "readOnly || loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "checkedItems[option.value]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "disabled", + "type": "expression", + "value": "optionDisabled(option, selectedMessagingService)" + }, + { + "name": "label", + "type": "expression", + "value": "option.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetSubscribeToEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "subscribeToEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isSubscribeReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationSubscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "publishEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetPublishEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "publishEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isPublishReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationPublishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"keepParent\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"keepEntityCheckbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleKeepParentChange(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{ label: `Creates a new version of the ${entityType}`, light: true }" + }, + { + "name": "checked", + "type": "variable", + "value": "keepParent" + }, + { + "name": "label", + "type": "expression", + "value": "`I want to keep the ${entityType}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "checkboxName ?? \"customhookCheckbox\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationDomain" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationDomain" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.state" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.state" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.state" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.shared" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.shared" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.shared" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.brokerType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.brokerType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.brokerType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.eventMesh" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.eventMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "checked", + "type": "expression", + "value": "currentFilters.includes(filterType)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "renderCheckboxLabel(customAttributes[0].name)" + }, + { + "name": "checked", + "type": "expression", + "value": "!!selectedFilters.find((filter) => filter.type === filterType)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "broker" + }, + { + "name": "label", + "type": "string", + "value": "Broker" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!brokerEnabled && !toDisableBrokerScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover consumer groups and topics.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableBrokerScan()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "confluentSchemaRegistry" + }, + { + "name": "label", + "type": "string", + "value": "Confluent Schema Registry" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSchemaRegistryOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover schemas from Confluent.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableSchemaRegistryScan()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Show only the modeled event meshes I can access" + }, + { + "name": "name", + "type": "string", + "value": "Filter By Access" + }, + { + "name": "checked", + "type": "variable", + "value": "filterByAccess" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggleFilterByAccessOnChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dontShowConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Don't show this message again.`" + }, + { + "name": "checked", + "type": "expression", + "value": "!showDialogAgain" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dontShowConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowDialogAgain(!event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"requiredConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Require confirmation\"" + }, + { + "name": "checked", + "type": "variable", + "value": "showConfirmDialogBox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"requiredConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleRequireConfirmCheckbox(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"hideAuditResults\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`" + }, + { + "name": "checked", + "type": "expression", + "value": "showHiddenAudits !== \"false\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"hideAuditResults-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleHideTagCheckbox(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"selectAllDomains\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"selectAllDomainsCheckbox\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAllDomainsCheck" + }, + { + "name": "checked", + "type": "variable", + "value": "isChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "isChecked && selectedDomainIds.length !== items.length" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumeration[shared]" + }, + { + "name": "label", + "type": "string", + "value": "Allow Enumeration to be shared across application domains" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[shared]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNamingStrategyChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetOnlyShowEventsWithoutSubscription(e.value);\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "label", + "type": "string", + "value": "Show events without a consumer subscription" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetTopicDomainEnforcement(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!value && !hasValidTopicDomain" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[uniqueTopicAddressEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"uniqueTopicAddressEnforcementEnabled\"" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[topicDomainEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.topicDomainEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[nonDraftDescriptionsEditable]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.nonDraftDescriptionsEditable" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "disabled", + "type": "variable", + "value": "sharedSchema" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\thandleSharedChanged(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "publishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "filter.value" + }, + { + "name": "name", + "type": "expression", + "value": "filter.name" + }, + { + "name": "checked", + "type": "expression", + "value": "filtersMap[application?.id]?.[filter.value]" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`environment-filters-${filter.value}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"doNotShowAgain\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Do not show this warning again\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => props.onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "checked", + "type": "expression", + "value": "props.value" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_manager\", message: \"Rotate Mission Control Manager permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_manager" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"manager\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleManagerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_manager" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_editor\", message: \"Rotate Mission Control Editor permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_editor" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"admin\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEditorChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_editor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_viewer\", message: \"Rotate Mission Control Viewer permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_viewer" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"viewer\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleViewerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_viewer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showMyServices" + }, + { + "name": "name", + "type": "string", + "value": "showMyServices" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-show-mine" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_only_my_services\", message: \"Only show my services\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "userOnly" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetUserOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showDiffs" + }, + { + "name": "name", + "type": "string", + "value": "showDiffs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_differences\", message: \"Show only differences\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "showDiffs" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowDiffs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "name", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mate_link_label\", message: \"Enable mate-link encryption\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: t({ id: \"id_mate_link_text\", message: \"This will encrypt the communication between the primary and backup brokers in a HA setup.\" }),\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "name", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_clone_cert_auth\", message: \"Duplicate all Client and Domain Certificate Authorities\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: This will copy all certificates existing on the source event broker service to the new event broker service.,\n\t\t\t\t\tlight: true\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "name", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "dataQa", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: \"id_port_label\", message: `Enable ${meta.label}, use port:` })}\n\t\t\t\t\t\t" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "checked", + "type": "expression", + "value": "!disabled" + }, + { + "name": "readOnly", + "type": "expression", + "value": "checkboxDisabled || !isPortDisablingEnabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolToggle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmDeleteEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleConfirmDelete" + }, + { + "name": "checked", + "type": "variable", + "value": "confirmDelete" + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDeleting" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmASEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "checked", + "type": "variable", + "value": "isServiceCreationAllowed" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "disabled", + "type": "expression", + "value": "isError || dialogState.updating" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "templateType" + }, + { + "name": "name", + "type": "variable", + "value": "templateType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${templateType}Checkbox`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{environments.configurationTemplates[templateType].label}\n\t\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "variable", + "value": "updateTemplateTypeEnforcement" + }, + { + "name": "checked", + "type": "expression", + "value": "templateStatus.isEnforced" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "name", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "name", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"console\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"marketing\"]?.email : false" + }, + { + "name": "id", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "name", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"marketing\", \"email\", value.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.jitProvisionMainText}\n\t\t\t\t\t\t{userGroupManagement.jitProvisionSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsJitProvisioningChecked(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "isJitProvisioningChecked" + }, + { + "name": "title", + "type": "string", + "value": "Enable Just-in-Time provisioning" + }, + { + "name": "dataQa", + "type": "string", + "value": "jitProvisionCheckboxId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "id", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.customizeGroupMainText}\n\t\t\t\t\t\t{userGroupManagement.customizeGroupSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "checked", + "type": "variable", + "value": "isCustomizeUserGroupChecked" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => customizeDefaultUserGroupCheck(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{isCustomizeUserGroupChecked ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titemMappingCallback={(option) => option}\n\t\t\t\t\t\t\t\t\toptionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}\n\t\t\t\t\t\t\t\t\tonChange={handleUserGroupSelectChange}\n\t\t\t\t\t\t\t\t\tfetchOptionsCallback={handleFetchProtocolOptionsCallback}\n\t\t\t\t\t\t\t\t\tisOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}\n\t\t\t\t\t\t\t\t\twidth=\"30rem\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "title", + "type": "string", + "value": "Customize Default UserGroup" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventMesh" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventMeshFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventMesh" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventPortal" + }, + { + "name": "name", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventPortalFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventPortal" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onPermissionCheckboxChange(permission.id)" + }, + { + "name": "name", + "type": "expression", + "value": "permission.id" + }, + { + "name": "checked", + "type": "expression", + "value": "!!isPermissionSelected[permission.id]" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "dataQa", + "type": "expression", + "value": "permission.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + } + ] + }, + { + "component": "SolaceTabs", + "count": 31, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabArray" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "selectedTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: \"mostUsed\" },\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: \"leastused\" }\n\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => handleTabClick(tab)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "brokerTypeOptions" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "addObjectsActiveTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleAddObjectTabClick" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "actionTabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleActionTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeStep" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setActiveStep" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t{ value: \"1\", label: t({ id: \"id_get_api\", message: \"1. Get API\" }) },\n\t\t\t\t\t{ value: \"2\", label: t({ id: \"id_connect_service\", message: \"2. Connect to Service\" }) },\n\t\t\t\t\t{ value: \"3\", label: t({ id: \"id_learn_more\", message: \"3. Learn with Tutorials\" }) }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "certType" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setCertType" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{ value: \"client\", label: t({ id: \"id_client_cert_auths\", message: \"Client Certificate Authorities\" }) },\n\t\t\t\t\t\t\t\t\t{ value: \"domain\", label: t({ id: \"id_domain_cert_auths\", message: \"Domain Certificate Authorities\" }) }\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_status\", message: \"Status\" }), value: \"status\" },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_connect\", message: \"Connect\" }), value: \"connect\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_manage\", message: \"Manage\" }), value: \"manage\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_monitoring\", message: \"Monitoring\" }), value: \"monitoring\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_configuration\", message: \"Configuration\" }), value: \"configuration\", disabled: isInProgress },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_tryme\", message: \"Try Me!\" }), value: \"tryme\", disabled: areTabsDisabled }\n\t\t\t\t\t\t]" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + } + ] + }, + { + "component": "SolaceMenu", + "count": 65, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Add Protocol\"\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "solaceAddProtocolMenuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\tisDisabled: isEmpty(selectedRowIds),\n\t\t\t\t\t\t\tdataQa: \"selectedEntityActions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: en.eventPortalResources.labels.deleteSample.actionMenuTitle\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "getMenuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"versionMoreAction\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "wrappedMenuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: \"eventDetailModalMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"moreActionMenuButton\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsForEntityDetail()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tisDisabled: graphEmpty,\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"text\",\n\t\t\t\tchildren: \"Add Filters\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "filterMenuItems" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "9" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tchildren: \"Set Up Event Management Agent\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getRunDiscoveryScanOptionsItems()" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: variant,\n\t\t\t\t\t\tchildren: \"Run Discovery Scan\",\n\t\t\t\t\t\tdataQa: \"runDiscoveryScan\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"messagingServicesDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServicesDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`messagingService_${entity.id}-moreActions`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMessagingServiceDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "expression", + "value": "getMoreOptionsItemsForMessagingService(entity, true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memMessagingServiceDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"messagingServiceMoreActionsButton\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"View Event Management Agent\",\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),\n\t\t\t\t\t\t\tdataQa: \"viewRuntimeAgentActionMenu\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"runtimeAgentMoreActionsButton\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Connect to an Event Management Agent\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\tdataQa: dataQa + \"-button\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsProps()" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-menu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"custom-solace-menu\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "actionMenuForEntityVersionList" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: numberOfSelection === 0,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: \"Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMoreActions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: buttonVariant || \"outline\",\n\t\t\t\t\t\t\tchildren: buttonText || \"Import\",\n\t\t\t\t\t\t\tisDisabled: disabled,\n\t\t\t\t\t\t\tdataQa: \"chooseImportOptionButton\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"auditImportMenu\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tdataQa: \"designerMoreAction\",\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\tisDisabled: !isChecked,\n\t\t\t\t\t\tdataQa: \"selectedDomainsActions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"Export\",\n\t\t\t\t\t\t\tonMenuItemClick: () => onExport(selectedDomainIds),\n\t\t\t\t\t\t\tdataQa: \"selectedDomainsExport\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\tdataQa: \"domainMoreAction\",\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainMoreActionMenu" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: `${selectedNode?.type ?? \"\"}NodeSidePanelMoreAction`,\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${selectedNode?.type ?? \"\"}NodeSidePanelMoreActionMenu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"appDomainEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomainEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.eventApiProduct.buttons.openEventApiProduct,\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewVersionDetail(e, item, false)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: en.common.button.moreActions,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"memListMoreAction\"\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"createApplication-menu\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: createLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tdataQa: \"createApplication-button\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.standard,\n\t\t\t\t\t\t\tonMenuItemClick: handleCreate,\n\t\t\t\t\t\t\tdataQa: \"createStandardApplication\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.restDeliveryPoint,\n\t\t\t\t\t\t\tonMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),\n\t\t\t\t\t\t\tdataQa: \"createRestDeliveryPointApplication\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"moreActionsButton\",\n\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa: `${eventBroker.id}-moreOptionMenuButton`,\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\ttitle: common.button.moreActions\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "moreOptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-moreOptionMenu`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getVersionDetailMenuItem(version, mode)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "actionitems" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/utils/RenderActions.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: selectedCount < minimalCount,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: t({ id: \"id_actions\", message: \"Actions\" })\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`${eventMesh.id}_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_event_mesh_details\", message: \"Event Mesh Details\" }),\n\t\t\t\t\t\t\t\tonMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),\n\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\tdisabled: !hasWriteAccess\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: t({ id: \"id_download\", message: \"Download\" }),\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tdataQa: \"download\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "string", + "value": "download" + }, + { + "name": "items", + "type": "expression", + "value": "links.download.map((dw) => ({\n\t\t\t\t\t\t\tname: dw.name,\n\t\t\t\t\t\t\tonMenuItemClick: () => openLink(dw.url)\n\t\t\t\t\t\t}))" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-edit\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleEdit(idx)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-delete\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleDelete(idx)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_set_as_default\", message: \"Set as Default\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-set-default\",\n\t\t\t\t\t\t\t\t\t\tdisabled: !item.canSetAsDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tchangeHostnameDefaultMutation.mutate(item.name);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-move\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\tsetShowMoveDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_copy_clipboard\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetShowDeleteDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`public_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-edit\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-view\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "certType === \"client\"\n\t\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tdisabled: !canConfigure,\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index),\n\t\t\t\t\t\t\t\t\t\t\tdisabled: index === 0 || !canConfigure\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\tdisabled: item.id === DEFAULT_PROFILE || !canConfigure,\n\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"actions\",\n\t\t\t\tonClick: handleMenuClick\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${service.id}_actions`" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\t\tisDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === \"unsupported\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "actionItems" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.requestLimitChange,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: `${environmentsStr.environmentList.moreActionLabel}`,\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"environmentMoreActions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "dataTags", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.edit,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),\n\t\t\t\t\t\t\t\tdisabled: groupMappingState\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.remove,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => removeClaimMappingHandler(rowData.id)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: `${token.name}-menu`,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `View Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onViewToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-view`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Regenerate Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onRegenerateToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-regenerate`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Delete Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onDeleteToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-delete`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tService Details\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t\tonMenuItemClick: () => window.open(`/services/${item.serviceId}`, \"_blank\")?.focus()\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: \n\t\t\t\t}" + } + ] + } + ] + }, + { + "component": "SolaceSelectAutocomplete", + "count": 44, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "name", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "label", + "type": "string", + "value": "Modeled Event Mesh" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEventMeshes[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "name", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "selectedEventMeshes.length === 0" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedMessagingServices[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductVersionId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceAutocomplete" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService" + }, + { + "name": "label", + "type": "string", + "value": "Event Broker Context (optional)" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "values" + }, + { + "name": "options", + "type": "variable", + "value": "matchingValues" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabledCallback" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "debouncedFetchOptionsCallback" + }, + { + "name": "shouldClearSearchOnSelectCallback", + "type": "variable", + "value": "shouldClearSearchOnSelectCallback" + }, + { + "name": "maxHeight", + "type": "string", + "value": "400px" + }, + { + "name": "validateInputCallback", + "type": "variable", + "value": "validateInputValue" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumeration" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationName" + }, + { + "name": "label", + "type": "string", + "value": "Enumeration" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalEnums" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnumOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnumChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumOption" + }, + { + "name": "getOptionDisabledCallback", + "type": "expression", + "value": "sharedSearchCriteria ? handleOptionDisabled : undefined" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "sharedSearchCriteria ? \"You can associate only shared enumerations with shared events.\" : null" + }, + { + "name": "width", + "type": "string", + "value": "65%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomain" + }, + { + "name": "options", + "type": "variable", + "value": "matchingApplicationDomains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationDomainOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "disabled", + "type": "boolean", + "value": "false" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "variable", + "value": "showHelperText" + }, + { + "name": "maxHeight", + "type": "string", + "value": "370px" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationDomainSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationVersionSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ?? \"Application Version\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationVersions" + }, + { + "name": "options", + "type": "variable", + "value": "applicationVersionOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getApplicationVersionSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\tselectedApplicationVersions?.[0] && (\n\t\t\t\t\t{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}\n\t\t\t\t)" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationVersionOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isApplicationVersionSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined" + }, + { + "name": "showGroupDivider", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.divider) ? true : false" + }, + { + "name": "disableCloseOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError || helperText || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersionSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[filterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "label", + "type": "jsx", + "value": "" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedOptions.length > 0 ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOptions" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "CustomAttributeValueAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getCustomAttributeValueOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowCustomAttributeValueOptionDivider" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeCustomAttributeValues" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchCustomAttributeValueOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isCustomAttributeValueOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tdebouncedSelectedOptions &&\n\t\t\t\t\t\tdebouncedSelectedOptions.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[customAttributeFilterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "name", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "placeholder", + "type": "expression", + "value": "displayedEnvironments?.length ? \"\" : \"Select environments\"" + }, + { + "name": "required", + "type": "expression", + "value": "!!isRequired" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!isReadOnly" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "displayedEnvironments" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnvironments" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEnvironments" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "EnvironmentMultiSelectOption" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...option,\n\t\t\t\t\t\tenvironmentOption: getEnvironmentChipObject(environmentOptions, option.id)\n\t\t\t\t\t};\n\t\t\t\t}" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEnvironmentsOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEnvironmentSelectAutocompleteOptionEqual" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tautocompleteRef.current = input;\n\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\tdisplayedEnvironments?.length > 0 && (\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tcolumnGap={8}\n\t\t\t\t\t\t\tshowAll={false}\n\t\t\t\t\t\t\tcontainerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.sharedFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSharedType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredSharedTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShareFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterSharedTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.brokerTypeFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedBrokerType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredBrokerTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerTypeFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterBrokerTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameTemplate" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\tselectTemplate(templates.find((template) => template.id === e.value.value));\n\t\t\t\t\t\t\t\t\t\t\t\t// template changed - keep queue name, clear other properties\n\t\t\t\t\t\t\t\t\t\t\t\tupdateUserConfigValues({ queueName: queueName }, true);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "isTemplateSelectionDisabled(templates, templateOutOfSync)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t// template selected\n\t\t\t\t\t\t\t\t\t\t\t\tconst template = templates.find((template) => template.id === e.value?.value);\n\t\t\t\t\t\t\t\t\t\t\t\tconst clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tsetTemplateOptionSelected({\n\t\t\t\t\t\t\t\t\t\t\t\t\tname: template.name,\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalue: template.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdescription: template.description,\n\t\t\t\t\t\t\t\t\t\t\t\t\tclientProfileName: clientProfileName\n\t\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(clientProfileName);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t// template cleared\n\t\t\t\t\t\t\t\t\t\t\t\treset(true);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "templates.length === 0" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "options", + "type": "expression", + "value": "getAutoCompleteOptions(level)" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterValues" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "value", + "type": "expression", + "value": "getAutoCompleteValue(value, level, name)" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + }, + { + "name": "limitTags", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchMems" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredGatewayMessagingService : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "name", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "label", + "type": "string", + "value": "Requestor" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedRequestors?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedRequestors" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "function", + "value": "(option) => option.name" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRequestorChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option.value === value.value" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\t\t\t\t\t\t\trequestorInputRef.current = input;\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{selectedEventMeshes?.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + }, + { + "name": "maxHeight", + "type": "string", + "value": "22rem" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "id", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchServices" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "expression", + "value": "showMIEnvironmentsFlag ? getOptionsForEnv : getOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedService" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.eventBrokerService" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t: en.connectors.helperText.serviceName" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === \"no_services\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "id", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.transformation" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedTransformationFunction || undefined" + }, + { + "name": "options", + "type": "variable", + "value": "matchingTransformationFunctions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleTransformationFunctionChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "label", + "type": "expression", + "value": "typeof data.label === \"string\"\n\t\t\t\t\t\t\t\t? data.label\n\t\t\t\t\t\t\t\t: data.type === \"input\"\n\t\t\t\t\t\t\t\t? (en.transformations.labels.sourceItem as string)\n\t\t\t\t\t\t\t\t: (en.transformations.labels.targetItem as string)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedField || undefined" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "options", + "type": "variable", + "value": "matchingData" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "maxHeight", + "type": "string", + "value": "30vh" + }, + { + "name": "name", + "type": "string", + "value": "targetVersion" + }, + { + "name": "label", + "type": "string", + "value": "Target Version" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!formError" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "helperText", + "type": "expression", + "value": "formError ? formError : \"\"" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === currentVersion" + }, + { + "name": "fetchOptionsCallback", + "type": "expression", + "value": "useDebouncedCallback(fetchOptionsCallback, 150)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\tsetFormError(\"\");\n\t\t\t\t\t\tsetVersion(event.value as SolaceSelectAutocompleteItemProps);\n\t\t\t\t\t}" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "region" + }, + { + "name": "name", + "type": "string", + "value": "region" + }, + { + "name": "dataQa", + "type": "string", + "value": "region" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "regionDisabled" + }, + { + "name": "placeholder", + "type": "expression", + "value": "getPlaceholder()" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "regionToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemToRegion" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getGroupBy" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "isOptionDisabled" + }, + { + "name": "options", + "type": "variable", + "value": "matchingRegions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterName" + }, + { + "name": "name", + "type": "string", + "value": "clusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clusterName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "clusterNameToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemMappingCallback" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_cluster_name_info\", message: \"Type a new cluster name or select an existing one.\" })" + }, + { + "name": "options", + "type": "variable", + "value": "matchingClusterNames" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "theme.spacing(30)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) =>\n\t\t\t\t!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "name", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptionsCallback" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "options", + "type": "variable", + "value": "usersDropdownList" + }, + { + "name": "title", + "type": "string", + "value": "Select a user to transfer services to" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "userGroupRoleDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupRoleDropdown" + }, + { + "name": "width", + "type": "string", + "value": "800px" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.roles" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupRoleDropdownQa" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupRoleChange" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.roleValue ? dialogState.roleValue : currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleRolesDisabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasRoleError" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasRoleError ? userGroups.ugDialog.ugRoleError : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.username" + }, + { + "name": "id", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "name", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "dataQa", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleEmailSelection(e.value as IEmailOption)" + }, + { + "name": "value", + "type": "expression", + "value": "filters.email.value ? selectedEmail : undefined" + }, + { + "name": "options", + "type": "expression", + "value": "emailSearchTerm ? matchingEmails : getEmails(usersDetails)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.defaultUserGroupLabel" + }, + { + "name": "hasErrors", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "name", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "dataQa", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!selectedUserGroup ? userGroupManagement.selectDefaultGroup : \"\"" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedUserGroup?.name" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "width", + "type": "string", + "value": "30rem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "name", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroups" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tsubText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(\", \"),\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "servicesDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "servicesDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceDropdown" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleServiceCallback" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "options", + "type": "variable", + "value": "services" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "value", + "type": "variable", + "value": "dropdownValueFromParam" + } + ] + } + ] + }, + { + "component": "SolacePagination", + "count": 29, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "tableRows.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "PAGE_SIZE" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "applicationVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "applicationCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setApplicationCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eventCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEventCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "schemaVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "schemaCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setSchemaCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventApiProductVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eapCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEapCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "pagination?.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination?.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination?.count" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "requests.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "displayText", + "type": "expression", + "value": "\"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber + 1" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => 1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "100" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "userTablePage" + }, + { + "name": "pageSize", + "type": "variable", + "value": "USER_LIST_DATA_PER_PAGE" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pageCount || 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => setUserTablePage(page)" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "meta?.pagination.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => fetchNewPage(page)" + }, + { + "name": "totalResults", + "type": "expression", + "value": "meta?.pagination.totalHitCount" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta?.pagination.pageSize" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "10" + }, + { + "name": "totalResults", + "type": "expression", + "value": "rows.length" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => undefined" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "notificationsResponse?.meta?.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => {\n\t\t\t\t\t\t\t\t\tsetPageNumber(page);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "totalResults", + "type": "expression", + "value": "notificationsResponse?.meta?.count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "notificationsResponse?.meta?.pageSize" + } + ] + } + ] + }, + { + "component": "SolaceGrid", + "count": 227, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"grid\", gridTemplateColumns: \"1fr 1fr\", gap: \"8px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "isEditable || nameInEditMode ? \"flex-start\" : \"center\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-valueType`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-scope`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "expression", + "value": "isEditable ? 1 : 2" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"right\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caErrorKey}-message`" + }, + { + "name": "key", + "type": "expression", + "value": "`${caErrorKey}-message`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-content`" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "columnGap", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-action`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "columnGap", + "type": "expression", + "value": "\"8px\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "padding", + "type": "number", + "value": "0" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem additionalFilter" + }, + { + "name": "key", + "type": "expression", + "value": "`${filterType}-select`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${selectedFilter.type}Select`" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem customAttribute" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columns", + "type": "number", + "value": "3" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "expression", + "value": "\"0\"" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "wrap", + "type": "string", + "value": "nowrap" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"450px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"538px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingRight", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "padding", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100% - 65px)`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: SIDE_PANEL_WIDTH }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: \"flex\", flexDirection: \"column\" }" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingTop: \"24px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "gap", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"row\", alignItems: \"center\", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "ml", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderRight", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (leftScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetLeftScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "object", + "value": "{ backgroundColor: theme.palette.ux.background.w20 }" + }, + { + "name": "justifyItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "alignContent", + "type": "expression", + "value": "relations.length === 0 && !initalDrag ? \"center\" : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderLeft", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (rightScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetRightScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${id}-key`" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "className", + "type": "variable", + "value": "classNames" + }, + { + "name": "style", + "type": "variable", + "value": "style" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justify-content", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.5" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1.4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.6" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + }, + { + "name": "mt", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 4 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "variable", + "value": "isParentCategory" + }, + { + "name": "key", + "type": "expression", + "value": "permission.id" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(0.5)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "categoryName" + }, + { + "name": "style", + "type": "object", + "value": "{ padding: theme.spacing(0.25) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "variable", + "value": "permissionTitleSectionStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "marginTop", + "type": "expression", + "value": "categoryName ? theme.spacing(0.5) : theme.spacing(0.25)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.8" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "className", + "type": "string", + "value": "readWrite" + } + ] + } + ] + }, + { + "component": "SolaceStack", + "count": 132, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "width", + "type": "number", + "value": "600" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.25" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(3)" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"360px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "mb", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "my", + "type": "number", + "value": "2.5" + }, + { + "name": "width", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "1" + }, + { + "name": "marginBottom", + "type": "number", + "value": "1" + }, + { + "name": "data-qa", + "type": "string", + "value": "manageCredentialsEditor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "string", + "value": "wrap" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 80px)`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "expression", + "value": "\"wrap\"" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "pr", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "connectorsSidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "6" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "ml", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "mt", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4.5" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "start" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "3" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "height", + "type": "expression", + "value": "allItems.length !== 0 ? `calc(100vh + 80px)` : \"100%\"" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "38rem" + }, + { + "name": "height", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ minHeight: \"45vh\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "marginTop", + "type": "variable", + "value": "marginTop" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "0.5" + } + ] + } + ] + }, + { + "component": "SolaceCodeEditor", + "count": 13, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "id", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "item.value ? JSON.stringify(jsonValue, null, 2) : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersion?.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`dataCollected[${row.id}]`" + }, + { + "name": "value", + "type": "expression", + "value": "row.data" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dataCollected[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "runtimeAttributes || designerAttributes" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaBody" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaReferences" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "observedConfiguration.value" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => setObservedConfiguration({ name, value })" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationName" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error?.message" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "observedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t// onChange will break this because it will compete with the other debounced error flow\n\t\t\t\t\t\t\t\thandleChangeCustomConfiguration(value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === Mode.template" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersionRefetched.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "expression", + "value": "!shownInCatalogDetailContainer" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion[content]\");\n\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isImportedSchemaVersion" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "value", + "type": "variable", + "value": "prettifiedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion.content\");\n\t\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "id", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)" + } + ] + } + ] + }, + { + "component": "SolaceTruncatableLink", + "count": 48, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedEventBroker.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedApplication.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsLabel(credentials)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeAValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputA\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeBValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointNameValue" + }, + { + "name": "text", + "type": "variable", + "value": "rdpName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}NameValue`" + }, + { + "name": "text", + "type": "expression", + "value": "entity.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "expression", + "value": "onVersionNameClick ? version.display || version.semver : {version.display || version.semver}" + }, + { + "name": "onClick", + "type": "expression", + "value": "onVersionNameClick ? () => onVersionNameClick(version) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "event.id" + }, + { + "name": "text", + "type": "expression", + "value": "event.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => eventSelectionCallback(event)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{`${applicationVersion.parent.name} `}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{applicationVersion.displayName || applicationVersion.version}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "text", + "type": "variable", + "value": "eventApiProductName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "variable", + "value": "itemName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "messagingService.id" + }, + { + "name": "text", + "type": "expression", + "value": "messagingService.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onTitleLinkClick(messagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion][Title]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityVersion.parent.id}-${entityVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id + \"_name\"" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventMeshName" + }, + { + "name": "onClick", + "type": "expression", + "value": "hasAccess ? () => handleViewDetail(row) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${associatedEvents?.[0]?.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEvents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEvents?.[0])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${associatedEvents?.[0]?.name}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionSummaryPopoverText=${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionName-${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(applicationVersion.parent, applicationVersion)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appName-${application.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "application.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(application)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "id", + "type": "expression", + "value": "event?.name" + }, + { + "name": "text", + "type": "expression", + "value": "event?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(event)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "associatedEventParents?.[0]?.name" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEventParents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEventParents?.[0])" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaDetail?.name}`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaDetail?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(null)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaDetail?.name}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${applicationDetail?.parent?.name}-${applicationDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventDetail?.parent?.name}-${eventDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "eventDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionNumber}`" + }, + { + "name": "text", + "type": "expression", + "value": "`Version ${versionNumber}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionLinkClick(relation)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${row.id}-templateLink`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplate(row.id)" + }, + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.templateName" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"contextSelector-title\"" + }, + { + "name": "text", + "type": "expression", + "value": "`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "expression", + "value": "item.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "canOpen ? () => onOpen(item) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "node.versionId" + }, + { + "name": "text", + "type": "expression", + "value": "node.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.eventId" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "row.application?.name ?? \"-\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "request.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "request.application.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "applicationDomainLocked ? null : () => onApplicationClick(request.application)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion.id}-link`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewSchemaVersionDetails(schema, schemaVersion)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaVersion.id}-viewDetails`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined" + }, + { + "name": "id", + "type": "expression", + "value": "eventBroker.id" + }, + { + "name": "text", + "type": "expression", + "value": "eventBroker.name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${applicationVersion.id}-applicationVersion-link`" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`" + }, + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "limitString(row.name, 35)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(row.name)}_button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`row.name_button`" + } + ] + } + ] + }, + { + "component": "SolaceErrorBox", + "count": 8, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_disable_error\", message: \"An error occurred while disabling Distributed Tracing, please try again.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_failed_conf_collector\", message: \"Failed to configure and deploy the collector. For support, contact Solace.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_profile_not_created\", message: \"This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_no_connection\", message: \"Cannot retrieve the telemetry profile due to lack of connection.\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_dt_tracing_dest_not_defined\",\n\t\t\t\t\t\t\tmessage: \"A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed.\"\n\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "showErrorIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setErrorMessage(\"\")" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageWhileSavingSettings" + } + ] + } + ] + }, + { + "component": "SolaceCircularProgress", + "count": 27, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx", + "props": [ + { + "name": "dataQa", + "type": "variable", + "value": "testId" + }, + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + }, + { + "name": "disableShrink", + "type": "variable", + "value": "disableShrink" + }, + { + "name": "message", + "type": "variable", + "value": "message" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Retrieving event broker service details..." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Deploying license to broker..." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Removing Distributed Tracing license from broker..." + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "variable", + "value": "configuringMessage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + } + ] + }, + { + "component": "SolacePageHeader", + "count": 17, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "overrideProps" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/home/Home.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "screenPath" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal AI Designer" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]" + }, + { + "name": "release", + "type": "string", + "value": "EXPERIMENTAL" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "environment", + "type": "expression", + "value": "environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "actions", + "type": "expression", + "value": "(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actionMenu", + "type": "jsx", + "value": ",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.connectorFlows" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.agents.agents" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_event_meshes\", message: \"Event Meshes\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_service_details\", message: \"Service Details\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "service?.name ?? \"...\"" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]" + }, + { + "name": "tabs", + "type": "jsx", + "value": " {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_services\", message: \"Services\" })" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_compare_services\", message: \"Compare Services\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "subTitle", + "type": "variable", + "value": "subTitle" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Page Title" + }, + { + "name": "environment", + "type": "jsx", + "value": "" + }, + { + "name": "borderTop", + "type": "variable", + "value": "bgColor" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.accountDetails.userSettings.settings" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "component": "SolaceList", + "count": 14, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginTop: \"-10px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\"&& .Mui-selected\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20,\n\t\t\t\t\t\t\t\tborderRight: \"0\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"&& .Mui-selected:hover\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`payloadSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`constantSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`headerSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`defaultHeaderSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ li: { listStyleType: \"disc\" } }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ p: 2 }" + } + ] + } + ] + }, + { + "component": "SolaceListItemButton", + "count": 5, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "!currentTab || currentTab === \"get-started\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.getStarted);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "currentTab === \"acme-retail-sample\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.acmeRetail);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceQueue" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceClientProfileName" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tbackground: theme.palette.ux.primary.text.w10,\n\t\t\t\t\t\t\theight: \"100%\",\n\t\t\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t\t\t\tpaddingTop: \"0\",\n\t\t\t\t\t\t\tborder: `1px solid ${theme.palette.ux.secondary.w20}`,\n\t\t\t\t\t\t\tborderBottom: index === data.items.length - 1 ? undefined : \"0\"\n\t\t\t\t\t\t}" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "variable", + "value": "selected" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedIndex(index)" + } + ] + } + ] + }, + { + "component": "SolaceListItem", + "count": 16, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "entity.id" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`entityId-${entity.id}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingLeft: \"48px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ height: theme.spacing(sampleSetup ? 7 : 9) }" + }, + { + "name": "secondaryAction", + "type": "jsx", + "value": "{getSecondaryAction()}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tborderTop: index === 0 ? 0 : \"1px solid\",\n\t\t\t\t\t\t\tborderColor: theme.palette.grey[300],\n\t\t\t\t\t\t\tpl: field?.parentId ? getIndentationLevel(field?.parentId) : 3\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + } + ] + }, + { + "component": "SolaceLinearProgress", + "count": 4, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "color", + "type": "string", + "value": "learning" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "value", + "type": "variable", + "value": "completionPercentage" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "key", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "percent >= 99 ? \"indeterminate\" : \"determinate\"" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "variable", + "value": "percent" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "expression", + "value": "getCreationPercentage(service.creationState, service.createdTime as Date)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + } + ] + } + ] + }, + { + "component": "SolaceLearningButton", + "count": 7, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-outline\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!showLoadSampleButton" + }, + { + "name": "startIcon", + "type": "expression", + "value": "!showLoadSampleButton && " + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickLoadSamples" + }, + { + "name": "dataQa", + "type": "string", + "value": "loadSampleDataButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "ExploreOnMyOwnLink" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tdismissableCallback();\n\t\t\t\t\t\t\t\t\tMixpanel.track(\"Element Click\", { \"element-id\": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExploreSample" + }, + { + "name": "dataQa", + "type": "string", + "value": "exploreSampleButton" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "redirectToVideos" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!email" + }, + { + "name": "variant", + "type": "string", + "value": "dark-outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickInviteUsers" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-call-to-action\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + } + ] + }, + { + "component": "SolaceRadioGroup", + "count": 15, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetIsNewApplication(e.value === \"true\");\n\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "isNewApplication ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "radioGroupName ?? \"customhookRadioGroup\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceSelectorRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceRadioGroup" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetSelectedMessagingService(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAuditResultTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "auditResultTypeToImport" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "value", + "type": "variable", + "value": "brokerType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetBrokerType(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.format" + }, + { + "name": "name", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "inline", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetFormat(e.value as SupportedAsyncApiDownloadFormat);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "stackLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "format" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "review" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReviewChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaInfo?.schemaType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetMode(e.value);\n\t\t\t\t\t\t\tresetField(\"consumerId\");\n\t\t\t\t\t\t\tresetField(\"consumerName\");\n\t\t\t\t\t\t\tresetField(\"consumerType\");\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "mode" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceType" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceType" + }, + { + "name": "value", + "type": "variable", + "value": "serviceType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceTypeChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "value", + "type": "variable", + "value": "endpointsSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemType" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "string", + "value": "systemType" + }, + { + "name": "value", + "type": "variable", + "value": "systemType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSystemTypeChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "isProduction" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "getIsProductionValue(dialogState.isProduction)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvProductionChange" + } + ] + } + ] + }, + { + "component": "SolaceRadio", + "count": 25, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Existing Application\"" + }, + { + "name": "name", + "type": "string", + "value": "existingApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingApplication" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"New Application\"" + }, + { + "name": "name", + "type": "string", + "value": "newApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newApplication" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "key", + "type": "expression", + "value": "`messagingService-${item.id}`" + }, + { + "name": "label", + "type": "jsx", + "value": " handleServiceAccordionControl(item.id)}\n\t\t\t\t\t\t\t\tdetails={renderAccordionDetail(item)}\n\t\t\t\t\t\t\t\tsummary={\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t/>" + }, + { + "name": "name", + "type": "expression", + "value": "item.id" + }, + { + "name": "value", + "type": "expression", + "value": "item.id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`selectResultTypeOption_${resultType}`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{auditResultTypeCount}\n\t\t\t\t\t\t\t\t\t{AUDIT_RESULT_CHIPS[resultType]}\n\t\t\t\t\t\t\t\t\t{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "name", + "type": "variable", + "value": "resultType" + }, + { + "name": "value", + "type": "variable", + "value": "resultType" + }, + { + "name": "disabled", + "type": "expression", + "value": "auditResultTypeCount === 0 || isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === pageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "name", + "type": "variable", + "value": "key" + }, + { + "name": "value", + "type": "variable", + "value": "key" + }, + { + "name": "label", + "type": "expression", + "value": "brokerTypeLabel[key]" + }, + { + "name": "disabled", + "type": "expression", + "value": "!allowChangeBrokerType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`brokerType[${key}]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.json" + }, + { + "name": "name", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "string", + "value": "json" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.yaml" + }, + { + "name": "name", + "type": "string", + "value": "yaml" + }, + { + "name": "value", + "type": "string", + "value": "yaml" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + }, + { + "name": "subText", + "type": "expression", + "value": "option.subText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "value" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "label", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`schemaType[${value}]`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Add to Existing Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "existingConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"existingConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingConsumer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Create New Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "newConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"newConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newConsumer" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`\"endpointsSelector\"[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`systemType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`serviceType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "nonprod" + }, + { + "name": "id", + "type": "string", + "value": "nonprod" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "nonProductionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.nonProdSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "prod" + }, + { + "name": "id", + "type": "string", + "value": "prod" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "productionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.prodSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === selectedPageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + } + ] + }, + { + "component": "SolaceTextArea", + "count": 21, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`postRequestTargetValue`" + }, + { + "name": "value", + "type": "expression", + "value": "queueBindingConfiguration.postRequestTarget" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`postRequestTargetValue`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${prefix}Value`" + }, + { + "name": "value", + "type": "variable", + "value": "displayedHeaderValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${prefix}Value`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderValue" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[name]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "!isDuplicateVersion" + }, + { + "name": "maxLength", + "type": "expression", + "value": "nameMaxLength + 1" + }, + { + "name": "minRows", + "type": "number", + "value": "1" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "550px" + }, + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Revocation\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Decline\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "disabled", + "type": "expression", + "value": "reviewDecision !== ReviewDecision.declined" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Comment" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "comment" + }, + { + "name": "value", + "type": "expression", + "value": "item?.comments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleOnCommentChange(e, item)" + }, + { + "name": "label", + "type": "expression", + "value": "\"Comment\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "description ?? \"emptyDescription\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Description\"" + }, + { + "name": "value", + "type": "variable", + "value": "description" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetDescription(e.value ?? \"\");\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tsetDescription(description.trim());\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"description\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "10000" + }, + { + "name": "placeholder", + "type": "expression", + "value": "placeholder ?? \"\"" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "maxLength", + "type": "expression", + "value": "props.schema.maxLength" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textArea`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "limitChangeDetails" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.details" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onDetailsChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"limitChangeDetails\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "1500" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "environmentDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvDescriptionChange" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionErrorText()" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasDescError" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDescriptionTestId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "3000" + }, + { + "name": "label", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.details" + }, + { + "name": "name", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setContactUseMessage(value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!validateText(contactUseMessage) ? false : true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!validateText(contactUseMessage) ? \"\" : drawdownUsage.noDrawdownUsage.containsScript" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "userGroupsDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGDescriptionChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsDescriptionQa" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionCount()" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "name", + "type": "string", + "value": "additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalCommentsText(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalCommentsText" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsTextField" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "additionalCommentsText.length >= 255" + }, + { + "name": "helperText", + "type": "expression", + "value": "additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : \"\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "descriptionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionError()" + }, + { + "name": "name", + "type": "string", + "value": "descriptionField" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "value", + "type": "variable", + "value": "descriptionValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDescriptionFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "5000" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageIssue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setRequestDetailsTexts(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "value", + "type": "variable", + "value": "requestDetailsTexts" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "width", + "type": "string", + "value": "40rem" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalComments(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalComments" + }, + { + "name": "width", + "type": "string", + "value": "30vw" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsId" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"sendRequest\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "1000" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.privateRegions.labels.newRequestDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setTicketBody(event.value)" + } + ] + } + ] + }, + { + "component": "SolaceCategorizedSearch", + "count": 6, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconCategorizedSearch\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChanged" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "expression", + "value": "entityFilterOptions.length > 0 ? entityFilterOptions : []" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedEntityTypeFilter" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleEntityTypeFilterChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "searchInputWidth", + "type": "expression", + "value": "\"280px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "tabOptions" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleTabChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + } + ] + } + ] + }, + { + "component": "SolacePicker", + "count": 13, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customColour-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "icons", + "type": "variable", + "value": "entityColourBlocks" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customIconLogo-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "\"No Results Found\"" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "themePicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select Color Theme\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "themePicker" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "color" + }, + { + "name": "label", + "type": "string", + "value": "Color" + }, + { + "name": "variant", + "type": "string", + "value": "colors" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.color" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvColorChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "icon" + }, + { + "name": "label", + "type": "string", + "value": "Icon" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.icon" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvIconChange" + }, + { + "name": "icons", + "type": "variable", + "value": "Icons24" + } + ] + } + ] + }, + { + "component": "SolaceDetailMessage", + "count": 23, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "messages[configType].emptyConfigurationTitle" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages[configType].emptyLinkToDocumentation}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "{messages[configType].emptyConfigurationDetail}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{en.connectors.buttons.clearFilters}\n\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{secondSectionActionString}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "secondSectionDetails" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping" + }, + { + "name": "details", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.learnMapping,\n\t\t\t\t\t\thref: \"https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.noConnectorFlows" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "details", + "type": "expression", + "value": "en.connectors.labels.tableEmptyDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"create-connector-flow-btn\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"create-connector-flow-btn\",\n\t\t\t\t\t\tchildren: en.connectors.create,\n\t\t\t\t\t\tonClick: onCreateConnectorFlow\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"view-all-connector-btn\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"view-all-connector-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.viewAllTypes,\n\t\t\t\t\t\tonClick: OnViewAllConnectorType\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Nothing to see here!\"" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? \"Please try returning to main page.\"" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-integration\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? \"Go to Integration\",\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? t({ id: \"id_nothing_here\", message: \"Nothing to see here!\" })" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? t({ id: \"id_return_home\", message: \"Please try returning to main page.\" })" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-mission-control\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? t({ id: \"id_goto_mc\", message: \"Go to Mission Control\" }),\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsageSub" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsage" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.subTitle}\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.message}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tchildren: drawdownUsage.noDrawdownUsage.contactUs,\n\t\t\t\t\t\tid: \"contactUs-btn\",\n\t\t\t\t\t\tonClick: () => toggleContactUsModalOpenState(),\n\t\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{supportPage.freeTrialDescription}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt2}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "supportPage.freeTrialTitle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [] + } + ] + }, + { + "component": "SolaceDatePicker", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "value", + "type": "variable", + "value": "endOfLifeDate" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEndOfLifeDateChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "endOfLifeDateSelect" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => clearSelectedDate()" + }, + { + "name": "onChange", + "type": "variable", + "value": "setSelectedDate" + }, + { + "name": "variant", + "type": "expression", + "value": "SolaceDatePickerVariant.FORMAT_MONTH_YEAR" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDate" + } + ] + } + ] + }, + { + "component": "SolaceToggle", + "count": 32, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + }, + { + "name": "disabled", + "type": "variable", + "value": "disableActionToChangeGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showNewEventVersionIndicator`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowNewEventVersionIndicator?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showNewEventVersionIndicator" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}snapNodeToGrid`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSnapNodeToGrid?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "snapNodeToGrid" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMultiSelect" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Multi Select\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMultiSelect" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMultiSelect(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMoveNodes" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Move Nodes\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMoveNodes" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMoveNodes(event.value)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowSchema?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showSchema" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all_resources" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment?.showAllResources" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "messages.header.showAllResources" + }, + { + "name": "helperText", + "type": "expression", + "value": "messages.header.helperText" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderShowAllResources" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHideMatch" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideSubRelationshipsMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSubjectRelationshipHideMatch" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showPropertyNames" + }, + { + "name": "label", + "type": "expression", + "value": "application.configuration.showPropertyNames" + }, + { + "name": "isOn", + "type": "variable", + "value": "showPropertyNames" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowPropertyNames(!showPropertyNames)" + }, + { + "name": "dataQa", + "type": "string", + "value": "showPropertyNamesToggle" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Advanced Properties\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showAdvancedPropertiesToggle\"" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + }, + { + "name": "disabled", + "type": "expression", + "value": "!restDeliveryPoint?.restConsumerConfiguration" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.showAdvancedProperties" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`showAdvancedProperties`" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/components/atoms/AtomToggle.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "isOn", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "delete_protection" + }, + { + "name": "name", + "type": "string", + "value": "delete_protection" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-protection" + }, + { + "name": "isOn", + "type": "variable", + "value": "isLocked" + }, + { + "name": "disabled", + "type": "expression", + "value": "!canConfigure" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDeleteProtection" + }, + { + "name": "stateText", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_delete_protection\", message: \"Delete Protection\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({ id: \"id_show_all_environments_help\", message: \"Enable to manage resources across environments\" })" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "label", + "type": "expression", + "value": "brandableTextValueConverter(\"PubSub+\", \"string\") + \" \" + en.accountSettings.preAuthText" + }, + { + "name": "name", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => togglePreAuth(value.value)" + }, + { + "name": "title", + "type": "string", + "value": "Security Settings Pre Auth" + }, + { + "name": "isOn", + "type": "expression", + "value": "!preOrgConfigResponse?.data.useAuthWebUILinks" + }, + { + "name": "disabled", + "type": "expression", + "value": "preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig" + }, + { + "name": "dataQa", + "type": "string", + "value": "preAuthText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "en.notifications[showUnreadNotifications ? \"showingUnreadNotifications\" : \"showingAllNotifications\"]" + }, + { + "name": "id", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "dataQa", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "label", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "name", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setShowUnreadNotifications(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "isOn", + "type": "variable", + "value": "showUnreadNotifications" + } + ] + } + ] + }, + { + "component": "SolaceMenuItem", + "count": 1, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`graphContextMenu_${menuItem.id ?? index}`" + }, + { + "name": "...", + "type": "spread", + "value": "menuItem" + } + ] + } + ] + }, + { + "component": "SolaceSearchAndFilter", + "count": 10, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "searchFieldPlaceholderText || \"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onFocus", + "type": "variable", + "value": "handleOnFocus" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphEmpty || disableActionToChangeGraph" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "textboxPlaceholderText ?? \"Search\"" + }, + { + "name": "width", + "type": "variable", + "value": "searchTextBoxWidth" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMeshName" + }, + { + "name": "id", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "value", + "type": "variable", + "value": "memNameFilter" + }, + { + "name": "width", + "type": "string", + "value": "500px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "name", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "value", + "type": "variable", + "value": "filterString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByName" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationFilterByNameField" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "name", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "label", + "type": "variable", + "value": "selectApplicationVersionLabel" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by application name" + }, + { + "name": "value", + "type": "variable", + "value": "searchedApplicationName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSearchedApplicationName(e.value)" + }, + { + "name": "onClearAll", + "type": "function", + "value": "() => setSearchedApplicationName(\"\")" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "width", + "type": "expression", + "value": "\"480px\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "filterbyName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "\"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "variable", + "value": "searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.connectors.searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + } + ] + }, + { + "component": "SolaceSelectAutocompleteResponsiveTags", + "count": 8, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.requestor}-tags`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh]" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventMeshSearchSelect-tags\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "300" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "\"200px\"" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + } + ] + }, + { + "component": "SolaceResponsiveItemList", + "count": 7, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t option.value === env.id)}\n\t\t\t\t\t\t\t\t\thasTooltip={true}\n\t\t\t\t\t\t\t\t\tdataQa={env.id}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t};\n\t\t\t\t\t})" + }, + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})" + }, + { + "name": "columnGap", + "type": "number", + "value": "8" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + }, + { + "name": "containerWidth", + "type": "expression", + "value": "containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + } + ] + }, + { + "component": "SolaceEnvironmentChip", + "count": 19, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "maxWidth" + }, + { + "name": "onDelete", + "type": "expression", + "value": "onDelete || null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "context.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "contextOption.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "dialogState.name || \"Environment Name\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + } + ] + }, + { + "component": "SolaceDrawer", + "count": 16, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL" + }, + { + "name": "top", + "type": "expression", + "value": "\"50px\"" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + }, + { + "name": "offset", + "type": "expression", + "value": "\"0px\"" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 100px)`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SEARCH_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "!!rowDetails" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "string", + "value": "10.65%" + }, + { + "name": "width", + "type": "number", + "value": "400" + }, + { + "name": "maxWidth", + "type": "number", + "value": "500" + } + ] + } + ] + }, + { + "component": "SolaceToggleButtonGroup", + "count": 9, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx", + "props": [ + { + "name": "options", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Docker\",\n\t\t\t\t\tvalue: EmaInstallationTypes.docker,\n\t\t\t\t\tdataQa: \"ema-installation-type-docker\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Java\",\n\t\t\t\t\tvalue: EmaInstallationTypes.java,\n\t\t\t\t\tdataQa: \"ema-installation-type-java\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "options", + "type": "expression", + "value": "getFilterOptions()" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "FILTER_OPTIONS" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "viewOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleToggleView" + }, + { + "name": "activeValue", + "type": "variable", + "value": "selectedView" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "userManagementToggle" + }, + { + "name": "options", + "type": "variable", + "value": "TAB_OPTIONS" + }, + { + "name": "onChange", + "type": "variable", + "value": "onToggleChangeHandler" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + } + ] + } + ] + }, + { + "component": "SolaceSidePanelLayout", + "count": 21, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedMem" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedMem ? (\n\t\t\t\t\t\t undefined}\n\t\t\t\t\t\t\tuserMap={entityCreateUpdateUsersMap}\n\t\t\t\t\t\t/>\n\t\t\t\t\t) : null" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "394" + }, + { + "name": "sidePanelPosition", + "type": "expression", + "value": "SolacePanelPosition.LEFT" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanelContent()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEnum" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApiProduct" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedSchema" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedApplication" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApi" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEvent" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedDomain" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!highlightedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!isEmpty(selectedRowIds)" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "showPanel" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "480" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedLibrary ? (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{selectedLibrary.displayName}\n\t\t\t\t\t\t\t handleSelectLibrary(null)}>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tGet Started\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "panelOpen" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanelMessage" + }, + { + "name": "sidePanelWidth", + "type": "variable", + "value": "MAX_WIDTH" + } + ] + } + ] + }, + { + "component": "SolaceGridList", + "count": 23, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedMessagingServiceList" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getMessagingServiceRow" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "selectedMessagingService?.id" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelectMessagingService" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(10ch,auto) 1fr\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceListOfSelectedMEM" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderSchemaVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "schemaListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 52,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderEventVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "eventListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderAppVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "appVersionListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "entityVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "mapEntity" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "processEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(auto, auto) minmax(auto, auto) 16px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"appDomainGraphSearchResultsGrid_\" + entityType" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\theight: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,\n\t\t\t\t\t\titemHeight: SEARCH_LIST_ITEM_HEIGHT,\n\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "eventApiProductVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProductList" + }, + { + "name": "background", + "type": "string", + "value": "white" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "primitiveSchemaTypeOptions" + }, + { + "name": "onSelection", + "type": "variable", + "value": "onPrimitiveTypeChange" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getPrimitiveTypeRowComponents" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedPrimitiveType" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto" + }, + { + "name": "dataQa", + "type": "string", + "value": "primitiveTypes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedRelationshipVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "filteredAndSortedVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "affectedTransformations.map((transformation) => ({\n\t\t\t\t\t\t\tsource: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,\n\t\t\t\t\t\t\ttarget: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName\n\t\t\t\t\t\t}))" + }, + { + "name": "headers", + "type": "array", + "value": "[en.connectors.labels.source, en.connectors.labels.target]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item, index) => [\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.source}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.target}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"1fr 1fr\"" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "meshes" + }, + { + "name": "items", + "type": "variable", + "value": "meshes" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-meshes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "libraries" + }, + { + "name": "dataQa", + "type": "string", + "value": "libraries" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "90px 1fr 1fr 120px" + }, + { + "name": "items", + "type": "variable", + "value": "librarySummaries" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelection" + }, + { + "name": "headers", + "type": "array", + "value": "[\n\t\t\t\tt({ id: \"id_technology\", message: \"Technology\" }),\n\t\t\t\tt({ id: \"id_library\", message: \"Library\" }),\n\t\t\t\tview === \"language\" ? t({ id: \"id_protocol\", message: \"Protocol\" }) : t({ id: \"id_language\", message: \"Language\" }),\n\t\t\t\t\"\"\n\t\t\t]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item) => [\n\t\t\t\t\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{view === \"language\" ? item.protocol : item.languages}\n\t\t\t\t,\n\t\t\t\t\n\t\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t\tGet Started\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`ldap-groups-${id}`" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hostnames" + }, + { + "name": "dataQa", + "type": "string", + "value": "hostnames" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "hostnames" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "syslogs" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "clientCertAuths" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "profiles" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getServiceLimits() as LimitsData[]" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertMsgSpoolLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(true)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgSpoolLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sapAddonLimitsData" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "erpLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertConnectorLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorsLimitsList" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "environments ? environments : []" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "withActionColumnMapping" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "isSidePanelOpen ? selectedId : 0" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 200px 200px 200px 24px" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentGridList" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "expression", + "value": "gridRowMaxVisible()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "_.concat(outOfSyncServices, syncedServices)" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 120px 24px" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "10" + }, + { + "name": "dataQa", + "type": "string", + "value": "out-of-sync-collectors" + } + ] + } + ] + }, + { + "component": "SolaceSplitPane", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "-700" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "Math.max(500, leftPanelMaxWidth)" + } + ] + } + ] + }, + { + "component": "SolaceEnvironmentSelectChip", + "count": 4, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "MEMListEnvironmentSelector" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment?.environmentId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderEnvironmentSelector" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + } + ] + }, + { + "component": "SolaceTextDiff", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "runtimeAttributes" + }, + { + "name": "text2", + "type": "variable", + "value": "designerAttributes" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "schemaBody" + }, + { + "name": "text2", + "type": "variable", + "value": "secondSchemaBody" + } + ] + } + ] + }, + { + "component": "SolaceTag", + "count": 4, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + } + ] + }, + { + "component": "SolaceJsonSchemaForm", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!onChange" + }, + { + "name": "disabled", + "type": "expression", + "value": "!enabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}" + }, + { + "name": "ajvClass", + "type": "variable", + "value": "Ajv2019" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}" + }, + { + "name": "transformTitle", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + } + ] + } + ] + }, + { + "component": "SolaceAttributeValuePairForm", + "count": 4, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "avpKeyValidationCallback", + "type": "variable", + "value": "validateEnumKeys" + }, + { + "name": "avpValueValidationCallback", + "type": "variable", + "value": "validateEnumValues" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Enumeration value is required" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getErrorMessage(error) : null" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50,\n\t\t\t\t\t\t\t\t\t\t\t\t\tinitialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "avpList", + "type": "expression", + "value": "enumerationVersion.values" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderMapping" + }, + { + "name": "avpList", + "type": "variable", + "value": "values" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "() as unknown as string" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeader" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(avpList) => setValues([...avpList])" + }, + { + "name": "disableReorder", + "type": "boolean", + "value": "true" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key" + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "enableRequiredValueFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Required Field!" + }, + { + "name": "avpKeyValidationCallback", + "type": "function", + "value": "(currentInput, values) => keyValidator(currentInput, values)" + }, + { + "name": "avpValueValidationCallback", + "type": "function", + "value": "(currentInput, values) => valueValidator(currentInput, values)" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => onChange(e)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + } + ] + }, + { + "component": "SolaceDonutChart", + "count": 1, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "data", + "type": "expression", + "value": "getPieChartData()" + }, + { + "name": "showTooltip", + "type": "boolean", + "value": "true" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "component": "SolaceStepper", + "count": 3, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "variable", + "value": "handleSetActiveStepRequest" + }, + { + "name": "onClose", + "type": "function", + "value": "() => history.push(\"/ep/designer\")" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "messages.aiWizardButton.submit" + }, + { + "name": "disableSubmit", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/StepperWrapper.tsx", + "props": [ + { + "name": "steps", + "type": "expression", + "value": "renderSteps()" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "onSubmit" + }, + { + "name": "onSecondarySubmit", + "type": "variable", + "value": "onSecondarySubmit" + }, + { + "name": "submitLabel", + "type": "variable", + "value": "submitLabel" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? secondarySubmitLabel : undefined" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => discardChangesAndClose()" + }, + { + "name": "onSubmit", + "type": "function", + "value": "() => onSubmit(true)" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined" + }, + { + "name": "onSecondarySubmit", + "type": "function", + "value": "() => onSubmit(false)" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "en.connectors.buttons.createDeploy" + }, + { + "name": "stepContentOverflow", + "type": "expression", + "value": "showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto" + } + ] + } + ] + }, + { + "component": "SolaceFileUploader", + "count": 3, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "accept", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\"application/json\": [\".json\"]\n\t\t\t\t\t\t\t}" + }, + { + "name": "onFileChange", + "type": "function", + "value": "(files) => {\n\t\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\t\tsetFileImported(files);\n\t\t\t\t\t\t\t}" + }, + { + "name": "errorText", + "type": "variable", + "value": "uploadDialogErrorText" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "props.id" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "onFileChange", + "type": "function", + "value": "async (files) => props.onChange(await fileUpload(files))" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "props.value ? [\"\"] : []" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "onFileChange", + "type": "variable", + "value": "handleFileChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []" + }, + { + "name": "errorText", + "type": "expression", + "value": "solaceValidationErrors.sslKeyStore" + } + ] + } + ] + }, + { + "component": "SolaceFeatureTag", + "count": 3, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "Experimental" + } + ] + } + ] + }, + { + "component": "SolaceEmptyStateBanner", + "count": 1, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx", + "props": [ + { + "name": "bannerImage", + "type": "jsx", + "value": "" + }, + { + "name": "subtitle", + "type": "expression", + "value": "en.connectors.labels.emptyState.subtitle" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.emptyState.title" + }, + { + "name": "description", + "type": "expression", + "value": "en.connectors.labels.emptyState.description" + }, + { + "name": "primaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.checkoutAvailableConnectors,\n\t\t\t\tonClick: onPrimaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-primary-button\"\n\t\t\t}" + }, + { + "name": "secondaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.exploreOnMyOwn,\n\t\t\t\tonClick: onSecondaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-secondary-button\"\n\t\t\t}" + } + ] + } + ] + }, + { + "component": "SolacePopover", + "count": 6, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "full" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + } + ] + }, + { + "component": "SolaceBreadcrumb", + "count": 9, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: \"Micro-Integrations\", link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: `/${id}`,\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "paths", + "type": "expression", + "value": "breadcrumbsPaths2()" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: en.connectors.connectorFlows, link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: \"editV2\",\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_service_authentications\", message: \"Service Authentications\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_cert_auths\", message: \"Certificate Authorities\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_client_profiles\", message: \"Client Profiles\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/account-details/user-groups\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.userManagement}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.groupManagement}`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "NotificationLinksBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(route) => history.push(route)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/notifications\",\n\t\t\t\t\t\t\ttitle: en.notifications.notifications\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: notificationTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + } + ] + }, + { + "component": "SolaceBackDrop", + "count": 10, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "connectorDetailsLoading || connectorMetricsLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/intg/src/components/SuspenseLoader.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "saveInProgress" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isTokensListLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "isPageLoading || createTokenIsLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "tokenIsLoading" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + } + ] + }, + { + "component": "SolaceGridListMultiSelect", + "count": 1, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "services" + }, + { + "name": "items", + "type": "expression", + "value": "services ?? []" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "services" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedIds" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + } + ] + } + ] + }, + { + "component": "SolaceStackLabel", + "count": 2, + "instances": [ + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`environment-type-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`isProduction`" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "/Users/ishanphadte/Documents/GitHub/maas-ui/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!!required" + }, + { + "name": "id", + "type": "expression", + "value": "id ?? name.toLowerCase()" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/scripts/trend-analyzer.js b/tools/archived-tools/mrc-usage-report-maas-ui/scripts/trend-analyzer.js new file mode 100644 index 000000000..5b97fbc6e --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/scripts/trend-analyzer.js @@ -0,0 +1,166 @@ +/** + * MRC Usage Report Trend Analyzer + * + * Analyzes trends between current and previous reports + * Generates a simple HTML report showing changes over time + */ + +const fs = require("fs"); +const path = require("path"); +const { generateTrendReport } = require("./trend-reporter"); + +// Paths +const REPORTS_DIR = path.join(__dirname, "../reports"); +const ARCHIVE_DIR = path.join(REPORTS_DIR, "archive"); +const CURRENT_REPORT_PATH = path.join(REPORTS_DIR, "mrc-usage-report.json"); +const INDEX_PATH = path.join(REPORTS_DIR, "index.html"); + +// Ensure reports directory exists +if (!fs.existsSync(REPORTS_DIR)) { + fs.mkdirSync(REPORTS_DIR, { recursive: true }); +} + +// Ensure archive directory exists +if (!fs.existsSync(ARCHIVE_DIR)) { + fs.mkdirSync(ARCHIVE_DIR, { recursive: true }); +} + +// Load current report +let currentReport; +try { + currentReport = require(CURRENT_REPORT_PATH); + + // Validate that the report has the expected structure + if (!currentReport.componentStats || !currentReport.overallStats || !currentReport.unusedComponents) { + throw new Error("Invalid report format: missing required fields"); + } +} catch (error) { + console.error(`Error loading current report: ${error.message}`); + console.error("Make sure the JSON report was generated successfully before running trend analysis"); + process.exit(1); +} + +// Find previous reports +const archiveFiles = fs + .readdirSync(ARCHIVE_DIR) + .filter((file) => file.startsWith("mrc-usage-report-") && file.endsWith(".json")) + .sort(); + +// First run - no previous data +if (archiveFiles.length <= 1) { + console.log("First run - creating initial report"); + + const simpleReport = { + generatedAt: new Date().toISOString(), + message: "First report - no trend data available yet", + summary: { + totalComponents: currentReport.componentStats.length, + totalUsages: currentReport.overallStats.totalUsages, + unusedComponents: currentReport.unusedComponents.length + }, + topComponents: currentReport.componentStats + .sort((a, b) => b.totalUsages - a.totalUsages) + .slice(0, 10) + .map((c) => ({ name: c.componentName, usages: c.totalUsages })) + }; + + // Generate HTML + const html = generateTrendReport(simpleReport); + fs.writeFileSync(INDEX_PATH, html); + console.log("Created initial trend report"); + process.exit(0); +} + +// Get previous report (most recent before current) +const previousReportFile = archiveFiles[archiveFiles.length - 2]; +let previousReport; +try { + previousReport = require(path.join(ARCHIVE_DIR, previousReportFile)); + + // Validate that the report has the expected structure + if (!previousReport.componentStats || !previousReport.overallStats || !previousReport.unusedComponents) { + throw new Error("Invalid previous report format: missing required fields"); + } +} catch (error) { + console.error(`Error loading previous report: ${error.message}`); + console.error("Creating a new baseline report instead"); + + // Create a simple report as if this is the first run + const simpleReport = { + generatedAt: new Date().toISOString(), + message: "First report - previous report was invalid or corrupted", + summary: { + totalComponents: currentReport.componentStats.length, + totalUsages: currentReport.overallStats.totalUsages, + unusedComponents: currentReport.unusedComponents.length + }, + topComponents: currentReport.componentStats + .sort((a, b) => b.totalUsages - a.totalUsages) + .slice(0, 10) + .map((c) => ({ name: c.componentName, usages: c.totalUsages })) + }; + + // Generate HTML + const html = generateTrendReport(simpleReport); + fs.writeFileSync(INDEX_PATH, html); + console.log("Created baseline report due to issues with previous report"); + process.exit(0); +} + +// Simple trend analysis +const trends = { + currentDate: new Date().toISOString(), + previousDate: previousReport.generatedAt, + summary: { + totalComponents: { + current: currentReport.componentStats.length, + previous: previousReport.componentStats.length, + change: currentReport.componentStats.length - previousReport.componentStats.length + }, + totalUsages: { + current: currentReport.overallStats.totalUsages, + previous: previousReport.overallStats.totalUsages, + change: currentReport.overallStats.totalUsages - previousReport.overallStats.totalUsages + }, + unusedComponents: { + current: currentReport.unusedComponents.length, + previous: previousReport.unusedComponents.length, + change: currentReport.unusedComponents.length - previousReport.unusedComponents.length + } + } +}; + +// Find new and removed components +const currentComponentNames = new Set(currentReport.componentStats.map((c) => c.componentName)); +const previousComponentNames = new Set(previousReport.componentStats.map((c) => c.componentName)); + +trends.newComponents = [...currentComponentNames].filter((name) => !previousComponentNames.has(name)); +trends.removedComponents = [...previousComponentNames].filter((name) => !currentComponentNames.has(name)); + +// Find components with significant usage changes +trends.changedComponents = []; + +for (const component of currentReport.componentStats) { + if (previousComponentNames.has(component.componentName)) { + const previousComponent = previousReport.componentStats.find((c) => c.componentName === component.componentName); + const change = component.totalUsages - previousComponent.totalUsages; + + if (Math.abs(change) > 0) { + trends.changedComponents.push({ + name: component.componentName, + current: component.totalUsages, + previous: previousComponent.totalUsages, + change: change, + percentChange: previousComponent.totalUsages > 0 ? ((change / previousComponent.totalUsages) * 100).toFixed(1) : "N/A" + }); + } + } +} + +// Sort by absolute change +trends.changedComponents.sort((a, b) => Math.abs(b.change) - Math.abs(a.change)); + +// Generate HTML report +const html = generateTrendReport(trends); +fs.writeFileSync(INDEX_PATH, html); +console.log("Trend analysis complete"); diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/scripts/trend-reporter.js b/tools/archived-tools/mrc-usage-report-maas-ui/scripts/trend-reporter.js new file mode 100644 index 000000000..8453c3c75 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/scripts/trend-reporter.js @@ -0,0 +1,187 @@ +/** + * MRC Usage Report Trend Reporter + * + * Generates HTML reports for trend analysis + */ + +/** + * Generate HTML report for first run (no trend data) + * @param {Object} data Initial report data + * @returns {string} HTML content + */ +function generateInitialReport(data) { + return ` + + + + MRC Usage Report - Trends + + + +

MRC Component Usage Report

+

Generated on: ${new Date().toLocaleString()}

+ +
+

Summary

+

Total Components: ${data.summary.totalComponents}

+

Total Usages: ${data.summary.totalUsages}

+

Unused Components: ${data.summary.unusedComponents}

+

${data.message}

+
+ +
+

Top 10 Most Used Components

+ + + + + + ${data.topComponents + .map( + (c) => ` + + + + + ` + ) + .join("")} +
ComponentUsages
${c.name}${c.usages}
+
+ +
+

View Full Report

+

View detailed component usage report

+
+ + + `; +} + +/** + * Generate HTML report for trend analysis + * @param {Object} trends Trend analysis data + * @returns {string} HTML content + */ +function generateTrendReport(trends) { + // First run case + if (trends.message && trends.message.includes("First report")) { + return generateInitialReport(trends); + } + + // Regular trend report + return ` + + + + MRC Usage Report - Trends + + + +

MRC Component Usage Trends

+

Comparing reports from ${new Date(trends.previousDate).toLocaleDateString()} to ${new Date(trends.currentDate).toLocaleDateString()}

+ +
+

Summary Changes

+

Total Components: ${trends.summary.totalComponents.current} + + (${trends.summary.totalComponents.change >= 0 ? "+" : ""}${trends.summary.totalComponents.change}) + +

+

Total Usages: ${trends.summary.totalUsages.current} + + (${trends.summary.totalUsages.change >= 0 ? "+" : ""}${trends.summary.totalUsages.change}) + +

+

Unused Components: ${trends.summary.unusedComponents.current} + + (${trends.summary.unusedComponents.change >= 0 ? "+" : ""}${trends.summary.unusedComponents.change}) + +

+
+ +
+

New Components (${trends.newComponents.length})

+ ${ + trends.newComponents.length > 0 + ? ` +
    + ${trends.newComponents.map((name) => `
  • ${name}
  • `).join("")} +
+ ` + : "

No new components added since last report.

" + } +
+ +
+

Removed Components (${trends.removedComponents.length})

+ ${ + trends.removedComponents.length > 0 + ? ` +
    + ${trends.removedComponents.map((name) => `
  • ${name}
  • `).join("")} +
+ ` + : "

No components removed since last report.

" + } +
+ +
+

Components with Significant Usage Changes

+ ${ + trends.changedComponents.length > 0 + ? ` + + + + + + + + + ${trends.changedComponents + .slice(0, 20) + .map( + (c) => ` + + + + + + + + ` + ) + .join("")} +
ComponentPreviousCurrentChange% Change
${c.name}${c.previous}${c.current}${c.change >= 0 ? "+" : ""}${c.change}${c.change >= 0 ? "+" : ""}${c.percentChange}%
+ ` + : "

No significant usage changes detected.

" + } +
+ +
+

View Full Report

+

View detailed component usage report

+
+ + + `; +} + +module.exports = { + generateTrendReport +}; diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/src/aggregator/dataAggregator.ts b/tools/archived-tools/mrc-usage-report-maas-ui/src/aggregator/dataAggregator.ts new file mode 100644 index 000000000..b4840463d --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/src/aggregator/dataAggregator.ts @@ -0,0 +1,193 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable sonarjs/cognitive-complexity */ +import { ComponentUsage, ComponentStats, ReportData, AnalysisConfig, ComponentInstance } from "../types"; + +/** + * Aggregates component usage data into statistics + */ +export class DataAggregator { + /** + * Aggregates component usage data into statistics + * @param usages Array of component usages + * @param config Analysis configuration + * @param allComponents All available MRC components + * @param mrcVersions MRC version information by MFE + * @returns Report data + */ + aggregate( + usages: any[], + config: AnalysisConfig, + allComponents: { name: string; path: string }[], + mrcVersions: Record + ): ReportData { + // Group usages by component name + const usagesByComponent = new Map(); + + for (const usage of usages) { + const { componentName } = usage; + if (!usagesByComponent.has(componentName)) { + usagesByComponent.set(componentName, []); + } + usagesByComponent.get(componentName)!.push(usage); + } + + // Generate component stats + const componentStats: ComponentStats[] = []; + const aggregatedUsages: ComponentUsage[] = []; + + for (const [componentName, componentUsages] of usagesByComponent.entries()) { + const instances: ComponentInstance[] = componentUsages.map((usage) => ({ + filePath: usage.filePath, + line: usage.line, + props: usage.props + })); + + aggregatedUsages.push({ + component: componentName, + count: instances.length, + instances + }); + + // Count usages by MFE + const usagesByMfe: Record = {}; + for (const usage of componentUsages) { + usagesByMfe[usage.mfe] = (usagesByMfe[usage.mfe] || 0) + 1; + } + + // Count prop usage + const propCounts = new Map(); + for (const usage of componentUsages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + + // Get most common props + const commonProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // Get files where the component is used + const files = Array.from(new Set(componentUsages.map((usage) => usage.filePath))); + + // Count customization stats + let styledComponentCount = 0; + let customStylesCount = 0; + const overriddenPropertiesCounts: Record = {}; + + for (const usage of componentUsages) { + if (usage.customization?.styledComponent) { + styledComponentCount++; + } + if (usage.customization?.customStyles) { + customStylesCount++; + } + if (usage.customization?.overriddenProperties) { + for (const prop of usage.customization.overriddenProperties) { + overriddenPropertiesCounts[prop] = (overriddenPropertiesCounts[prop] || 0) + 1; + } + } + } + + // Add component stats + componentStats.push({ + componentName, + totalUsages: componentUsages.length, + usagesByMfe, + commonProps, + files, + customization: { + styledComponentCount, + customStylesCount, + overriddenPropertiesCounts + }, + instances + }); + } + + // Sort component stats by total usages + componentStats.sort((a, b) => b.totalUsages - a.totalUsages); + + // Generate overall stats + const totalUsages = usages.length; + + // Most used components + const mostUsedComponents = componentStats.slice(0, 10).map((stats) => ({ + name: stats.componentName, + count: stats.totalUsages + })); + + // Most used props + const propCounts = new Map(); + for (const usage of usages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + + const mostUsedProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // MFE usage counts + const mfeUsages: Record = {}; + for (const usage of usages) { + mfeUsages[usage.mfe] = (mfeUsages[usage.mfe] || 0) + 1; + } + + // Find unused components + const usedComponentNames = new Set(componentStats.map((stat) => stat.componentName)); + const unusedComponents = allComponents.filter((comp) => !usedComponentNames.has(comp.name)); + + // Find unused components by MFE + const unusedComponentsByMfe: Record = {}; + + // Initialize with all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe] = []; + } + + // For each component, check which MFEs don't use it + for (const component of allComponents) { + const stat = componentStats.find((s) => s.componentName === component.name); + + if (!stat) { + // If component is not used at all, add to all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe].push(component.name); + } + } else { + // If component is used in some MFEs but not others + for (const mfe of config.mfes) { + if (!stat.usagesByMfe[mfe]) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + } + } + + // Generate report data + const reportData: ReportData = { + generatedAt: new Date().toISOString(), + config, + mrcVersions, + componentStats, + unusedComponents, + unusedComponentsByMfe, + overallStats: { + totalUsages, + mostUsedComponents, + mostUsedProps, + mfeUsages, + totalUnusedComponents: unusedComponents.length + }, + rawData: { + componentUsages: aggregatedUsages + } + }; + + return reportData; + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/src/index.ts b/tools/archived-tools/mrc-usage-report-maas-ui/src/index.ts new file mode 100644 index 000000000..95fa6b302 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/src/index.ts @@ -0,0 +1,216 @@ +#!/usr/bin/env node + +import { Command } from "commander"; +import path from "path"; +import chalk from "chalk"; +import yaml from "js-yaml"; +import fs from "fs"; +import { FileScanner } from "./scanner/fileScanner"; +import { ComponentParser } from "./parser/componentParser"; +import { DataAggregator } from "./aggregator/dataAggregator"; +import { HtmlReporter } from "./reporter/htmlReporter"; +import { AnalysisConfig, MrcSourceType } from "./types"; + +// Define the program +const program = new Command(); + +program + .name("mrc-usage-report") + .description("Generate a report on MRC component usage across MFEs") + .version("1.0.0") + .option("-o, --output ", "Output directory for the report", "./reports") + .option("-f, --format ", "Output format (html, json, yaml, csv)", "html") + .option("-m, --mfes ", "Comma-separated list of MFEs to analyze", "ep,intg,mc,saas") + .option("-r, --mrc-path ", "Path to the MRC repository", "../../maas-react-components") + .option("-b, --base-path ", "Base path for the project", process.cwd()) + .option("-s, --source ", "Source type for MRC components (local or github)", "local") + .option("-g, --github", "Use GitHub as the source for MRC components (shorthand for -s github)") + .option("--github-url ", "GitHub repository URL for MRC components", "https://github.com/SolaceDev/maas-react-components") + .option("--github-branch ", "Branch name for GitHub repository", "main") + .parse(process.argv); + +const options = program.opts(); + +// If -g flag is used, set source type to github +if (options.github) { + options.source = "github"; +} + +// Main function +async function main() { + try { + console.log(chalk.blue("MRC Component Usage Report Generator")); + console.log(chalk.gray("----------------------------------------")); + + // Parse options + const mfes = options.mfes.split(",").filter(Boolean); + const basePath = path.resolve(options.basePath); + const mrcPath = path.resolve(basePath, options.mrcPath); + const outputDir = path.resolve(options.output); + const outputFormat = options.format as "html" | "json" | "yaml" | "csv"; + const mrcSourceType = options.source as MrcSourceType; + const mrcGithubUrl = options.githubUrl; + const mrcGithubBranch = options.githubBranch; + + // Create config + const config: AnalysisConfig = { + mfes, + mrcPath, + outputDir, + outputFormat, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch + }; + + console.log(chalk.yellow("Configuration:")); + console.log(` Base Path: ${basePath}`); + console.log(` MRC Path: ${mrcPath}`); + console.log(` MFEs: ${mfes.join(", ")}`); + console.log(` Output Directory: ${outputDir}`); + console.log(` Output Format: ${outputFormat}`); + console.log(` MRC Source Type: ${mrcSourceType}`); + if (mrcSourceType === "github") { + console.log(` MRC GitHub URL: ${mrcGithubUrl}`); + console.log(` MRC GitHub Branch: ${mrcGithubBranch}`); + } + console.log(""); + + // Step 1: Scan for files + console.log(chalk.yellow("Step 1: Scanning for files...")); + const fileScanner = new FileScanner(basePath, mfes, mrcSourceType, mrcGithubUrl, mrcGithubBranch); + const files = await fileScanner.scanForFiles(); + console.log(`Found ${files.length} files to analyze`); + + // Step 2: Scan for MRC components + console.log(chalk.yellow("Step 2: Scanning for MRC components...")); + const componentFiles = await fileScanner.scanForMrcComponents(mrcPath); + console.log(`Found ${componentFiles.length} MRC component files`); + + // Get component information + const allComponents = await fileScanner.getMrcComponentInfo(componentFiles, mrcPath); + + // Step 3: Parse files for component usage + console.log(chalk.yellow("Step 3: Parsing files for component usage...")); + const componentParser = new ComponentParser(mrcPath, mrcSourceType); + await componentParser.initialize(allComponents); + + let totalUsages = 0; + const allUsages = []; + + for (let i = 0; i < files.length; i++) { + const file = files[i]; + const mfe = file.split(path.sep).find((part) => mfes.includes(part)) || ""; + + try { + const usages = await componentParser.parseFile(file, mfe); + totalUsages += usages.length; + allUsages.push(...usages); + + // Log progress every 100 files + if ((i + 1) % 100 === 0 || i === files.length - 1) { + console.log(` Processed ${i + 1}/${files.length} files, found ${totalUsages} component usages so far`); + } + } catch (error) { + console.error(`Error parsing file ${file}:`, error); + } + } + + console.log(`Found ${totalUsages} total component usages`); + + // Step 4: Detect MRC versions for each MFE + console.log(chalk.yellow("Step 4: Detecting MRC versions...")); + const mrcVersions: Record = {}; + + for (const mfe of mfes) { + try { + const mfePath = path.join(basePath, "micro-frontends", mfe); + const packageJsonPath = path.join(mfePath, "package.json"); + + if (fs.existsSync(packageJsonPath)) { + const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")); + + // Check dependencies and devDependencies + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + + // Look for MRC package + const mrcPackageName = "@SolaceDev/maas-react-components"; + + if (dependencies[mrcPackageName]) { + mrcVersions[mfe] = dependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${dependencies[mrcPackageName]}`); + } else if (devDependencies[mrcPackageName]) { + mrcVersions[mfe] = devDependencies[mrcPackageName]; + console.log(` ${mfe}: MRC version ${devDependencies[mrcPackageName]}`); + } else { + mrcVersions[mfe] = "not found"; + console.log(` ${mfe}: MRC version not found`); + } + } else { + mrcVersions[mfe] = "package.json not found"; + console.log(` ${mfe}: package.json not found`); + } + } catch (error) { + mrcVersions[mfe] = "error"; + console.error(` Error getting MRC version for ${mfe}:`, error); + } + } + + // Step 5: Aggregate data + console.log(chalk.yellow("Step 5: Aggregating data...")); + const dataAggregator = new DataAggregator(); + const reportData = dataAggregator.aggregate(allUsages, config, allComponents, mrcVersions); + console.log(`Generated report data with ${reportData.componentStats.length} component statistics`); + console.log(`Found ${reportData.unusedComponents.length} unused components`); + + // Step 5: Generate report + console.log(chalk.yellow("Step 5: Generating report...")); + const outputPath = path.join(outputDir, `mrc-maas-ui-usage-report.${outputFormat}`); + + let outputFormats: string[]; + if (Array.isArray(options.format)) { + outputFormats = options.format; + } else if (typeof options.format === "string") { + // Split by comma and trim whitespace from each part + outputFormats = options.format + .split(",") + .map((format) => format.trim()) + .filter(Boolean); + } else { + // Handle cases where format might be undefined or null, default to ['html'] + outputFormats = ["html"]; + } + + for (const format of outputFormats) { + let currentOutputPath = path.join(outputDir, `mrc-maas-ui-usage-report.${format}`); + + if (format === "html") { + const htmlReporter = new HtmlReporter(); + await htmlReporter.generateReport(reportData, currentOutputPath); + console.log(`HTML report generated at ${currentOutputPath}`); + } else if (format === "json") { + const jsonOutput = JSON.stringify(reportData, null, 2); + require("fs").writeFileSync(currentOutputPath, jsonOutput); + console.log(`JSON report generated at ${currentOutputPath}`); + } else if (format === "yaml") { + const yamlOutput = yaml.dump(reportData, { indent: 2 }); + require("fs").writeFileSync(currentOutputPath, yamlOutput); + console.log(`YAML report generated at ${currentOutputPath}`); + } else if (format === "csv") { + console.error("CSV format not yet implemented"); + // Optionally, you could decide to exit or continue if other formats are requested + } else { + console.error(`Unsupported format: ${format}`); + } + } + + console.log(chalk.green("Report generation completed successfully!")); + } catch (error) { + console.error(chalk.red("Error generating report:"), error); + process.exit(1); + } +} + +// Run the main function +main(); diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/src/parser/componentParser.ts b/tools/archived-tools/mrc-usage-report-maas-ui/src/parser/componentParser.ts new file mode 100644 index 000000000..409a9a273 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/src/parser/componentParser.ts @@ -0,0 +1,245 @@ +/* eslint-disable no-console */ +/* eslint-disable sonarjs/cognitive-complexity */ +import * as parser from "@babel/parser"; +import traverse from "@babel/traverse"; +import * as t from "@babel/types"; +import fs from "fs"; +import path from "path"; +import { ComponentProp } from "../types"; +import { MrcSourceType } from "../types"; + +// Represents a single found instance of a component +export interface FoundComponentInstance { + componentName: string; + filePath: string; + mfe: string; + lineNumber: number; + props: ComponentProp[]; +} + +/** + * Parses files for MRC component usage + */ +export class ComponentParser { + private mrcComponentNames: Set; + private mrcFileNames: Set; + private mrcPath: string; + private mrcSourceType: MrcSourceType; + private exportNameToFileName: Map; + private fileNameToExportName: Map; + + constructor(mrcPath: string, mrcSourceType: MrcSourceType = "local") { + this.mrcPath = mrcPath; + this.mrcSourceType = mrcSourceType; + this.mrcComponentNames = new Set(); + this.mrcFileNames = new Set(); + this.exportNameToFileName = new Map(); + this.fileNameToExportName = new Map(); + } + + /** + * Initializes the parser by loading all MRC component names + * @param componentInfo Array of MRC component information with exported names + */ + async initialize(componentInfo: { name: string; path: string }[]): Promise { + for (const component of componentInfo) { + // Get both the exported name and the file name + const exportedName = component.name; + const fileName = path.basename(component.path); + const fileNameWithoutExt = path.parse(fileName).name; + + // Add both to our sets + this.mrcComponentNames.add(exportedName); + this.mrcFileNames.add(fileNameWithoutExt); + + // Create mappings between them + this.exportNameToFileName.set(exportedName, fileNameWithoutExt); + this.fileNameToExportName.set(fileNameWithoutExt, exportedName); + } + + console.log(`Loaded ${this.mrcComponentNames.size} MRC component names and ${this.mrcFileNames.size} file names`); + + // Log some examples of the mappings for debugging + let count = 0; + for (const [exportName, fileName] of this.exportNameToFileName.entries()) { + if (exportName !== fileName) { + console.log(`Export mapping: ${exportName} -> ${fileName}`); + count++; + if (count >= 5) break; // Just log a few examples + } + } + } + + /** + * Parses a file for MRC component usage + * @param filePath Path to the file to parse + * @param mfe The MFE the file belongs to + * @returns Array of component usages found in the file + */ + async parseFile(filePath: string, mfe: string): Promise { + try { + const content = fs.readFileSync(filePath, "utf-8"); + const usages: FoundComponentInstance[] = []; + + // Parse the file + const ast = parser.parse(content, { + sourceType: "module", + plugins: ["jsx", "typescript", "decorators-legacy"] + }); + + // Track imported MRC components + const importedComponents = new Map(); + // Track imported components that are considered used just by being imported + const importedComponentUsages = new Map(); + + // Traverse the AST + traverse(ast, { + // Find imports from @SolaceDev/maas-react-components + ImportDeclaration: (path) => { + const source = path.node.source.value; + if (source === "@SolaceDev/maas-react-components") { + // Get the line number of the import declaration + const lineNumber = path.node.loc?.start.line || 0; + + path.node.specifiers.forEach((specifier) => { + if (t.isImportSpecifier(specifier) && t.isIdentifier(specifier.imported)) { + const importedName = specifier.imported.name; + const localName = specifier.local.name; + + // Check if this is an MRC component by exported name or file name + let componentName = importedName; + let isComponent = false; + + // First check if it's a direct match with an exported name + if (this.mrcComponentNames.has(importedName)) { + isComponent = true; + } + // Then check if it matches a file name and get the corresponding export name + else if (this.mrcFileNames.has(importedName) && this.fileNameToExportName.has(importedName)) { + componentName = this.fileNameToExportName.get(importedName)!; + isComponent = true; + console.log(`Found component by file name: ${importedName} -> ${componentName}`); + } + + if (isComponent) { + importedComponents.set(localName, componentName); + + // Consider the component as used just by being imported + // This handles cases where components are imported but not used as JSX elements + importedComponentUsages.set(componentName, { + componentName, + filePath, + mfe, + lineNumber, + props: [] + }); + } + } + }); + } + }, + + // Find JSX elements that use MRC components + JSXOpeningElement: (path) => { + const elementName = path.node.name; + let componentName: string | null = null; + + // Handle different types of JSX element names + if (t.isJSXIdentifier(elementName)) { + const localName = elementName.name; + componentName = importedComponents.get(localName) || null; + } + + // If this is an MRC component, extract usage information + if (componentName) { + const props: ComponentProp[] = []; + + // Extract props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name)) { + const propName = attr.name.name; + let propType = "unknown"; + let propValue = ""; // value is always a string now + + if (attr.value) { + if (t.isStringLiteral(attr.value)) { + propType = "string"; + propValue = attr.value.value; + } else if (t.isJSXExpressionContainer(attr.value) && !t.isJSXEmptyExpression(attr.value.expression)) { + const expression = attr.value.expression; + if (t.isNumericLiteral(expression)) { + propType = "number"; + propValue = String(expression.value); + } else if (t.isBooleanLiteral(expression)) { + propType = "boolean"; + propValue = String(expression.value); + } else if (t.isNullLiteral(expression)) { + propType = "null"; + propValue = "null"; + } else if (t.isIdentifier(expression)) { + propType = "variable"; + propValue = expression.name; + } else { + if (t.isObjectExpression(expression)) { + propType = "object"; + } else if (t.isArrayExpression(expression)) { + propType = "array"; + } else if (t.isArrowFunctionExpression(expression) || t.isFunctionExpression(expression)) { + propType = "function"; + } else if (t.isJSXElement(expression) || t.isJSXFragment(expression)) { + propType = "jsx"; + } else { + propType = "expression"; + } + propValue = content.substring(expression.start!, expression.end!); + } + } + } else { + // Boolean prop without value + propType = "boolean"; + propValue = "true"; + } + + props.push({ + name: propName, + type: propType, + value: propValue + }); + } else if (t.isJSXSpreadAttribute(attr)) { + const argument = attr.argument; + props.push({ + name: "...", + type: "spread", + value: content.substring(argument.start!, argument.end!) + }); + } + }); + + // Get line number + const lineNumber = path.node.loc?.start.line || 0; + + // Add the usage + usages.push({ + componentName, + filePath, + mfe, + lineNumber, + props + }); + + // Remove from importedComponentUsages since we've found an actual JSX usage + importedComponentUsages.delete(componentName); + } + } + }); + + // Add all imported components that weren't used as JSX elements + usages.push(...importedComponentUsages.values()); + + return usages; + } catch (error) { + console.error(`Error parsing file ${filePath}:`, error); + return []; + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/src/reporter/htmlReporter.ts b/tools/archived-tools/mrc-usage-report-maas-ui/src/reporter/htmlReporter.ts new file mode 100644 index 000000000..d8fdf4f47 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/src/reporter/htmlReporter.ts @@ -0,0 +1,744 @@ +import fs from "fs"; +import path from "path"; +import { ReportData } from "../types"; + +/** + * Generates an HTML report from the component usage data + */ +export class HtmlReporter { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + async generateReport(reportData: ReportData, outputPath: string): Promise { + const html = this.generateHtml(reportData); + + // Create the output directory if it doesn't exist + const outputDir = path.dirname(outputPath); + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + // Write the HTML to the output file + fs.writeFileSync(outputPath, html); + + // console.log(`HTML report generated at ${outputPath}`); + } + + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + private generateHtml(reportData: ReportData): string { + const { componentStats, overallStats, generatedAt, config } = reportData; + + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

${config.mfes.length}

+

${config.mfes.join(", ")}

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ + + + + + +
+ +

Component Details

+ ${componentStats + .map( + (stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map( + ([mfe, count]) => ` + + + + + ` + ) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${ + Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map( + ([prop, count]) => ` + + + + + ` + ) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : "" + } + +

Instances (${stats.instances.length})

+ ${stats.instances + .map( + (instance) => ` +
+

File: ${instance.filePath}:${instance.line}

+ + + + + + + + + ${instance.props + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameValue
${prop.name}
${prop.value}
+
+ ` + ) + .join("")} +
+
+ ` + ) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map( + ([mfe, count]) => ` + + + + + + ` + ) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map( + (comp) => ` + + + + + ` + ) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map( + ([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map( + (comp) => ` + + + + ` + ) + .join("")} + +
Component Name
${comp}
+
+
+ ` + ) + .join("")} +
+ + +
+ + + + + `; + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/src/scanner/fileScanner.ts b/tools/archived-tools/mrc-usage-report-maas-ui/src/scanner/fileScanner.ts new file mode 100644 index 000000000..ba472369a --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/src/scanner/fileScanner.ts @@ -0,0 +1,460 @@ +import path from "path"; +import fs from "fs"; +import { promisify } from "util"; +import { exec } from "child_process"; +import os from "os"; +import axios from "axios"; +import { MrcSourceType } from "../types"; + +const execPromise = promisify(exec); + +// Regular expression to match export statements like: +// export { default as ComponentName } from "./path/to/Component"; +const EXPORT_REGEX = /export\s*{\s*default\s+as\s+([A-Za-z0-9_]+)\s*}\s*from\s*["'](.+)["'];?/g; + +/** + * Scans for files in the specified MFEs + */ +export class FileScanner { + private basePath: string; + private mfes: string[]; + private mrcSourceType: MrcSourceType; + private mrcGithubUrl?: string; + private mrcGithubBranch: string; + private tempDir?: string; + + constructor(basePath: string, mfes: string[], mrcSourceType: MrcSourceType = "local", mrcGithubUrl?: string, mrcGithubBranch: string = "main") { + this.basePath = basePath; + this.mfes = mfes; + this.mrcSourceType = mrcSourceType; + this.mrcGithubUrl = mrcGithubUrl; + this.mrcGithubBranch = mrcGithubBranch; + } + + /** + * Scans for all TypeScript and JavaScript files in the specified MFEs + * @returns Array of file paths + */ + async scanForFiles(): Promise { + const allFiles: string[] = []; + + for (const mfe of this.mfes) { + const mfePath = path.join(this.basePath, "micro-frontends", mfe); + + // Check if the MFE directory exists + if (!fs.existsSync(mfePath)) { + console.warn(`MFE directory not found: ${mfePath}`); + continue; + } + + try { + // Use find command to locate all TypeScript and JavaScript files + const { stdout } = await execPromise( + `find ${mfePath}/src -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + + return allFiles; + } + + /** + * Extracts owner and repo from GitHub URL + * @param githubUrl GitHub repository URL + * @returns Object containing owner and repo + */ + private parseGithubUrl(githubUrl: string): { owner: string; repo: string } { + // Handle URLs like https://github.com/owner/repo + const urlMatch = githubUrl.match(/github\.com\/([^\/]+)\/([^\/]+)/); + if (urlMatch) { + return { + owner: urlMatch[1], + repo: urlMatch[2].replace(/\.git$/, "") // Remove .git if present + }; + } + throw new Error(`Invalid GitHub URL: ${githubUrl}`); + } + + /** + * Gets the GitHub authentication token from environment variable + * @returns GitHub authentication token or undefined if not available + */ + private getGithubToken(): string | undefined { + return process.env.GITHUB_TOKEN; + } + + /** + * Fetches a file from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path File path within the repository + * @param branch Branch name (default: main) + * @returns File content as string + */ + private async fetchFileFromGithub(owner: string, repo: string, path: string, branch?: string): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; + console.log(`Fetching file from GitHub: ${url}`); + + const headers: Record = {}; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + return response.data; + } catch (error) { + console.error(`Error fetching file from GitHub:`, error); + throw new Error(`Failed to fetch file from GitHub: ${path}`); + } + } + + /** + * Fetches directory contents from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path Directory path within the repository + * @param branch Branch name (default: main) + * @returns Array of file paths + */ + private async fetchDirectoryFromGithub(owner: string, repo: string, path: string, branch?: string): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${path}?ref=${branch}`; + console.log(`Fetching directory from GitHub API: ${url}`); + + const headers: Record = { + Accept: "application/vnd.github.v3+json" + }; + + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + + // Process the response to extract file paths + const files: string[] = []; + const processItems = async (items: any[]) => { + for (const item of items) { + if (item.type === "file") { + files.push(item.path); + } else if (item.type === "dir") { + // Recursively fetch subdirectory contents + const subdirUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${item.path}?ref=${branch}`; + const subdirResponse = await axios.get(subdirUrl, { headers }); + await processItems(subdirResponse.data); + } + } + }; + + await processItems(response.data); + return files; + } catch (error) { + console.error(`Error fetching directory from GitHub:`, error); + throw new Error(`Failed to fetch directory from GitHub: ${path}`); + } + } + + /** + * Prepares the MRC path based on the source type + * @param mrcPath Path to the MRC repository (used for local source type) + * @returns The path to the MRC repository or null if using GitHub API + */ + async prepareMrcPath(mrcPath: string): Promise { + // If source type is local, use the provided path + if (this.mrcSourceType === "local") { + return mrcPath; + } + + // If source type is github, we'll use the GitHub API directly + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + console.log(`Using GitHub API for ${this.mrcGithubUrl}`); + return null; // Return null to indicate we're using GitHub API + } + + throw new Error("Invalid MRC source configuration"); + } + + /** + * Scans for all MRC components in the MRC repository + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component paths + */ + async scanForMrcComponents(mrcPath: string): Promise { + // If using GitHub API, we don't need the local path + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Scanning for MRC components in GitHub repository: ${owner}/${repo}`); + + // Fetch all files in the components directory + const files = await this.fetchDirectoryFromGithub(owner, repo, "src/components"); + + // Filter out unwanted components + const filteredFiles = files.filter((file) => { + // Only include TypeScript/TSX files + if (!file.endsWith(".ts") && !file.endsWith(".tsx")) return false; + // Exclude test and definition files + if (file.endsWith(".d.ts") || file.includes(".test.") || file.includes(".spec.")) return false; + + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + + // Check if the file is in the table/components subdirectory + const isInTableComponents = file.includes("/table/components/"); + + // Exclude components with "Props", "Utils", "utils", "Icon" in the name, + // React hooks (starting with "use"), and files in table/components subdirectory + const shouldExclude = + componentName.includes("Props") || + componentName.includes("Utils") || + componentName.toLowerCase().includes("utils") || + componentName.includes("Icon") || + componentName.startsWith("use") || + isInTableComponents; + + return !shouldExclude; + }); + + console.log(`Found ${filteredFiles.length} component files in GitHub repository`); + return filteredFiles; + } catch (error) { + console.error(`Error scanning MRC components from GitHub:`, error); + return []; + } + } + + // If using local path + // Prepare the MRC path based on the source type + const actualMrcPath = await this.prepareMrcPath(mrcPath); + + if (actualMrcPath) { + const componentsPath = path.join(actualMrcPath, "src", "components"); + + // Check if the components directory exists + if (!fs.existsSync(componentsPath)) { + throw new Error(`MRC components directory not found: ${componentsPath}`); + } + + try { + // Use find command to locate all component files + const { stdout } = await execPromise(`find ${componentsPath} -type f \\( -name "*.ts" -o -name "*.tsx" \\) -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"`); + + // Filter out unwanted components + const allFiles = stdout.trim().split("\n").filter(Boolean); + const filteredFiles = allFiles.filter((file) => { + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + + // Check if the file is in the table/components subdirectory + const isInTableComponents = file.includes("/table/components/"); + + // Exclude components with "Props", "Utils", "utils", "Icon" in the name, + // React hooks (starting with "use"), and files in table/components subdirectory + const shouldExclude = + componentName.includes("Props") || + componentName.includes("Utils") || + componentName.toLowerCase().includes("utils") || + componentName.includes("Icon") || + componentName.startsWith("use") || + isInTableComponents; + + return !shouldExclude; + }); + + console.log(`Filtered out ${allFiles.length - filteredFiles.length} components (Props, Utils/utils, Icon, hooks, table/components)`); + + return filteredFiles; + } catch (error) { + console.error(`Error scanning MRC components:`, error); + return []; + } + } + + throw new Error("Invalid MRC source configuration"); + } + + /** + * Gets information about MRC components + * @param componentFiles Array of component file paths + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component information + */ + async getMrcComponentInfo(componentFiles: string[], mrcPath: string): Promise<{ name: string; path: string }[]> { + // Get export mappings from index.tsx + const exportMappings = await this.getExportMappings(mrcPath); + + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + // For GitHub, we need to match based on the relative path within the repository + return componentFiles.map((file) => { + // Try to find the export name for this file + for (const [exportName, relativePath] of exportMappings) { + // The file path from GitHub API will be something like "src/components/Button/Button.tsx" + // The relativePath from index.tsx will be something like "./components/Button/Button" + // We need to normalize them for comparison + const normalizedFilePath = file.replace(/\.tsx?$/, ""); // Remove extension + const normalizedRelativePath = relativePath.replace(/^\.\//, ""); // Remove leading ./ + + if (normalizedFilePath.endsWith(normalizedRelativePath)) { + return { + name: exportName, + path: file + }; + } + } + + // Fallback to using the file name if no export mapping is found + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + return { + name: componentName, + path: file + }; + }); + } else { + // For local path, use the original approach + // Create a mapping from file path to exported component name + const filePathToExportName = new Map(); + + for (const [exportName, relativePath] of exportMappings) { + // Convert relative path to absolute path + const absolutePath = path.resolve(path.join(mrcPath, "src"), relativePath); + filePathToExportName.set(absolutePath, exportName); + } + + return componentFiles.map((file) => { + // Check if we have an export mapping for this file + const resolvedPath = path.resolve(file); + + // Try to find the export name for this file + for (const [filePath, exportName] of filePathToExportName.entries()) { + // Need to handle both with and without file extension + const filePathWithoutExt = filePath.replace(/\.[^/.]+$/, ""); + const resolvedPathWithoutExt = resolvedPath.replace(/\.[^/.]+$/, ""); + + if (resolvedPath === filePath || resolvedPathWithoutExt === filePathWithoutExt) { + return { + name: exportName, + path: file + }; + } + } + + // Fallback to using the file name if no export mapping is found + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + return { + name: componentName, + path: file + }; + }); + } + } + + /** + * Extracts export mappings from the MRC index.tsx file + * @param mrcPath Path to the MRC repository + * @returns Map of export name to relative file path + */ + private async getExportMappings(mrcPath: string): Promise> { + const mappings = new Map(); + let content: string; + + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Fetching index.tsx from GitHub repository: ${owner}/${repo}`); + content = await this.fetchFileFromGithub(owner, repo, "src/index.tsx"); + console.log(`Successfully fetched index.tsx from GitHub`); + console.log(`First 500 characters of content: ${content.substring(0, 500)}...`); + } catch (error) { + console.error(`Error fetching index.tsx from GitHub:`, error); + return mappings; + } + } else { + // If using local path + const indexPath = path.join(mrcPath, "src", "index.tsx"); + if (!fs.existsSync(indexPath)) { + console.warn(`MRC index.tsx not found at ${indexPath}`); + return mappings; + } + + try { + content = fs.readFileSync(indexPath, "utf-8"); + console.log(`Reading MRC index.tsx from ${indexPath}`); + console.log(`First 500 characters of content: ${content.substring(0, 500)}...`); + } catch (error) { + console.error(`Error reading index.tsx:`, error); + return mappings; + } + } + + try { + let match; + let matchCount = 0; + let excludedCount = 0; + + while ((match = EXPORT_REGEX.exec(content)) !== null) { + const exportName = match[1]; + const relativePath = match[2]; + + // Check if the relative path is in the table/components subdirectory + const isInTableComponents = relativePath.includes("/table/components/"); + + // Exclude components with "Props", "Utils", "utils", "Icon" in the name, + // React hooks (starting with "use"), and components from table/components subdirectory + const shouldExclude = + exportName.includes("Props") || + exportName.includes("Utils") || + exportName.toLowerCase().includes("utils") || + exportName.includes("Icon") || + exportName.startsWith("use") || + isInTableComponents; + + if (shouldExclude) { + excludedCount++; + continue; + } + + mappings.set(exportName, relativePath); + matchCount++; + + // Log the first few matches for debugging + if (matchCount <= 5) { + console.log(`Export mapping found: ${exportName} from ${relativePath}`); + } + } + + console.log(`Found ${mappings.size} export mappings in index.tsx (excluded ${excludedCount} Props/Utils/Icon/hooks)`); + + // Log a few examples of mappings where the export name differs from the file name + let diffCount = 0; + for (const [exportName, relativePath] of mappings.entries()) { + const fileName = path.basename(relativePath); + const fileNameWithoutExt = path.parse(fileName).name; + + if (exportName !== fileNameWithoutExt) { + console.log(`Different naming: Export ${exportName} -> File ${fileNameWithoutExt}`); + diffCount++; + if (diffCount >= 5) break; + } + } + + return mappings; + } catch (error) { + console.error(`Error parsing MRC index.tsx:`, error); + return mappings; + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/src/types.ts b/tools/archived-tools/mrc-usage-report-maas-ui/src/types.ts new file mode 100644 index 000000000..7e813660a --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/src/types.ts @@ -0,0 +1,124 @@ +/** + * Types for MRC Usage Report + */ + +// Source type for MRC components +export type MrcSourceType = "local" | "github"; + +// Configuration for the analysis +export interface AnalysisConfig { + // MFEs to analyze (excluding api-products as requested) + mfes: string[]; + // Path to the MRC repository + mrcPath: string; + // Output directory for the report + outputDir: string; + // Output format (html, json, yaml, csv, etc.) + outputFormat: "html" | "json" | "yaml" | "csv"; + // Source type for MRC components + mrcSourceType: MrcSourceType; + // GitHub repository URL for MRC components + mrcGithubUrl?: string; + // GitHub branch name for MRC components + mrcGithubBranch?: string; +} + +// Represents a component from the MRC library +export interface MrcComponent { + name: string; + path: string; + // Additional metadata about the component + metadata?: { + description?: string; + category?: string; + }; +} + +// Represents a prop passed to a component +export interface ComponentProp { + name: string; + value: string; // The value of the prop + type?: string; // This can remain as is +} + +// Represents a single instance of a component being used +export interface ComponentInstance { + filePath: string; + line: number; + props: ComponentProp[]; +} + +// Represents the aggregated usage data for a component +export interface ComponentUsage { + component: string; + count: number; + instances: ComponentInstance[]; +} + +// Aggregated data for a component +export interface ComponentStats { + componentName: string; + // Total number of usages across all MFEs + totalUsages: number; + // Usages by MFE + usagesByMfe: Record; + // Most common props + commonProps: { + name: string; + count: number; + }[]; + // Files where the component is used + files: string[]; + // Customization stats + customization: { + styledComponentCount: number; + customStylesCount: number; + overriddenPropertiesCounts: Record; + }; + // All instances of the component + instances: ComponentInstance[]; +} + +// The final report data +export interface ReportData { + // When the report was generated + generatedAt: string; + // Configuration used for the analysis + config: AnalysisConfig; + // MRC version information by MFE + mrcVersions: Record; + // Stats for each component + componentStats: ComponentStats[]; + // List of unused components + unusedComponents: { + // Component name + name: string; + // Component path + path: string; + }[]; + // Unused components by MFE + unusedComponentsByMfe: Record; + // Overall stats + overallStats: { + // Total number of component usages + totalUsages: number; + // Most used components + mostUsedComponents: { + name: string; + count: number; + }[]; + // Most used props + mostUsedProps: { + name: string; + count: number; + }[]; + // MFEs with the most component usages + mfeUsages: Record; + // Total number of unused components + totalUnusedComponents: number; + }; + // Raw data for debugging or further analysis + rawData?: { + componentUsages: ComponentUsage[]; + }; +} diff --git a/tools/archived-tools/mrc-usage-report-maas-ui/tsconfig.json b/tools/archived-tools/mrc-usage-report-maas-ui/tsconfig.json new file mode 100644 index 000000000..6fdf8480b --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-maas-ui/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "**/*.spec.ts"] +} diff --git a/tools/archived-tools/mrc-usage-report-merger/build/htmlGenerator.js b/tools/archived-tools/mrc-usage-report-merger/build/htmlGenerator.js new file mode 100644 index 000000000..4d2223fb1 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/build/htmlGenerator.js @@ -0,0 +1,637 @@ +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.HtmlGenerator = void 0; +const fs_1 = __importDefault(require("fs")); +const path_1 = __importDefault(require("path")); +/** + * Generates an HTML report from the component usage data + */ +class HtmlGenerator { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + async generateReport(reportData, outputPath) { + const html = this.generateHtml(reportData); + // Create the output directory if it doesn't exist + const outputDir = path_1.default.dirname(outputPath); + if (!fs_1.default.existsSync(outputDir)) { + fs_1.default.mkdirSync(outputDir, { recursive: true }); + } + // Write the HTML to the output file + fs_1.default.writeFileSync(outputPath, html); + console.log(`HTML report generated at ${outputPath}`); + } + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + generateHtml(reportData) { + const { componentStats, overallStats, generatedAt, config } = reportData; + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

${config.mfes.length}

+

${config.mfes.join(", ")}

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ ${componentStats + .map((stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map(([mfe, count]) => ` + + + + + `) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map((prop) => ` + + + + + `) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map(([prop, count]) => ` + + + + + `) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : ""} + +

Files (${stats.files.length})

+
    + ${stats.files.map((file) => `
  • ${file}
  • `).join("")} +
+
+
+ `) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map(([mfe, count]) => ` + + + + + + `) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map((comp) => ` + + + + + `) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map(([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map((comp) => ` + + + + `) + .join("")} + +
Component Name
${comp}
+
+
+ `) + .join("")} +
+ + +
+ + + + + `; + } +} +exports.HtmlGenerator = HtmlGenerator; diff --git a/tools/archived-tools/mrc-usage-report-merger/build/index.js b/tools/archived-tools/mrc-usage-report-merger/build/index.js new file mode 100644 index 000000000..573c0b023 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/build/index.js @@ -0,0 +1,68 @@ +#!/usr/bin/env node +"use strict"; +var __importDefault = (this && this.__importDefault) || function (mod) { + return (mod && mod.__esModule) ? mod : { "default": mod }; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +const commander_1 = require("commander"); +const path_1 = __importDefault(require("path")); +const chalk_1 = __importDefault(require("chalk")); +const fs_1 = __importDefault(require("fs")); +const merger_1 = require("./merger"); +const htmlGenerator_1 = require("./htmlGenerator"); +// Define the program +const program = new commander_1.Command(); +program + .name("mrc-report-merger") + .description("Merge multiple MRC usage report JSON files and generate a combined HTML report") + .version("1.0.1") + .argument("", "Paths to the MRC usage report JSON files to merge") + .option("-o, --output-json ", "Output path for the merged JSON report", "merged-mrc-usage-report.json") + .option("-h, --output-html ", "Output path for the merged HTML report", "merged-mrc-usage-report.html"); +program.parse(process.argv); +const options = program.opts(); +const jsonFiles = program.args; +async function main() { + try { + console.log(chalk_1.default.blue("MRC Report Merger Tool")); + console.log(chalk_1.default.gray("------------------------")); + if (jsonFiles.length < 2) { + console.error(chalk_1.default.red("Error: At least two JSON files are required for merging.")); + process.exit(1); + } + const resolvedJsonFiles = jsonFiles.map((file) => path_1.default.resolve(file)); + const outputJsonPath = path_1.default.resolve(options.outputJson); + const outputHtmlPath = path_1.default.resolve(options.outputHtml); + console.log(chalk_1.default.yellow("Configuration:")); + resolvedJsonFiles.forEach((file) => console.log(` Input JSON: ${file}`)); + console.log(` Output JSON: ${outputJsonPath}`); + console.log(` Output HTML: ${outputHtmlPath}`); + console.log(""); + const reports = []; + for (const filePath of resolvedJsonFiles) { + if (!fs_1.default.existsSync(filePath)) { + console.error(chalk_1.default.red(`Error: Report not found at ${filePath}`)); + process.exit(1); + } + reports.push(JSON.parse(fs_1.default.readFileSync(filePath, "utf8"))); + } + // Merge reports + console.log(chalk_1.default.yellow("Merging reports...")); + const reportMerger = new merger_1.ReportMerger(); + const mergedReportData = reportMerger.mergeReports(reports); + console.log(chalk_1.default.green("Reports merged successfully.")); + // Save merged JSON + fs_1.default.writeFileSync(outputJsonPath, JSON.stringify(mergedReportData, null, 2)); + console.log(chalk_1.default.green(`Merged JSON report generated at ${outputJsonPath}`)); + // Generate HTML from merged JSON + const htmlGenerator = new htmlGenerator_1.HtmlGenerator(); + await htmlGenerator.generateReport(mergedReportData, outputHtmlPath); + console.log(chalk_1.default.green(`Merged HTML report generated at ${outputHtmlPath}`)); + console.log(chalk_1.default.green("Tool execution completed successfully!")); + } + catch (error) { + console.error(chalk_1.default.red("Error during tool execution:"), error); + process.exit(1); + } +} +main(); diff --git a/tools/archived-tools/mrc-usage-report-merger/build/merger.js b/tools/archived-tools/mrc-usage-report-merger/build/merger.js new file mode 100644 index 000000000..d96f193ed --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/build/merger.js @@ -0,0 +1,145 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.ReportMerger = void 0; +class ReportMerger { + mergeReports(reports) { + if (reports.length === 0) { + throw new Error("Cannot merge an empty list of reports."); + } + if (reports.length === 1) { + return reports[0]; + } + // Deep copy the initial report to avoid modifying the original object + const initialReport = reports[0]; + let mergedReport = JSON.parse(JSON.stringify(initialReport)); + mergedReport.generatedAt = new Date().toISOString(); + for (let i = 1; i < reports.length; i++) { + const nextReport = reports[i]; + mergedReport = { + generatedAt: new Date().toISOString(), // Use current time for merged report + config: this.mergeConfigs(mergedReport.config, nextReport.config), + mrcVersions: { ...mergedReport.mrcVersions, ...nextReport.mrcVersions }, // Later versions overwrite earlier ones + componentStats: this.mergeComponentStats(mergedReport.componentStats, nextReport.componentStats), + unusedComponents: this.mergeUnusedComponents(mergedReport.unusedComponents, nextReport.unusedComponents), + unusedComponentsByMfe: this.mergeUnusedComponentsByMfe(mergedReport.unusedComponentsByMfe, nextReport.unusedComponentsByMfe), + overallStats: {}, // Will be recalculated + rawData: { + componentUsages: [ + ...mergedReport.rawData.componentUsages, + ...nextReport.rawData.componentUsages + ] + } + }; + } + // Recalculate overallStats based on the final merged data + mergedReport.overallStats = this.recalculateOverallStats(mergedReport); + return mergedReport; + } + mergeConfigs(config1, config2) { + const mergedMfes = Array.from(new Set([...config1.mfes, ...config2.mfes])); + return { + ...config1, // Prefer config1 (maas-ops-ui) for other properties + mfes: mergedMfes + }; + } + mergeComponentStats(stats1, stats2) { + const mergedStatsMap = new Map(); + [...stats1, ...stats2].forEach((stats) => { + if (mergedStatsMap.has(stats.componentName)) { + const existingStats = mergedStatsMap.get(stats.componentName); + existingStats.totalUsages += stats.totalUsages; + // Merge usagesByMfe + for (const mfe in stats.usagesByMfe) { + existingStats.usagesByMfe[mfe] = + (existingStats.usagesByMfe[mfe] || 0) + stats.usagesByMfe[mfe]; + } + // Merge commonProps + stats.commonProps.forEach((prop) => { + const existingProp = existingStats.commonProps.find((p) => p.name === prop.name); + if (existingProp) { + existingProp.count += prop.count; + } + else { + existingStats.commonProps.push({ ...prop }); + } + }); + // Merge files and deduplicate + existingStats.files = Array.from(new Set([...existingStats.files, ...stats.files])); + // Merge customization + existingStats.customization.styledComponentCount += + stats.customization.styledComponentCount; + existingStats.customization.customStylesCount += stats.customization.customStylesCount; + for (const prop in stats.customization.overriddenPropertiesCounts) { + existingStats.customization.overriddenPropertiesCounts[prop] = + (existingStats.customization.overriddenPropertiesCounts[prop] || 0) + + stats.customization.overriddenPropertiesCounts[prop]; + } + } + else { + // Deep copy the stats object to avoid modifying the original + mergedStatsMap.set(stats.componentName, JSON.parse(JSON.stringify(stats))); + } + }); + return Array.from(mergedStatsMap.values()); + } + mergeUnusedComponents(unused1, unused2) { + const allUnused = [...unused1, ...unused2]; + const uniqueUnused = new Map(); + allUnused.forEach((comp) => { + const key = `${comp.name}-${comp.path}`; + if (!uniqueUnused.has(key)) { + uniqueUnused.set(key, comp); + } + }); + return Array.from(uniqueUnused.values()); + } + mergeUnusedComponentsByMfe(unusedByMfe1, unusedByMfe2) { + const merged = {}; + // Add all from unusedByMfe1 + for (const mfe in unusedByMfe1) { + merged[mfe] = [...unusedByMfe1[mfe]]; + } + // Merge with unusedByMfe2 + for (const mfe in unusedByMfe2) { + if (merged[mfe]) { + merged[mfe] = Array.from(new Set([...merged[mfe], ...unusedByMfe2[mfe]])); + } + else { + merged[mfe] = [...unusedByMfe2[mfe]]; + } + } + return merged; + } + recalculateOverallStats(reportData) { + let totalUsages = 0; + const mfeUsages = {}; + const componentUsageMap = new Map(); + const propUsageMap = new Map(); + reportData.componentStats.forEach((compStat) => { + totalUsages += compStat.totalUsages; + componentUsageMap.set(compStat.componentName, compStat.totalUsages); + for (const mfe in compStat.usagesByMfe) { + mfeUsages[mfe] = (mfeUsages[mfe] || 0) + compStat.usagesByMfe[mfe]; + } + compStat.commonProps.forEach((prop) => { + propUsageMap.set(prop.name, (propUsageMap.get(prop.name) || 0) + prop.count); + }); + }); + const mostUsedComponents = Array.from(componentUsageMap.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); // Top 10 + const mostUsedProps = Array.from(propUsageMap.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); // Top 10 + return { + totalUsages: totalUsages, + mostUsedComponents: mostUsedComponents, + mostUsedProps: mostUsedProps, + mfeUsages: mfeUsages, + totalUnusedComponents: reportData.unusedComponents.length + }; + } +} +exports.ReportMerger = ReportMerger; diff --git a/tools/archived-tools/mrc-usage-report-merger/build/types.js b/tools/archived-tools/mrc-usage-report-merger/build/types.js new file mode 100644 index 000000000..c8ad2e549 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/build/types.js @@ -0,0 +1,2 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); diff --git a/tools/archived-tools/mrc-usage-report-merger/package-lock.json b/tools/archived-tools/mrc-usage-report-merger/package-lock.json new file mode 100644 index 000000000..e4c42edb9 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/package-lock.json @@ -0,0 +1,73 @@ +{ + "name": "mrc-report-merger", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "mrc-report-merger", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "chalk": "^5.3.0", + "commander": "^11.1.0" + }, + "devDependencies": { + "@types/node": "^20.14.9", + "typescript": "^5.8.3" + } + }, + "node_modules/@types/node": { + "version": "20.19.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.1.tgz", + "integrity": "sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/tools/archived-tools/mrc-usage-report-merger/package.json b/tools/archived-tools/mrc-usage-report-merger/package.json new file mode 100644 index 000000000..06901d3b7 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/package.json @@ -0,0 +1,26 @@ +{ + "name": "mrc-report-merger", + "version": "1.0.0", + "description": "A tool to merge MRC usage reports and generate a combined HTML report.", + "main": "build/index.js", + "scripts": { + "build": "tsc", + "start": "node build/index.js" + }, + "keywords": [ + "mrc", + "report", + "merge", + "html" + ], + "author": "", + "license": "ISC", + "dependencies": { + "commander": "^11.1.0", + "chalk": "^5.3.0" + }, + "devDependencies": { + "typescript": "^5.8.3", + "@types/node": "^20.14.9" + } +} diff --git a/tools/archived-tools/mrc-usage-report-merger/src/htmlGenerator.ts b/tools/archived-tools/mrc-usage-report-merger/src/htmlGenerator.ts new file mode 100644 index 000000000..f62578ef1 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/src/htmlGenerator.ts @@ -0,0 +1,658 @@ +import fs from "fs"; +import path from "path"; +import { ReportData } from "./types"; + +/** + * Generates an HTML report from the component usage data + */ +export class HtmlGenerator { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + async generateReport(reportData: ReportData, outputPath: string): Promise { + const html = this.generateHtml(reportData); + + // Create the output directory if it doesn't exist + const outputDir = path.dirname(outputPath); + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + // Write the HTML to the output file + fs.writeFileSync(outputPath, html); + + console.log(`HTML report generated at ${outputPath}`); + } + + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + private generateHtml(reportData: ReportData): string { + const { componentStats, overallStats, generatedAt, config } = reportData; + + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

${config.mfes.length}

+

${config.mfes.join(", ")}

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ +
+ +

Component Details

+ ${componentStats + .map( + (stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map( + ([mfe, count]) => ` + + + + + ` + ) + .join("")} + +
MFEUsages
${mfe}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${ + Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map( + ([prop, count]) => ` + + + + + ` + ) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : "" + } + +

Files (${stats.files.length})

+
    + ${stats.files.map((file) => `
  • ${file}
  • `).join("")} +
+
+
+ ` + ) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map( + ([mfe, count]) => ` + + + + + + ` + ) + .join("")} + +
MFEComponent UsagesMRC Version
${mfe}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map( + (comp) => ` + + + + + ` + ) + .join("")} + +
Component NamePath
${comp.name}${comp.path}
+ +

Unused Components by MFE

+

These components are used in some MFEs but not in others. Consider standardizing component usage across MFEs.

+ + ${Object.entries(reportData.unusedComponentsByMfe) + .map( + ([mfe, components]) => ` +
+
+
+ ${mfe} + ${components.length} unused components +
+ +
+
+ + + + + + + + ${components + .map( + (comp) => ` + + + + ` + ) + .join("")} + +
Component Name
${comp}
+
+
+ ` + ) + .join("")} +
+ + +
+ + + + + `; + } +} diff --git a/tools/archived-tools/mrc-usage-report-merger/src/index.ts b/tools/archived-tools/mrc-usage-report-merger/src/index.ts new file mode 100644 index 000000000..8f1e3186a --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/src/index.ts @@ -0,0 +1,78 @@ +#!/usr/bin/env node + +import { Command } from "commander"; +import path from "path"; +import chalk from "chalk"; +import fs from "fs"; +import { ReportMerger } from "./merger"; +import { HtmlGenerator } from "./htmlGenerator"; +import { ReportData } from "./types"; + +// Define the program +const program = new Command(); + +program + .name("mrc-report-merger") + .description("Merge multiple MRC usage report JSON files and generate a combined HTML report") + .version("1.0.1") + .argument("", "Paths to the MRC usage report JSON files to merge") + .option("-o, --output-json ", "Output path for the merged JSON report", "merged-mrc-usage-report.json") + .option("-h, --output-html ", "Output path for the merged HTML report", "merged-mrc-usage-report.html"); + +program.parse(process.argv); + +const options = program.opts(); +const jsonFiles = program.args; + +async function main() { + try { + console.log(chalk.blue("MRC Report Merger Tool")); + console.log(chalk.gray("------------------------")); + + if (jsonFiles.length < 2) { + console.error(chalk.red("Error: At least two JSON files are required for merging.")); + process.exit(1); + } + + const resolvedJsonFiles = jsonFiles.map((file) => path.resolve(file)); + const outputJsonPath = path.resolve(options.outputJson); + const outputHtmlPath = path.resolve(options.outputHtml); + + console.log(chalk.yellow("Configuration:")); + resolvedJsonFiles.forEach((file) => console.log(` Input JSON: ${file}`)); + console.log(` Output JSON: ${outputJsonPath}`); + console.log(` Output HTML: ${outputHtmlPath}`); + console.log(""); + + const reports: ReportData[] = []; + for (const filePath of resolvedJsonFiles) { + if (!fs.existsSync(filePath)) { + console.error(chalk.red(`Error: Report not found at ${filePath}`)); + process.exit(1); + } + reports.push(JSON.parse(fs.readFileSync(filePath, "utf8"))); + } + + // Merge reports + console.log(chalk.yellow("Merging reports...")); + const reportMerger = new ReportMerger(); + const mergedReportData = reportMerger.mergeReports(reports); + console.log(chalk.green("Reports merged successfully.")); + + // Save merged JSON + fs.writeFileSync(outputJsonPath, JSON.stringify(mergedReportData, null, 2)); + console.log(chalk.green(`Merged JSON report generated at ${outputJsonPath}`)); + + // Generate HTML from merged JSON + const htmlGenerator = new HtmlGenerator(); + await htmlGenerator.generateReport(mergedReportData, outputHtmlPath); + console.log(chalk.green(`Merged HTML report generated at ${outputHtmlPath}`)); + + console.log(chalk.green("Tool execution completed successfully!")); + } catch (error) { + console.error(chalk.red("Error during tool execution:"), error); + process.exit(1); + } +} + +main(); diff --git a/tools/archived-tools/mrc-usage-report-merger/src/merger.ts b/tools/archived-tools/mrc-usage-report-merger/src/merger.ts new file mode 100644 index 000000000..9df8fd1a4 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/src/merger.ts @@ -0,0 +1,181 @@ +import { ReportData, ComponentStats, OverallStats, AnalysisConfig } from "./types"; + +export class ReportMerger { + public mergeReports(reports: ReportData[]): ReportData { + if (reports.length === 0) { + throw new Error("Cannot merge an empty list of reports."); + } + if (reports.length === 1) { + return reports[0]; + } + + // Deep copy the initial report to avoid modifying the original object + const initialReport = reports[0]; + let mergedReport: ReportData = JSON.parse(JSON.stringify(initialReport)); + mergedReport.generatedAt = new Date().toISOString(); + + for (let i = 1; i < reports.length; i++) { + const nextReport = reports[i]; + mergedReport = { + generatedAt: new Date().toISOString(), // Use current time for merged report + config: this.mergeConfigs(mergedReport.config, nextReport.config), + mrcVersions: { ...mergedReport.mrcVersions, ...nextReport.mrcVersions }, // Later versions overwrite earlier ones + componentStats: this.mergeComponentStats( + mergedReport.componentStats, + nextReport.componentStats + ), + unusedComponents: this.mergeUnusedComponents( + mergedReport.unusedComponents, + nextReport.unusedComponents + ), + unusedComponentsByMfe: this.mergeUnusedComponentsByMfe( + mergedReport.unusedComponentsByMfe, + nextReport.unusedComponentsByMfe + ), + overallStats: {} as OverallStats, // Will be recalculated + rawData: { + componentUsages: [ + ...mergedReport.rawData.componentUsages, + ...nextReport.rawData.componentUsages + ] + } + }; + } + + // Recalculate overallStats based on the final merged data + mergedReport.overallStats = this.recalculateOverallStats(mergedReport); + + return mergedReport; + } + + private mergeConfigs(config1: AnalysisConfig, config2: AnalysisConfig): AnalysisConfig { + const mergedMfes = Array.from(new Set([...config1.mfes, ...config2.mfes])); + return { + ...config1, // Prefer config1 (maas-ops-ui) for other properties + mfes: mergedMfes + }; + } + + private mergeComponentStats( + stats1: ComponentStats[], + stats2: ComponentStats[] + ): ComponentStats[] { + const mergedStatsMap = new Map(); + + [...stats1, ...stats2].forEach((stats) => { + if (mergedStatsMap.has(stats.componentName)) { + const existingStats = mergedStatsMap.get(stats.componentName)!; + existingStats.totalUsages += stats.totalUsages; + + // Merge usagesByMfe + for (const mfe in stats.usagesByMfe) { + existingStats.usagesByMfe[mfe] = + (existingStats.usagesByMfe[mfe] || 0) + stats.usagesByMfe[mfe]; + } + + // Merge commonProps + stats.commonProps.forEach((prop) => { + const existingProp = existingStats.commonProps.find((p) => p.name === prop.name); + if (existingProp) { + existingProp.count += prop.count; + } else { + existingStats.commonProps.push({ ...prop }); + } + }); + + // Merge files and deduplicate + existingStats.files = Array.from(new Set([...existingStats.files, ...stats.files])); + + // Merge customization + existingStats.customization.styledComponentCount += + stats.customization.styledComponentCount; + existingStats.customization.customStylesCount += stats.customization.customStylesCount; + for (const prop in stats.customization.overriddenPropertiesCounts) { + existingStats.customization.overriddenPropertiesCounts[prop] = + (existingStats.customization.overriddenPropertiesCounts[prop] || 0) + + stats.customization.overriddenPropertiesCounts[prop]; + } + } else { + // Deep copy the stats object to avoid modifying the original + mergedStatsMap.set(stats.componentName, JSON.parse(JSON.stringify(stats))); + } + }); + + return Array.from(mergedStatsMap.values()); + } + + private mergeUnusedComponents( + unused1: { name: string; path: string }[], + unused2: { name: string; path: string }[] + ): { name: string; path: string }[] { + const allUnused = [...unused1, ...unused2]; + const uniqueUnused = new Map(); + allUnused.forEach((comp) => { + const key = `${comp.name}-${comp.path}`; + if (!uniqueUnused.has(key)) { + uniqueUnused.set(key, comp); + } + }); + return Array.from(uniqueUnused.values()); + } + + private mergeUnusedComponentsByMfe( + unusedByMfe1: Record, + unusedByMfe2: Record + ): Record { + const merged: Record = {}; + + // Add all from unusedByMfe1 + for (const mfe in unusedByMfe1) { + merged[mfe] = [...unusedByMfe1[mfe]]; + } + + // Merge with unusedByMfe2 + for (const mfe in unusedByMfe2) { + if (merged[mfe]) { + merged[mfe] = Array.from(new Set([...merged[mfe], ...unusedByMfe2[mfe]])); + } else { + merged[mfe] = [...unusedByMfe2[mfe]]; + } + } + return merged; + } + + private recalculateOverallStats(reportData: ReportData): OverallStats { + let totalUsages = 0; + const mfeUsages: Record = {}; + const componentUsageMap = new Map(); + const propUsageMap = new Map(); + + reportData.componentStats.forEach((compStat) => { + totalUsages += compStat.totalUsages; + componentUsageMap.set(compStat.componentName, compStat.totalUsages); + + for (const mfe in compStat.usagesByMfe) { + mfeUsages[mfe] = (mfeUsages[mfe] || 0) + compStat.usagesByMfe[mfe]; + } + + compStat.commonProps.forEach((prop) => { + propUsageMap.set(prop.name, (propUsageMap.get(prop.name) || 0) + prop.count); + }); + }); + + const mostUsedComponents = Array.from(componentUsageMap.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); // Top 10 + + const mostUsedProps = Array.from(propUsageMap.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); // Top 10 + + return { + totalUsages: totalUsages, + mostUsedComponents: mostUsedComponents, + mostUsedProps: mostUsedProps, + mfeUsages: mfeUsages, + totalUnusedComponents: reportData.unusedComponents.length + }; + } +} diff --git a/tools/archived-tools/mrc-usage-report-merger/src/types.ts b/tools/archived-tools/mrc-usage-report-merger/src/types.ts new file mode 100644 index 000000000..0fd56c783 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/src/types.ts @@ -0,0 +1,72 @@ +export interface AnalysisConfig { + mfes: string[]; + mrcPath: string; + outputDir: string; + outputFormat: "html" | "json" | "yaml" | "csv"; + mrcSourceType: MrcSourceType; + mrcGithubUrl?: string; + mrcGithubBranch?: string; +} + +export type MrcSourceType = "local" | "github"; + +export interface ComponentUsage { + componentName: string; + filePath: string; + mfe: string; + lineNumber: number; + props: ComponentProp[]; + customization: { + styledComponent: boolean; + customStyles: boolean; + overriddenProperties: string[]; + }; +} + +export interface ComponentProp { + name: string; + type: string; + value?: any; + isFunction?: boolean; + isJSX?: boolean; + isSpread?: boolean; +} + +export interface ComponentStats { + componentName: string; + totalUsages: number; + usagesByMfe: Record; + commonProps: { name: string; count: number }[]; + files: string[]; + customization: { + styledComponentCount: number; + customStylesCount: number; + overriddenPropertiesCounts: Record; + }; +} + +export interface ReportData { + generatedAt: string; + config: AnalysisConfig; + mrcVersions: Record; + componentStats: ComponentStats[]; + unusedComponents: { name: string; path: string }[]; + unusedComponentsByMfe: Record; + overallStats: OverallStats; + rawData: { + componentUsages: ComponentUsage[]; + }; +} + +export interface OverallStats { + totalUsages: number; + mostUsedComponents: { name: string; count: number }[]; + mostUsedProps: { name: string; count: number }[]; + mfeUsages: Record; + totalUnusedComponents: number; +} + +export interface MrcComponentInfo { + name: string; + path: string; +} diff --git a/tools/archived-tools/mrc-usage-report-merger/tsconfig.json b/tools/archived-tools/mrc-usage-report-merger/tsconfig.json new file mode 100644 index 000000000..8522fcea8 --- /dev/null +++ b/tools/archived-tools/mrc-usage-report-merger/tsconfig.json @@ -0,0 +1,14 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "commonjs", + "outDir": "./build", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true + }, + "include": ["src/**/*.ts"], + "exclude": ["node_modules", "**/*.spec.ts"] +} diff --git a/tools/mrc-usage-mcp/.gitignore b/tools/mrc-usage-mcp/.gitignore new file mode 100644 index 000000000..7f106e9fa --- /dev/null +++ b/tools/mrc-usage-mcp/.gitignore @@ -0,0 +1,4 @@ +node_modules/ +build/ +*.log +.env* \ No newline at end of file diff --git a/tools/mrc-usage-mcp/Dockerfile b/tools/mrc-usage-mcp/Dockerfile new file mode 100644 index 000000000..52550174b --- /dev/null +++ b/tools/mrc-usage-mcp/Dockerfile @@ -0,0 +1,42 @@ +# Use an official Node.js runtime as a parent image +FROM node:20-alpine AS builder + +# Set the working directory in the container +WORKDIR /app + +# Copy package.json and package-lock.json (or npm-shrinkwrap.json) +COPY package.json package-lock.json* ./ + +# Copy tsconfig.json and the source code BEFORE running npm ci. +# This ensures that when "npm ci" triggers the "prepare" script (which runs "npm run build"), +# tsc has access to the necessary configuration and source files. +COPY tsconfig.json ./ +COPY src ./src/ + +# Install project dependencies. +# Using ci for reproducible builds. +# This will install ALL dependencies (including devDependencies) first. +RUN npm ci + +# Now that dependencies (including typescript) are installed and source files are present, +# explicitly run the build script. +RUN npm run build + +# After build, prune dev dependencies to keep the production image lean. +RUN npm prune --production + +# New stage for a smaller production image +FROM node:20-alpine + +WORKDIR /app + +# Copy built artifacts and production dependencies from the builder stage +COPY --from=builder /app/build ./build +COPY --from=builder /app/node_modules ./node_modules +COPY --from=builder /app/package.json ./package.json + +# The server listens on stdio, so no EXPOSE needed + +# Command to run the MCP server +# This corresponds to the "bin" field in package.json: "./build/index.js" +CMD ["node", "./build/index.js"] diff --git a/tools/mrc-usage-mcp/README.md b/tools/mrc-usage-mcp/README.md new file mode 100644 index 000000000..bb5c52384 --- /dev/null +++ b/tools/mrc-usage-mcp/README.md @@ -0,0 +1,664 @@ +# MRC Usage MCP Server + +This server provides tools to query MRC component usage. + +## Available Tools + +- `mrc_analyze_component_usage`: Analyze how MaaS React Components are used across the codebase +- `mrc_get_all_components`: Retrieve a comprehensive list of all MaaS React Components +- `mrc_find_component_dependencies`: Find dependencies and relationships between components +- `mrc_usage_diagnostics`: Get diagnostic information about the MRC usage analysis system +- `get_components_by_application`: Get components used in a specific application +- `get_components_by_mfe`: Get components used in a specific MFE (now only requires MFE name) +- `get_application_stats`: Get usage statistics for a specific application +- `get_mfe_stats`: Get usage statistics for a specific MFE (now only requires MFE name) +- `get_mfe_info`: Get information about an MFE, including which application it belongs to +- `list_all_mfes`: List all available MFEs across all applications + +## Dynamic MFE Discovery + +The server now dynamically discovers MFEs and their parent applications from GitHub. This means: + +1. You no longer need to specify the application name when querying MFE information +2. The `get_components_by_mfe` and `get_mfe_stats` tools now only require the MFE name +3. New MFEs are automatically discovered without code changes +4. The `get_mfe_info` tool can be used to look up which application an MFE belongs to +5. The `list_all_mfes` tool provides a list of all available MFEs across all applications + +## Running Locally + +```bash +# Build and run the server +npm run build && node build/index.js +``` + +## Docker Container + +### Building and Pushing to GitHub Container Registry + +1. Build the Docker image: + +```bash +# Navigate to the MCP directory +cd tools/mrc-usage-mcp + +# Build the image +docker build -t mrc-usage-mcp . +``` + +2. Tag the image for GitHub Container Registry: + +```bash +# Tag the image with the SolaceDev organization +docker tag mrc-usage-mcp ghcr.io/solacedev/mrc-usage-mcp:latest +``` + +3. Login to GitHub Container Registry: + +```bash +# Login to GitHub Container Registry +# Replace YOUR_GITHUB_TOKEN with a token that has package write permissions +echo $GITHUB_TOKEN | docker login ghcr.io -u YOUR_GITHUB_USERNAME --password-stdin + +# Alternatively, you can login interactively +docker login ghcr.io -u YOUR_GITHUB_USERNAME +``` + +4. Push the image to GitHub Container Registry: + +```bash +# Push the image +docker push ghcr.io/solacedev/mrc-usage-mcp:latest +``` + +5. Make the package public (if needed): + After pushing, you may need to go to the GitHub repository settings and make the package public if you want others to be able to use it without authentication. + +### Using with Cline + +Add the following configuration to your Cline MCP settings file: + +```json +"mrc-usage-ghcr": { + "disabled": false, + "timeout": 60, + "type": "stdio", + "command": "docker", + "args": [ + "run", + "-i", + "--rm", + "-e", + "GITHUB_PERSONAL_ACCESS_TOKEN", + "ghcr.io/solacedev/mrc-usage-mcp:latest" + ], + "env": { + "GITHUB_PERSONAL_ACCESS_TOKEN": "YOUR_GITHUB_TOKEN" + } +} +``` + +## Known Issues + +### File Access in Container + +Some tools (`getApplicationStats.ts` and `getMfeStats.ts`) are currently implemented to read data from the local filesystem: + +- `getApplicationStats.ts` uses: `path.join(process.cwd(), "mrc-usage-report-data", ...)` +- `getMfeStats.ts` uses: `path.join(process.cwd(), "../../", "mrc-usage-report-data", ...)` + +This inconsistency causes issues when running in a container. To fix this: + +1. Modify these files to fetch data from GitHub API instead of local filesystem +2. Or mount the data directory when running the container: + ```bash + docker run -i --rm -e GITHUB_PERSONAL_ACCESS_TOKEN -v /path/to/mrc-usage-report-data:/app/mrc-usage-report-data ghcr.io/solacedev/mrc-usage-mcp:latest + ``` + +### Path Resolution + +The inconsistent path resolution between different tools needs to be fixed: + +- `getApplicationStats.ts` looks for data in the current working directory +- `getMfeStats.ts` goes up two levels to reach the project root + +This should be standardized to ensure consistent behavior across all tools. + +--- + +## Tool Reference and Sample Prompts + +### `get_component_usage_by_application` + +**Description:** Get usage for a component in a specific application. + +**Sample Prompt:** "For the Solace Button, give me all usages in maas-ui" + +**Internal Call:** + +```json +{ + "tool": "get_component_usage_by_application", + "componentName": "SolaceButton", + "applicationName": "maas-ui" +} +``` + +**Sample Output:** + +```json +[ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/schemaUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "jsonSchemaSpecLink" + }, + { + "name": "href", + "type": "string", + "value": "https://json-schema.org/specification.html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleCheckbox" + } + ] + } +] +``` + +### `get_component_usage_by_mfe` + +**Description:** Get usage for a component in a specific MFE. You can optionally filter by a prop's presence, or by a prop's name and value. + +**Sample Prompt (no filter):** "Get the usage for the Solace Card component in the mc mfe" + +**Internal Call (no filter):** + +```json +{ + "tool": "get_component_usage_by_mfe", + "componentName": "SolaceCard", + "mfeName": "mc" +} +``` + +**Sample Output (no filter):** + +```json +[ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { "name": "title", "type": "string", "value": "What is an Automated Upgrade?" }, + { "name": "backgroundColor", "type": "expression", "value": "theme.palette.ux.learning.w10" }, + { "name": "showCloseButton", "type": "boolean", "value": "true" }, + { "name": "onClose", "type": "function", "value": "() => setNeedHelp(false)" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { "name": "title", "type": "string", "value": "What is an Automated Upgrade?" }, + { "name": "backgroundColor", "type": "expression", "value": "theme.palette.background.paper" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [{ "name": "title", "type": "string", "value": "Release Notes" }] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + } +] +``` + +**Sample Prompt (prop presence filter):** "for the mrc-mcp, get all usage of SolaceErrorbox in EP w/ prop showCloseButton" + +**Internal Call (prop presence filter):** + +```json +{ + "tool": "get_component_usage_by_mfe", + "componentName": "SolaceErrorBox", + "mfeName": "ep", + "propIdentifier": "showCloseButton" +} +``` + +**Sample Output (prop presence filter):** + +```json +[ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + } +] +``` + +**Sample Prompt (prop and value filter):** "for the mrc-mcp, get all usage of SolaceErrorbox in EP w/ prop showCloseButton value is false" + +**Internal Call (prop and value filter):** + +```json +{ + "tool": "get_component_usage_by_mfe", + "componentName": "SolaceErrorBox", + "mfeName": "ep", + "propIdentifier": { + "name": "showCloseButton", + "value": "false" + } +} +``` + +**Sample Output (prop and value filter):** + +```json +[] +``` + +### `get_component_usage_all` + +**Description:** Get usage for a component across all applications. + +**Sample Prompt:** "get the full usage of the Solace Checkbox component across all applications" + +**Internal Call:** + +```json +{ + "tool": "get_component_usage_all", + "componentName": "SolaceCheckBox" +} +``` + +**Sample Output:** + +```json +[ + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { "name": "checked", "type": "expression", "value": "isAdvancedInsightSelected ? true : false" }, + { "name": "readOnly", "type": "boolean", "value": "true" }, + { "name": "label", "type": "jsx", "value": "{createBizOrganization.requests.checkBoxLabel}" }, + { "name": "name", "type": "string", "value": "advInsights" }, + { "name": "title", "type": "string", "value": "Advanced Insights Checkbox" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { "name": "name", "type": "string", "value": "all" }, + { "name": "label", "type": "expression", "value": "searchStr.searchArea.types.all" }, + { "name": "checked", "type": "expression", "value": "infra && orgs && services && users" }, + { "name": "onChange", "type": "variable", "value": "searchIndicesChangeHandler" }, + { "name": "dataQa", "type": "string", "value": "search-all-checkbox" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { "name": "name", "type": "string", "value": "Automated Upgrades" }, + { "name": "label", "type": "string", "value": "Automated Upgrades" }, + { "name": "checked", "type": "variable", "value": "autoChecked" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { "name": "key", "type": "expression", "value": "option.value" }, + { "name": "name", "type": "expression", "value": "option.name" }, + { "name": "checked", "type": "expression", "value": "checkedItems[option.value]" }, + { "name": "onChange", "type": "variable", "value": "handleCheckboxChange" }, + { "name": "dataQa", "type": "expression", "value": "option.name" }, + { "name": "disabled", "type": "expression", "value": "optionDisabled(option, selectedMessagingService)" }, + { "name": "label", "type": "expression", "value": "option.name" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { "name": "id", "type": "string", "value": "showDiffs" }, + { "name": "name", "type": "string", "value": "showDiffs" }, + { "name": "label", "type": "expression", "value": "t({ id: \\"id_show_differences\\", message: \\"Show only differences\\" })" }, + { "name": "checked", "type": "variable", "value": "showDiffs" }, + { "name": "onChange", "type": "variable", "value": "handleShowDiffs" } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { "name": "onChange", "type": "expression", "value": "onBulkPermissionCheckboxChange(readPermissions)" }, + { "name": "name", "type": "expression", "value": "`${categoryName}-read`" }, + { "name": "checked", "type": "variable", "value": "readChecked" }, + { "name": "indeterminate", "type": "expression", "value": "!readChecked && readIndeterminate" }, + { "name": "readOnly", "type": "expression", "value": "!!readOnly" } + ] + } +] +``` + +### `get_application_stats` + +**Description:** Returns usage statistics for a specified application, including component counts and other metrics. + +**Sample Prompt:** "get the component usage for the maas-ops-ui repo" + +**Internal Call:** + +```json +{ + "tool": "get_application_stats", + "applicationName": "maas-ops-ui" +} +``` + +**Sample Output:** + +```json +{ + "totalInstances": 996, + "componentUsage": { + "SolaceTypography": 201, + "SolaceButton": 107, + "SolaceGrid": 178, + "SolaceTooltip": 87, + "SolaceLabel": 2, + "SolaceMessageBox": 50, + "SolaceConfirmationDialog": 43, + "SolaceTextField": 36, + "SolaceStack": 25, + "SolaceSelect": 20, + "SolaceCheckBox": 17, + "SolaceAccordion": 11, + "SolaceMenu": 3, + "SolaceTable": 36, + "SolaceAttributeBadge": 14, + "SolaceSelectAutocompleteItem": 5, + "SolaceSelectAutocomplete": 4, + "SolacePagination": 17, + "SolaceChip": 15, + "SolaceTabs": 7, + "SolaceCircularProgress": 10, + "SolaceToggle": 3, + "SolaceDetailMessage": 10, + "SolaceGridList": 7, + "SolaceRadio": 3, + "SolaceListItem": 9, + "SolaceSidePanelLayout": 2, + "SolaceTextArea": 1, + "SolacePageHeader": 5, + "SolaceCodeEditor": 7, + "SolaceList": 5, + "SolaceEnvironmentLabel": 1, + "SolaceBackDrop": 7, + "SolaceRadioGroup": 1, + "SolaceBreadcrumb": 7, + "SolaceErrorBox": 5, + "SolaceSearchAndFilter": 3, + "SolaceToggleButtonGroup": 1, + "SolaceTag": 6, + "SolaceStackLabel": 8, + "SolaceLearningBanner": 7, + "SolaceToasts": 4, + "SolaceLinearProgress": 1, + "SolaceDatePicker": 3, + "SolaceAttributeValuePairForm": 1, + "SolaceChipTextArea": 1 + }, + "uniqueComponents": 46 +} +``` + +### `get_mfe_stats` + +**Description:** Returns usage statistics for a specified Micro-Frontend (MFE), including component counts and other metrics. + +**Sample Prompt:** "get the overal componet usage information for the saas mfe" + +**Internal Call:** + +```json +{ + "tool": "get_mfe_stats", + "mfeName": "saas" +} +``` + +**Sample Output:** + +```json +{ + "totalInstances": 695, + "componentUsage": { + "SolaceTypography": 191, + "SolaceButton": 109, + "SolaceGrid": 70, + "SolaceTooltip": 29, + "SolaceLabel": 11, + "SolaceMessageBox": 33, + "SolaceConfirmationDialog": 34, + "SolaceTextField": 34, + "SolaceStack": 12, + "SolaceSelect": 10, + "SolaceCheckBox": 27, + "SolaceAccordion": 7, + "SolaceMenu": 8, + "SolaceTable": 9, + "SolaceAttributeBadge": 4, + "SolaceSelectAutocompleteItem": 9, + "SolaceCard": 10, + "SolaceSelectAutocomplete": 7, + "SolacePagination": 6, + "SolaceChip": 6, + "SolaceTabs": 2, + "SolaceCircularProgress": 6, + "SolaceToggle": 2, + "SolaceDetailMessage": 4, + "SolaceGridList": 6, + "SolaceRadio": 3, + "SolaceListItem": 5, + "SolaceSidePanelLayout": 1, + "SolaceTextArea": 9, + "SolacePageHeader": 2, + "SolaceList": 2, + "SolaceEnvironmentChip": 1, + "SolaceEnvironmentLabel": 6, + "SolaceBackDrop": 7, + "SolaceDrawer": 1, + "SolaceRadioGroup": 1, + "SolaceBreadcrumb": 2, + "SolacePicker": 2, + "SolaceErrorBox": 2, + "SolaceToggleButtonGroup": 1, + "SolaceStackLabel": 2, + "SolaceDatePicker": 1, + "SolaceAttributeValuePairForm": 1 + }, + "uniqueComponents": 43 +} +``` + +### `get_mfe_info` + +**Description:** Retrieves information about a specified Micro-Frontend (MFE), including its parent application. + +**Sample Prompt:** "Get information about the 'mesh-manager' MFE." + +**Internal Call:** + +```json +{ + "tool": "get_mfe_info", + "mfeName": "mesh-manager" +} +``` + +**Sample Output:** + +```json +{ + "mfeName": "mesh-manager", + "applicationName": "maas-ui", + "isValid": true +} +``` + +### `list_all_mfes` + +**Description:** Returns a list of all available Micro-Frontends (MFEs) across all applications. + +**Sample Prompt:** "List all MFEs." + +**Internal Call:** + +```json +{ + "tool": "list_all_mfes" +} +``` + +**Sample Output:** + +```json +{ + "applications": ["broker-manager", "maas-ops-ui", "maas-ui"], + "mfes": ["broker-manager", "infra", "maas-ops-react", "ep", "intg", "mc", "saas"] +} +``` + +### `list_all_applications` + +**Description:** Returns a list of all applications with available usage data. + +**Sample Prompt:** "List all applications." + +**Internal Call:** + +```json +{ + "tool": "list_all_applications" +} +``` + +**Sample Output:** + +```json +["maas-ui", "maas-ops-ui", "broker-manager"] +``` + +### `list_all_tools` + +**Description:** Returns a list of all available tools in the MCP server. + +**Sample Prompt:** "What tools are available in the mrc-mcp server?" + +**Internal Call:** + +```json +{ + "tool": "list_all_tools" +} +``` + +**Sample Output:** + +```json +[ + "get_component_usage_by_application", + "get_component_usage_by_mfe", + "get_component_usage_all", + "get_application_stats", + "get_mfe_stats", + "get_mfe_info", + "list_all_mfes", + "list_all_applications", + "list_all_tools", + "list_applications_and_mfes" +] +``` + +### `list_applications_and_mfes` + +**Description:** Returns a list of all applications and their associated Micro-Frontends (MFEs). + +**Sample Prompt:** "List all applications and their MFEs." + +**Internal Call:** + +```json +{ + "tool": "list_applications_and_mfes" +} +``` + +**Sample Output:** + +```json +{ + "applications": ["broker-manager", "maas-ops-ui", "maas-ui"], + "mfes": { + "broker-manager": ["broker-manager"], + "maas-ops-ui": ["infra", "maas-ops-react"], + "maas-ui": ["ep", "intg", "mc", "saas"] + } +} +``` diff --git a/tools/mrc-usage-mcp/package-lock.json b/tools/mrc-usage-mcp/package-lock.json new file mode 100644 index 000000000..8c8a2bdf0 --- /dev/null +++ b/tools/mrc-usage-mcp/package-lock.json @@ -0,0 +1,657 @@ +{ + "name": "mrc-usage-mcp", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "mrc-usage-mcp", + "version": "0.1.0", + "dependencies": { + "@modelcontextprotocol/sdk": "0.6.0", + "@octokit/rest": "^20.0.2", + "axios": "^1.9.0" + }, + "bin": { + "mrc-usage-mcp": "build/index.js" + }, + "devDependencies": { + "@types/node": "^20.11.24", + "typescript": "^5.3.3" + } + }, + "node_modules/@modelcontextprotocol/sdk": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-0.6.0.tgz", + "integrity": "sha512-9rsDudGhDtMbvxohPoMMyAUOmEzQsOK+XFchh6gZGqo8sx9sBuZQs+CUttXqa8RZXKDaJRCN2tUtgGof7jRkkw==", + "license": "MIT", + "dependencies": { + "content-type": "^1.0.5", + "raw-body": "^3.0.0", + "zod": "^3.23.8" + } + }, + "node_modules/@octokit/auth-token": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-4.0.0.tgz", + "integrity": "sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==", + "license": "MIT", + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/core": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/@octokit/core/-/core-5.2.1.tgz", + "integrity": "sha512-dKYCMuPO1bmrpuogcjQ8z7ICCH3FP6WmxpwC03yjzGfZhj9fTJg6+bS1+UAplekbN2C+M61UNllGOOoAfGCrdQ==", + "license": "MIT", + "dependencies": { + "@octokit/auth-token": "^4.0.0", + "@octokit/graphql": "^7.1.0", + "@octokit/request": "^8.4.1", + "@octokit/request-error": "^5.1.1", + "@octokit/types": "^13.0.0", + "before-after-hook": "^2.2.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/endpoint": { + "version": "9.0.6", + "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-9.0.6.tgz", + "integrity": "sha512-H1fNTMA57HbkFESSt3Y9+FBICv+0jFceJFPWDePYlR/iMGrwM5ph+Dd4XRQs+8X+PUFURLQgX9ChPfhJ/1uNQw==", + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.1.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/graphql": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-7.1.1.tgz", + "integrity": "sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==", + "license": "MIT", + "dependencies": { + "@octokit/request": "^8.4.1", + "@octokit/types": "^13.0.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/openapi-types": { + "version": "24.2.0", + "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-24.2.0.tgz", + "integrity": "sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==", + "license": "MIT" + }, + "node_modules/@octokit/plugin-paginate-rest": { + "version": "11.4.4-cjs.2", + "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.4.4-cjs.2.tgz", + "integrity": "sha512-2dK6z8fhs8lla5PaOTgqfCGBxgAv/le+EhPs27KklPhm1bKObpu6lXzwfUEQ16ajXzqNrKMujsFyo9K2eaoISw==", + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.7.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "5" + } + }, + "node_modules/@octokit/plugin-request-log": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-4.0.1.tgz", + "integrity": "sha512-GihNqNpGHorUrO7Qa9JbAl0dbLnqJVrV8OXe2Zm5/Y4wFkZQDfTreBzVmiRfJVfE4mClXdihHnbpyyO9FSX4HA==", + "license": "MIT", + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "5" + } + }, + "node_modules/@octokit/plugin-rest-endpoint-methods": { + "version": "13.3.2-cjs.1", + "resolved": "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-13.3.2-cjs.1.tgz", + "integrity": "sha512-VUjIjOOvF2oELQmiFpWA1aOPdawpyaCUqcEBc/UOUnj3Xp6DJGrJ1+bjUIIDzdHjnFNO6q57ODMfdEZnoBkCwQ==", + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.8.0" + }, + "engines": { + "node": ">= 18" + }, + "peerDependencies": { + "@octokit/core": "^5" + } + }, + "node_modules/@octokit/request": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/@octokit/request/-/request-8.4.1.tgz", + "integrity": "sha512-qnB2+SY3hkCmBxZsR/MPCybNmbJe4KAlfWErXq+rBKkQJlbjdJeS85VI9r8UqeLYLvnAenU8Q1okM/0MBsAGXw==", + "license": "MIT", + "dependencies": { + "@octokit/endpoint": "^9.0.6", + "@octokit/request-error": "^5.1.1", + "@octokit/types": "^13.1.0", + "universal-user-agent": "^6.0.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/request-error": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-5.1.1.tgz", + "integrity": "sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==", + "license": "MIT", + "dependencies": { + "@octokit/types": "^13.1.0", + "deprecation": "^2.0.0", + "once": "^1.4.0" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/rest": { + "version": "20.1.2", + "resolved": "https://registry.npmjs.org/@octokit/rest/-/rest-20.1.2.tgz", + "integrity": "sha512-GmYiltypkHHtihFwPRxlaorG5R9VAHuk/vbszVoRTGXnAsY60wYLkh/E2XiFmdZmqrisw+9FaazS1i5SbdWYgA==", + "license": "MIT", + "dependencies": { + "@octokit/core": "^5.0.2", + "@octokit/plugin-paginate-rest": "11.4.4-cjs.2", + "@octokit/plugin-request-log": "^4.0.0", + "@octokit/plugin-rest-endpoint-methods": "13.3.2-cjs.1" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/@octokit/types": { + "version": "13.10.0", + "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.10.0.tgz", + "integrity": "sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==", + "license": "MIT", + "dependencies": { + "@octokit/openapi-types": "^24.2.0" + } + }, + "node_modules/@types/node": { + "version": "20.19.7", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.7.tgz", + "integrity": "sha512-1GM9z6BJOv86qkPvzh2i6VW5+VVrXxCLknfmTkWEqz+6DqosiY28XUWCTmBcJ0ACzKqx/iwdIREfo1fwExIlkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", + "license": "Apache-2.0" + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "license": "ISC" + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/raw-body": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-3.0.0.tgz", + "integrity": "sha512-RmkhL8CAyCRPXCE28MMH0z2PNWQBNk2Q09ZdxM9IOOXwxwZbN+qbWaatPkdkWIKL2ZVDImrN/pK5HTRz2PcS4g==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.6.3", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "license": "ISC" + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/universal-user-agent": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.1.tgz", + "integrity": "sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==", + "license": "ISC" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/zod": { + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/tools/mrc-usage-mcp/package.json b/tools/mrc-usage-mcp/package.json new file mode 100644 index 000000000..4dcb5b330 --- /dev/null +++ b/tools/mrc-usage-mcp/package.json @@ -0,0 +1,27 @@ +{ + "name": "mrc-usage-mcp", + "version": "0.1.0", + "description": "A Model Context Protocol server for MRC usage", + "type": "module", + "bin": { + "mrc-usage-mcp": "./build/index.js" + }, + "files": [ + "build" + ], + "scripts": { + "build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"", + "build:dist": "tsc -p tsconfig.dist.json", + "watch": "tsc --watch", + "start": "node build/index.js" + }, + "dependencies": { + "@modelcontextprotocol/sdk": "0.6.0", + "@octokit/rest": "^20.0.2", + "axios": "^1.9.0" + }, + "devDependencies": { + "@types/node": "^20.11.24", + "typescript": "^5.3.3" + } +} diff --git a/tools/mrc-usage-mcp/src/ApplicationMfeCache.ts b/tools/mrc-usage-mcp/src/ApplicationMfeCache.ts new file mode 100644 index 000000000..9c7c3aba7 --- /dev/null +++ b/tools/mrc-usage-mcp/src/ApplicationMfeCache.ts @@ -0,0 +1,111 @@ +import axios from "axios"; + +interface ApplicationMfeData { + applications: string[]; + mfes: { [application: string]: string[] }; +} + +class ApplicationMfeCache { + private static instance: ApplicationMfeCache; + private data: ApplicationMfeData = { applications: [], mfes: {} }; + private baseUrl = + "https://api.github.com/repos/SolaceDev/maas-react-components/contents/mrc-usage-report-data/per-application"; + private ref = "feature/mrc-usage-report-data"; + + private constructor() {} + + public static getInstance(): ApplicationMfeCache { + if (!ApplicationMfeCache.instance) { + ApplicationMfeCache.instance = new ApplicationMfeCache(); + } + return ApplicationMfeCache.instance; + } + + private async fetchDirectoryContents(url: string): Promise { + try { + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + + if (Array.isArray(response.data)) { + return response.data + .filter((item: { type: string }) => item.type === "dir") + .map((item: { name: string }) => item.name); + } + + return []; + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + return []; + } + throw new Error(`Could not fetch directory contents from GitHub: ${url}. Error: ${error}`); + } + } + + private async fetchMfesForApplication(applicationName: string): Promise { + const url = `${this.baseUrl}/${applicationName}?ref=${this.ref}`; + try { + const mfeDirs = await this.fetchDirectoryContents(url); + return mfeDirs.filter((dir) => dir !== "total_stats.json"); + } catch (error) { + // Instead of console.error, we'll just return an empty array + return []; + } + } + + public async initializeCache(): Promise { + try { + // Fetch all application directories + const url = `${this.baseUrl}?ref=${this.ref}`; + this.data.applications = await this.fetchDirectoryContents(url); + + // For each application, fetch its MFEs + for (const application of this.data.applications) { + this.data.mfes[application] = await this.fetchMfesForApplication(application); + } + + // Remove console.log statements + } catch (error) { + // Instead of console.error, we'll throw the error + throw new Error(`Error initializing cache: ${error}`); + } + } + + public getApplications(): string[] { + return this.data.applications; + } + + public getMfes(application: string): string[] { + return this.data.mfes[application] || []; + } + + public getAllMfes(): string[] { + return Object.values(this.data.mfes).flat(); + } + + public getApplicationForMfe(mfe: string): string | undefined { + for (const [application, mfes] of Object.entries(this.data.mfes)) { + if (mfes.includes(mfe)) { + return application; + } + } + return undefined; + } + + public isInitialized(): boolean { + return this.data.applications.length > 0; + } + + public getApplicationsAndMfes(): { applications: string[]; mfes: { [application: string]: string[] } } { + return { + applications: this.data.applications, + mfes: this.data.mfes + }; + } +} + +export default ApplicationMfeCache; diff --git a/tools/mrc-usage-mcp/src/index.ts b/tools/mrc-usage-mcp/src/index.ts new file mode 100644 index 000000000..a6a92601c --- /dev/null +++ b/tools/mrc-usage-mcp/src/index.ts @@ -0,0 +1,554 @@ +#!/usr/bin/env node +/* eslint-disable unused-imports/no-unused-imports */ +/* eslint-disable sonarjs/cognitive-complexity */ +/* eslint-disable sonarjs/no-duplicate-string */ +/* eslint-disable sonarjs/no-duplicated-branches */ +/* eslint-disable no-console */ +/* eslint-disable @typescript-eslint/no-unused-vars */ + +import { Server } from "@modelcontextprotocol/sdk/server/index.js"; +import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; +import { + CallToolRequestSchema, + ListToolsRequestSchema, + ErrorCode, + McpError, + ReadResourceRequestSchema, + ListResourcesRequestSchema +} from "@modelcontextprotocol/sdk/types.js"; +import { getComponentUsageAll } from "./tools/getComponentUsageAll.js"; +import { getApplicationStats } from "./tools/getApplicationStats.js"; +import { getMfeStats } from "./tools/getMfeStats.js"; +import { getMfeInfo, listAllMfes } from "./tools/getMfeInfo.js"; +import { getComponentUsageByApplication } from "./tools/getComponentUsageByApplication.js"; +import { getComponentUsageByMfe } from "./tools/getComponentUsageByMfe.js"; +import axios from "axios"; +import ApplicationMfeCache from "./ApplicationMfeCache.js"; + +// Component data types +interface ComponentData { + [key: string]: unknown; +} + +const APPLICATION_NAME_DESCRIPTION = "The name of the application."; + +class MrcUsageServer { + private server: Server; + private componentList: string[] = []; + private componentData: ComponentData = {}; + private lastFetched: Date | null = null; + private applicationMfeCache: ApplicationMfeCache; + + constructor() { + this.applicationMfeCache = ApplicationMfeCache.getInstance(); + this.server = new Server( + { + name: "mrc-usage-mcp", + version: "0.1.0", + description: + "MaaS React Components usage analysis and optimization server - tracks component imports, props usage, and patterns across the codebase", + keywords: ["react", "components", "usage", "maas", "mrc", "patterns", "props"] + }, + { + capabilities: { + tools: {}, + resources: {} + } + } + ); + + this.setupToolHandlers(); + + this.server.onerror = (_error) => { + // console.error("[MCP Error]", _error); + }; + process.on("SIGINT", async () => { + await this.server.close(); + process.exit(0); + }); + } + + private async initializeResources(): Promise { + try { + console.error("Initializing component resources..."); + this.componentList = await this.fetchAllComponents(); + this.lastFetched = new Date(); + console.error(`Component resources initialized with ${this.componentList.length} components`); + + // Initialize the ApplicationMfeCache + await this.applicationMfeCache.initializeCache(); + console.error("Application and MFE cache initialized successfully"); + } catch (error) { + console.error(`Failed to initialize resources: ${error}`); + } + } + + private async fetchAllComponents(): Promise { + try { + const response = await axios.get( + "https://api.github.com/repos/SolaceDev/maas-react-components/contents/mrc-usage-report-data/per-component?ref=feature/mrc-usage-report-data", + { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + } + ); + + if (Array.isArray(response.data)) { + return response.data + .filter((item: { type: string }) => item.type === "dir") + .map((item: { name: string }) => item.name); + } + + return []; + } catch (error) { + console.error(`Could not fetch component list from GitHub: ${error}`); + return []; + } + } + + private async fetchComponentData(componentName: string): Promise { + // If already fetched, return from cache + if (this.componentData[componentName]) { + return this.componentData[componentName]; + } + + try { + const data = await getComponentUsageAll(componentName); + if (data) { + // Cache the data + this.componentData[componentName] = data; + } + return data; + } catch (error) { + console.error(`Error fetching component data for ${componentName}: ${error}`); + return null; + } + } + + private setupResourceHandlers() { + // List available resources + this.server.setRequestHandler(ListResourcesRequestSchema, async () => { + return { + resources: [ + { + uri: "components", + description: "List of all MRC components" + }, + { + uri: "component/{name}", + description: "Usage data for a specific MRC component" + }, + { + uri: "status", + description: "Status information about the component resources" + } + ] + }; + }); + + // Access resources + this.server.setRequestHandler(ReadResourceRequestSchema, async (request) => { + const uri = request.params.uri; + + // Resource: List of all components + if (uri === "components") { + return { + content: [ + { + type: "text", + text: JSON.stringify(this.componentList, null, 2) + } + ] + }; + } + + // Resource: Status information + if (uri === "status") { + const status = { + componentsCount: this.componentList.length, + cachedComponentsCount: Object.keys(this.componentData).length, + lastFetched: this.lastFetched, + cachedComponents: Object.keys(this.componentData) + }; + + return { + content: [ + { + type: "text", + text: JSON.stringify(status, null, 2) + } + ] + }; + } + + // Resource: Specific component data + const componentMatch = uri.match(/^component\/(.+)$/); + if (componentMatch) { + const componentName = componentMatch[1]; + const data = await this.fetchComponentData(componentName); + + if (data) { + return { + content: [ + { + type: "text", + text: JSON.stringify(data, null, 2) + } + ] + }; + } else { + throw new McpError(ErrorCode.InvalidRequest, `Component '${componentName}' not found`); + } + } + + throw new McpError(ErrorCode.InvalidRequest, `Resource '${uri}' not found`); + }); + } + + private tools = [ + { + name: "get_component_usage_by_application", + description: "Get usage for a component in a specific application.", + inputSchema: { + type: "object", + properties: { + componentName: { + type: "string", + description: "The name of the component." + }, + applicationName: { + type: "string", + description: APPLICATION_NAME_DESCRIPTION, + tool_name: "list_all_applications" + } + }, + required: ["componentName", "applicationName"] + } + }, + { + name: "get_component_usage_by_mfe", + description: "Get usage for a component in a specific MFE, with an option to filter by prop with fuzzy matching.", + inputSchema: { + type: "object", + properties: { + componentName: { + type: "string", + description: "The name of the component." + }, + mfeName: { + type: "string", + description: "The name of the MFE." + }, + propIdentifier: { + type: ["string", "object"], + description: + "Optional. The prop to search for. Can be a string (for fuzzy presence check) or an object with name and value (for fuzzy name and exact value matching).", + properties: { + name: { type: "string" }, + value: { type: "string" } + } + } + }, + required: ["componentName", "mfeName"] + } + }, + { + name: "get_component_usage_all", + description: "Get usage for a component across applications.", + inputSchema: { + type: "object", + properties: { + componentName: { + type: "string", + description: "The name of the component." + } + }, + required: ["componentName"] + } + }, + { + name: "get_application_stats", + description: + "Returns usage statistics for a specified application, including component counts and other metrics.", + inputSchema: { + type: "object", + properties: { + applicationName: { + type: "string", + description: APPLICATION_NAME_DESCRIPTION + } + }, + required: ["applicationName"] + } + }, + { + name: "get_mfe_stats", + description: + "Returns usage statistics for a specified Micro-Frontend (MFE), including component counts and other metrics. The `applicationName` is optional but helps to disambiguate if MFE names are not unique across applications.", + inputSchema: { + type: "object", + properties: { + applicationName: { + type: "string", + description: APPLICATION_NAME_DESCRIPTION + }, + mfeName: { + type: "string", + description: "The name of the MFE (Micro Frontend)." + } + }, + required: ["mfeName"] + } + }, + { + name: "get_mfe_info", + description: "Retrieves information about a specified Micro-Frontend (MFE), including its parent application.", + inputSchema: { + type: "object", + properties: { + mfeName: { + type: "string", + description: "The name of the MFE (Micro Frontend)." + }, + forceRefresh: { + type: "boolean", + description: "Force refresh of MFE mapping data from GitHub", + default: false + } + }, + required: ["mfeName"] + } + }, + { + // Lists all available MFEs and their parent applications + // Useful for discovering MFEs and their relationships to applications + name: "list_all_mfes", + description: "Returns a list of all available Micro-Frontends (MFEs) across all applications.", + inputSchema: { + type: "object", + properties: { + forceRefresh: { + type: "boolean", + description: "Force refresh of MFE mapping data from GitHub", + default: false + } + } + } + }, + { + name: "list_all_applications", + description: "Returns a list of all applications with available usage data.", + inputSchema: { + type: "object", + properties: {} + } + }, + { + name: "list_all_tools", + description: "Returns a list of all available tools in the MCP server.", + inputSchema: { + type: "object", + properties: {} + } + }, + { + name: "list_applications_and_mfes", + description: "Returns a list of all applications and their associated Micro-Frontends (MFEs).", + inputSchema: { + type: "object", + properties: {} + } + } + ]; + + private setupToolHandlers() { + this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ + tools: this.tools + })); + + this.server.setRequestHandler(CallToolRequestSchema, async (request) => { + switch (request.params.name) { + case "get_component_usage_by_application": { + const { componentName, applicationName } = request.params.arguments as { + componentName: string; + applicationName: string; + }; + const result = await getComponentUsageByApplication(applicationName, componentName); + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + case "get_component_usage_by_mfe": { + const { componentName, mfeName, propIdentifier } = request.params.arguments as { + componentName: string; + mfeName: string; + propIdentifier?: string | { name: string; value: string }; + }; + const mfeInfo = await getMfeInfo(mfeName); + if (!mfeInfo.applicationName) { + throw new McpError(ErrorCode.InvalidParams, `Could not determine application for MFE '${mfeName}'`); + } + const result = await getComponentUsageByMfe(mfeInfo.applicationName, mfeName, componentName, propIdentifier); + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + case "get_component_usage_all": { + if (!request.params.arguments) { + throw new McpError(ErrorCode.InvalidParams, "Missing arguments"); + } + + const componentName = request.params.arguments.componentName as string; + const result = await getComponentUsageAll(componentName); + + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + case "get_application_stats": { + const { applicationName } = request.params.arguments as { applicationName: string }; + const result = await getApplicationStats(applicationName); + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + case "get_mfe_stats": { + const { applicationName, mfeName, subApplicationName } = request.params.arguments as { + applicationName?: string; + mfeName?: string; + subApplicationName?: string; + }; + // Support both old and new parameter names + const mfeNameToUse = mfeName || subApplicationName; + if (!mfeNameToUse) { + throw new McpError(ErrorCode.InvalidParams, "Missing mfeName parameter"); + } + const result = await getMfeStats(mfeNameToUse, applicationName); + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + case "get_mfe_info": { + const { mfeName } = request.params.arguments as { mfeName: string }; + + if (!mfeName) { + throw new McpError(ErrorCode.InvalidParams, "Missing mfeName parameter"); + } + + const applicationName = this.applicationMfeCache.getApplicationForMfe(mfeName); + const result = { mfeName, applicationName }; + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + + case "list_all_mfes": { + const result = { + applications: this.applicationMfeCache.getApplications(), + mfes: this.applicationMfeCache.getAllMfes() + }; + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + + case "list_all_applications": { + const applications = this.applicationMfeCache.getApplications(); + return { + content: [ + { + type: "text", + text: JSON.stringify(applications, null, 2) + } + ] + }; + } + + case "list_all_tools": { + return { + content: [ + { + type: "text", + text: JSON.stringify(this.tools, null, 2) + } + ] + }; + } + + case "list_applications_and_mfes": { + const result = this.applicationMfeCache.getApplicationsAndMfes(); + return { + content: [ + { + type: "text", + text: JSON.stringify(result, null, 2) + } + ] + }; + } + + default: + throw new McpError(ErrorCode.MethodNotFound, `Unknown tool: ${request.params.name}`); + } + }); + } + + async run() { + // Setup resource handlers + this.setupResourceHandlers(); + + const transport = new StdioServerTransport(); + await this.server.connect(transport); + console.error("MRC Usage MCP server running on stdio"); + + // Initialize resources after the server is running + await this.initializeResources(); + + // Ensure the ApplicationMfeCache is initialized + if (!this.applicationMfeCache.isInitialized()) { + await this.applicationMfeCache.initializeCache(); + } + console.error("Application and MFE cache initialized"); + } +} + +const server = new MrcUsageServer(); +server.run().catch(console.error); diff --git a/tools/mrc-usage-mcp/src/keyMap.json b/tools/mrc-usage-mcp/src/keyMap.json new file mode 100644 index 000000000..89c944b0c --- /dev/null +++ b/tools/mrc-usage-mcp/src/keyMap.json @@ -0,0 +1,7 @@ +{ + "a": "filePath", + "b": "name", + "c": "props", + "d": "type", + "e": "value" +} diff --git a/tools/mrc-usage-mcp/src/tools/getApplicationStats.ts b/tools/mrc-usage-mcp/src/tools/getApplicationStats.ts new file mode 100644 index 000000000..0cf908a74 --- /dev/null +++ b/tools/mrc-usage-mcp/src/tools/getApplicationStats.ts @@ -0,0 +1,177 @@ +import axios from "axios"; + +interface Stats { + totalInstances: number; + componentUsage: { [key: string]: number }; + uniqueComponents: number; +} + +// Type for parsed JSON stats that might be in different formats +type ParsedStats = Stats | { [key: string]: number }; + +// Hardcoded list of valid applications +const VALID_APPLICATIONS = ["broker-manager", "maas-ops-ui", "maas-ui"]; + +// Hardcoded list of valid MFEs for each application +const VALID_MFES: Record = { + "broker-manager": ["broker-manager"], + "maas-ops-ui": ["maas-ops-react", "infra"], + "maas-ui": ["ep", "intg", "mc", "saas"] +}; + +async function fetchDirectoryContents(url: string): Promise { + try { + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + + if (Array.isArray(response.data)) { + return response.data + .filter((item: { type: string }) => item.type === "dir") + .map((item: { name: string }) => item.name); + } + + return []; + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + return []; + } + throw new Error(`Could not fetch directory contents from GitHub: ${url}. Error: ${error}`); + } +} + +async function fetchJsonFile(url: string) { + try { + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + if (response.data && response.data.content) { + const content = Buffer.from(response.data.content, "base64").toString("utf-8"); + return JSON.parse(content); + } + return null; + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + return null; + } + throw new Error(`Could not fetch file from GitHub: ${url}. Error: ${error}`); + } +} + +/** + * Parse stats from a JSON file + * @param stats The stats object + * @returns Parsed stats object + */ +function parseStats(stats: unknown): Stats { + // Handle null or undefined + if (!stats) { + return { + totalInstances: 0, + componentUsage: {}, + uniqueComponents: 0 + }; + } + + // If the file contains a simple component usage object (not the Stats interface) + if (typeof stats === "object" && stats !== null && !("totalInstances" in stats) && !("uniqueComponents" in stats)) { + const componentUsage = stats as { [key: string]: number }; + const totalInstances = Object.values(componentUsage).reduce((sum, count) => sum + (count as number), 0); + return { + totalInstances, + componentUsage, + uniqueComponents: Object.keys(componentUsage).length + }; + } + // If it's already in the Stats format + return stats as Stats; +} + +/** + * Process component usage data and update aggregated stats + * @param stats Stats object to process + * @param aggregatedStats Stats object to update + * @param allComponents Set of component names to update + */ +function processComponentUsage(stats: ParsedStats, aggregatedStats: Stats, allComponents: Set): void { + // Handle both formats: Stats interface or simple component usage object + if (typeof stats === "object" && "componentUsage" in stats && "totalInstances" in stats) { + // Stats interface format + aggregatedStats.totalInstances += stats.totalInstances; + for (const [component, count] of Object.entries(stats.componentUsage)) { + aggregatedStats.componentUsage[component] = (aggregatedStats.componentUsage[component] || 0) + (count as number); + allComponents.add(component); + } + } else { + // Simple component usage object format + const componentUsage = stats as { [key: string]: number }; + for (const [component, count] of Object.entries(componentUsage)) { + aggregatedStats.componentUsage[component] = (aggregatedStats.componentUsage[component] || 0) + count; + allComponents.add(component); + aggregatedStats.totalInstances += count; + } + } +} + +export async function getApplicationStats(applicationName: string): Promise { + // Check if the application name is valid + if (!VALID_APPLICATIONS.includes(applicationName)) { + throw new Error( + `Invalid application name: ${applicationName}. Valid applications are: ${VALID_APPLICATIONS.join(", ")}` + ); + } + + const baseUrl = `https://api.github.com/repos/SolaceDev/maas-react-components/contents/mrc-usage-report-data/per-application/${applicationName}`; + const ref = "feature/mrc-usage-report-data"; + + try { + // Check if there's a total_stats.json file directly in the application directory + const mainStatsUrl = `${baseUrl}/total_stats.json?ref=${ref}`; + const mainStats = await fetchJsonFile(mainStatsUrl); + + if (mainStats) { + return parseStats(mainStats); + } + + // If no main stats file, aggregate from MFE directories + const mfeDirs = await fetchDirectoryContents(`${baseUrl}?ref=${ref}`); + if (mfeDirs.length === 0) { + throw new Error(`Application not found or has no MFEs: ${applicationName}`); + } + + const aggregatedStats: Stats = { + totalInstances: 0, + componentUsage: {}, + uniqueComponents: 0 + }; + + const allComponents = new Set(); + const validMfes = VALID_MFES[applicationName] || []; + + for (const mfe of mfeDirs) { + // Skip if not a valid MFE + if (!validMfes.includes(mfe)) continue; + + const statsUrl = `${baseUrl}/${mfe}/total_stats.json?ref=${ref}`; + const mfeStats = await fetchJsonFile(statsUrl); + + if (mfeStats) { + const parsedStats = parseStats(mfeStats); + processComponentUsage(parsedStats, aggregatedStats, allComponents); + } + } + + aggregatedStats.uniqueComponents = allComponents.size; + return aggregatedStats; + } catch (error) { + throw new Error(`Could not fetch stats for application ${applicationName}: ${error}`); + } +} diff --git a/tools/mrc-usage-mcp/src/tools/getComponentUsageAll.ts b/tools/mrc-usage-mcp/src/tools/getComponentUsageAll.ts new file mode 100644 index 000000000..960b2b567 --- /dev/null +++ b/tools/mrc-usage-mcp/src/tools/getComponentUsageAll.ts @@ -0,0 +1,90 @@ +import axios from "axios"; +import { getComponentUsageByApplication } from "./getComponentUsageByApplication.js"; +import { Instance } from "../utils/keyTransformer.js"; + +interface DirectoryItem { + type: string; + name: string; +} + +async function fetchDirectoryContents(url: string): Promise { + // eslint-disable-next-line no-console + console.error(`[DEBUG] Fetching directory contents from ${url}...`); + try { + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + // eslint-disable-next-line no-console + console.error(`[DEBUG] Successfully fetched directory contents from ${url}.`); + + if (Array.isArray(response.data)) { + const dirs = response.data.filter((item: { type: string }) => item.type === "dir"); + // eslint-disable-next-line no-console + console.error(`[DEBUG] Found ${dirs.length} directories.`); + return dirs; + } + + // eslint-disable-next-line no-console + console.error("[WARN] No directories found or response is not an array."); + return []; + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + // eslint-disable-next-line no-console + console.error(`[INFO] Directory not found at ${url} (404). This might be expected.`); + return []; + } + // eslint-disable-next-line no-console + console.error(`[ERROR] Could not fetch directory contents from GitHub: ${url}. Error: ${error}`); + throw new Error(`Could not fetch directory contents from GitHub: ${url}. Error: ${error}`); + } +} + +export async function getComponentUsageAll(componentName: string): Promise { + // eslint-disable-next-line no-console + console.error(`[DEBUG] Starting getComponentUsageAll for component: ${componentName}`); + const baseUrl = + "https://api.github.com/repos/SolaceDev/maas-react-components/contents/mrc-usage-report-data/per-application"; + const ref = "feature/mrc-usage-report-data"; + const url = `${baseUrl}?ref=${ref}`; + // eslint-disable-next-line no-console + console.error(`[DEBUG] Constructed GitHub API URL for applications: ${url}`); + + let allInstances: Instance[] = []; + + try { + const applicationDirs = await fetchDirectoryContents(url); + // eslint-disable-next-line no-console + console.error(`[DEBUG] Found ${applicationDirs.length} application directories.`); + + for (const appDir of applicationDirs) { + const applicationName = appDir.name; + // eslint-disable-next-line no-console + console.error(`[DEBUG] Getting usage for application: ${applicationName}`); + try { + const instances = await getComponentUsageByApplication(applicationName, componentName); + allInstances = allInstances.concat(instances); + // eslint-disable-next-line no-console + console.error( + `[DEBUG] Fetched ${instances.length} instances for application ${applicationName}. Total instances so far: ${allInstances.length}` + ); + } catch (error) { + // eslint-disable-next-line no-console + console.error( + `[ERROR] Failed to get usage for component ${componentName} in application ${applicationName}:`, + error + ); + } + } + // eslint-disable-next-line no-console + console.error(`[DEBUG] Finished fetching usage for all applications. Total instances: ${allInstances.length}`); + return allInstances; + } catch (error: unknown) { + // eslint-disable-next-line no-console + console.error(`[ERROR] Could not get component usage for ${componentName}: ${error}`); + throw new Error(`Could not get component usage for ${componentName}: ${error}`); + } +} diff --git a/tools/mrc-usage-mcp/src/tools/getComponentUsageByApplication.ts b/tools/mrc-usage-mcp/src/tools/getComponentUsageByApplication.ts new file mode 100644 index 000000000..a51c1f6fb --- /dev/null +++ b/tools/mrc-usage-mcp/src/tools/getComponentUsageByApplication.ts @@ -0,0 +1,60 @@ +import ApplicationMfeCache from "../ApplicationMfeCache.js"; +import { getComponentUsageByMfe } from "./getComponentUsageByMfe.js"; +import { Instance } from "../utils/keyTransformer.js"; + +export async function getComponentUsageByApplication( + applicationName: string, + componentName: string +): Promise { + // eslint-disable-next-line no-console + console.error(`[DEBUG] Starting getComponentUsageByApplication for ${componentName} in ${applicationName}`); + const cache = ApplicationMfeCache.getInstance(); + // eslint-disable-next-line no-console + console.error("[DEBUG] ApplicationMfeCache instance obtained."); + if (!cache.isInitialized()) { + // eslint-disable-next-line no-console + console.error("[DEBUG] Cache not initialized. Initializing..."); + try { + await cache.initializeCache(); + // eslint-disable-next-line no-console + console.error("[DEBUG] Cache initialized successfully."); + } catch (error) { + // eslint-disable-next-line no-console + console.error("Failed to initialize ApplicationMfeCache:", error); + return []; + } + } + + const mfes = cache.getMfes(applicationName); + if (!mfes || mfes.length === 0) { + // eslint-disable-next-line no-console + console.error(`No MFEs found for application: ${applicationName}`); + return []; + } + // eslint-disable-next-line no-console + console.error(`[DEBUG] Found ${mfes.length} MFEs for application ${applicationName}: ${mfes.join(", ")}`); + + let allInstances: Instance[] = []; + + // eslint-disable-next-line no-console + console.error("[DEBUG] Starting to fetch usage for each MFE..."); + for (const mfeName of mfes) { + try { + // eslint-disable-next-line no-console + console.error(`[DEBUG] Getting usage for ${componentName} in MFE ${mfeName}`); + const instances = await getComponentUsageByMfe(applicationName, mfeName, componentName); + allInstances = allInstances.concat(instances); + // eslint-disable-next-line no-console + console.error(`[DEBUG] Successfully fetched ${instances.length} instances for MFE ${mfeName}`); + } catch (error) { + // eslint-disable-next-line no-console + console.error(`[ERROR] Failed to get usage for component ${componentName} in MFE ${mfeName}:`, error); + } + } + // eslint-disable-next-line no-console + console.error("[DEBUG] Finished fetching usage for all MFEs."); + + // eslint-disable-next-line no-console + console.error(`[DEBUG] Returning a total of ${allInstances.length} instances.`); + return allInstances; +} diff --git a/tools/mrc-usage-mcp/src/tools/getComponentUsageByMfe.ts b/tools/mrc-usage-mcp/src/tools/getComponentUsageByMfe.ts new file mode 100644 index 000000000..6b59a1e3d --- /dev/null +++ b/tools/mrc-usage-mcp/src/tools/getComponentUsageByMfe.ts @@ -0,0 +1,90 @@ +import axios from "axios"; +import Fuse from "fuse.js"; +import { transformResponse, RawInstance, Instance } from "../utils/keyTransformer.js"; + +interface KeyMap { + filePath: string; + name: string; + props: string; + type: string; + value: string; +} + +interface InstancesFile { + keyMap: KeyMap; + data: RawInstance[]; +} + +export async function getComponentUsageByMfe( + applicationName: string, + mfeName: string, + componentName: string, + propIdentifier?: string | { name: string; value: string } +): Promise { + // eslint-disable-next-line no-console + console.error( + `[DEBUG] Starting getComponentUsageByMfe for ${componentName} in MFE ${mfeName} of application ${applicationName}` + ); + + const repoOwner = "SolaceDev"; + const repoName = "maas-react-components"; + const ref = "feature/mrc-usage-report-data"; + const filePath = `mrc-usage-report-data/per-application/${applicationName}/${mfeName}/${componentName}/instances.json`; + const url = `https://api.github.com/repos/${repoOwner}/${repoName}/contents/${filePath}?ref=${ref}`; + // eslint-disable-next-line no-console + console.error(`[DEBUG] Constructed GitHub API URL: ${url}`); + + try { + // eslint-disable-next-line no-console + console.error(`[DEBUG] Fetching data from ${url}...`); + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github.v3.raw", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + // eslint-disable-next-line no-console + console.error("[DEBUG] Successfully fetched data from GitHub."); + + const instancesFile: InstancesFile = response.data; + if (!instancesFile) { + // eslint-disable-next-line no-console + console.error("[WARN] instances.json file is empty or invalid."); + return []; + } + + let instances = instancesFile.data || []; + // eslint-disable-next-line no-console + console.error(`[DEBUG] Parsed ${instances.length} instances from the file.`); + + if (propIdentifier) { + if (typeof propIdentifier === "string") { + instances = instances.filter((instance) => { + const fuse = new Fuse(instance.c, { keys: ["b"] }); + return fuse.search(propIdentifier).length > 0; + }); + } else { + instances = instances.filter((instance) => { + const fuse = new Fuse(instance.c, { keys: ["b"] }); + const results = fuse.search(propIdentifier.name); + return results.some((result) => result.item.e === propIdentifier.value); + }); + } + } + + return transformResponse(instances); + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + // eslint-disable-next-line no-console + console.error( + `[INFO] instances.json not found for ${componentName} in ${mfeName} (This is expected if the component is not used).` + ); + return []; + } + // For other errors, log and re-throw + // eslint-disable-next-line no-console + console.error(`[ERROR] Could not fetch or parse instances.json from GitHub: ${url}. Error: ${error}`); + throw new Error(`Could not fetch or parse instances.json from GitHub: ${url}. Error: ${error}`); + } +} diff --git a/tools/mrc-usage-mcp/src/tools/getMfeInfo.ts b/tools/mrc-usage-mcp/src/tools/getMfeInfo.ts new file mode 100644 index 000000000..d6e0f7280 --- /dev/null +++ b/tools/mrc-usage-mcp/src/tools/getMfeInfo.ts @@ -0,0 +1,131 @@ +import axios from "axios"; + +interface MfeInfo { + mfeName: string; + applicationName: string; + isValid: boolean; +} + +// Cache for MFE to application mapping to avoid repeated API calls +let mfeToApplicationCache: Record = {}; +let lastCacheUpdate: Date | null = null; +const CACHE_TTL = 3600000; // 1 hour in milliseconds + +interface DirectoryItem { + type: string; + name: string; +} + +async function fetchDirectoryContents(url: string): Promise { + try { + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + + if (Array.isArray(response.data)) { + return response.data.filter((item: { type: string }) => item.type === "dir"); + } + + return []; + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + return []; + } + throw new Error(`Could not fetch directory contents from GitHub: ${url}. Error: ${error}`); + } +} + +/** + * Discover all MFEs and their parent applications by querying the GitHub repository + */ +async function discoverMfes(forceRefresh = false): Promise> { + // Return cached mapping if it's still valid and not forcing refresh + if ( + !forceRefresh && + lastCacheUpdate && + Date.now() - lastCacheUpdate.getTime() < CACHE_TTL && + Object.keys(mfeToApplicationCache).length > 0 + ) { + return mfeToApplicationCache; + } + + const mapping: Record = {}; + const baseUrl = + "https://api.github.com/repos/SolaceDev/maas-react-components/contents/mrc-usage-report-data/per-application"; + const ref = "feature/mrc-usage-report-data"; + + try { + // Get all applications + const applications = await fetchDirectoryContents(`${baseUrl}?ref=${ref}`); + + // For each application, get its MFEs + for (const application of applications) { + const applicationName = application.name; + const mfes = await fetchDirectoryContents(`${baseUrl}/${applicationName}?ref=${ref}`); + + // Add each MFE to the mapping + for (const mfe of mfes) { + if (mfe.name !== "total_stats.json") { + mapping[mfe.name] = applicationName; + } + } + } + + // Update the cache + mfeToApplicationCache = mapping; + lastCacheUpdate = new Date(); + + return mapping; + } catch (error) { + throw new Error(`Could not discover MFEs: ${error}`); + } +} + +/** + * Get information about an MFE, including which application it belongs to + */ +/** @deprecated */ +export async function getMfeInfo(mfeName: string, forceRefresh = false): Promise { + const mfeMapping = await discoverMfes(forceRefresh); + + if (!(mfeName in mfeMapping)) { + throw new Error(`MFE not found: ${mfeName}`); + } + + return { + mfeName, + applicationName: mfeMapping[mfeName], + isValid: true + }; +} + +/** + * List all available MFEs and their parent applications + */ +export async function listAllMfes(forceRefresh = false): Promise { + const mfeMapping = await discoverMfes(forceRefresh); + + return Object.entries(mfeMapping).map(([mfeName, applicationName]) => ({ + mfeName, + applicationName, + isValid: true + })); +} + +/** + * Check if an MFE exists and get its application name + * Returns null if MFE doesn't exist + */ +export async function getApplicationForMfe(mfeName: string): Promise { + try { + const mfeMapping = await discoverMfes(); + return mfeMapping[mfeName] || null; + } catch (error) { + // Log error silently + return null; + } +} diff --git a/tools/mrc-usage-mcp/src/tools/getMfeStats.ts b/tools/mrc-usage-mcp/src/tools/getMfeStats.ts new file mode 100644 index 000000000..21d0c3bec --- /dev/null +++ b/tools/mrc-usage-mcp/src/tools/getMfeStats.ts @@ -0,0 +1,88 @@ +import axios from "axios"; +import { getApplicationForMfe } from "./getMfeInfo.js"; + +interface Stats { + totalInstances: number; + componentUsage: { [key: string]: number }; + uniqueComponents: number; +} + +async function fetchJsonFile(url: string) { + try { + const response = await axios.get(url, { + headers: { + Accept: "application/vnd.github+json", + Authorization: `Bearer ${process.env.GITHUB_PERSONAL_ACCESS_TOKEN}`, + "X-GitHub-Api-Version": "2022-11-28" + } + }); + if (response.data && response.data.content) { + const content = Buffer.from(response.data.content, "base64").toString("utf-8"); + return JSON.parse(content); + } + return null; + } catch (error) { + if (axios.isAxiosError(error) && error.response?.status === 404) { + return null; + } + throw new Error(`Could not fetch file from GitHub: ${url}. Error: ${error}`); + } +} + +/** + * Parse stats from a JSON file + * @param stats The stats object + * @returns Parsed stats object + */ +function parseStats(stats: unknown): Stats { + // Handle null or undefined + if (!stats) { + return { + totalInstances: 0, + componentUsage: {}, + uniqueComponents: 0 + }; + } + + // If the file contains a simple component usage object (not the Stats interface) + if (typeof stats === "object" && stats !== null && !("totalInstances" in stats) && !("uniqueComponents" in stats)) { + const componentUsage = stats as { [key: string]: number }; + const totalInstances = Object.values(componentUsage).reduce((sum, count) => sum + count, 0); + return { + totalInstances, + componentUsage, + uniqueComponents: Object.keys(componentUsage).length + }; + } + // If it's already in the Stats format + return stats as Stats; +} + +/** + * Get usage statistics for a specific MFE within an application + */ +export async function getMfeStats(mfeName: string, applicationName?: string): Promise { + // If applicationName is not provided, look it up + if (!applicationName) { + const appName = await getApplicationForMfe(mfeName); + if (!appName) { + throw new Error(`MFE not found: ${mfeName}`); + } + applicationName = appName; + } + + const baseUrl = `https://api.github.com/repos/SolaceDev/maas-react-components/contents/mrc-usage-report-data/per-application/${applicationName}/${mfeName}/total_stats.json`; + const ref = "feature/mrc-usage-report-data"; + + try { + const rawStats = await fetchJsonFile(`${baseUrl}?ref=${ref}`); + if (!rawStats) { + throw new Error(`Stats not found for MFE: ${applicationName}/${mfeName}`); + } + + // Parse the stats to ensure they're in the correct format + return parseStats(rawStats); + } catch (error) { + throw new Error(`Could not fetch stats for MFE ${applicationName}/${mfeName}: ${error}`); + } +} diff --git a/tools/mrc-usage-mcp/src/utils/keyTransformer.ts b/tools/mrc-usage-mcp/src/utils/keyTransformer.ts new file mode 100644 index 000000000..919ed725c --- /dev/null +++ b/tools/mrc-usage-mcp/src/utils/keyTransformer.ts @@ -0,0 +1,35 @@ +interface RawProp { + b: string; // name + d: string; // type + e: string; // value +} + +export interface RawInstance { + a: string; // filePath + c: RawProp[]; // props +} + +interface Prop { + name: string; + type: string; + value: string; +} + +export interface Instance { + filePath: string; + props: Prop[]; +} + +export function transformResponse(data: RawInstance[]): Instance[] { + if (!data) { + return []; + } + return data.map((item) => ({ + filePath: item.a, + props: item.c.map((prop) => ({ + name: prop.b, + type: prop.d, + value: prop.e + })) + })); +} diff --git a/tools/mrc-usage-mcp/tsconfig.dist.json b/tools/mrc-usage-mcp/tsconfig.dist.json new file mode 100644 index 000000000..ab239d2a9 --- /dev/null +++ b/tools/mrc-usage-mcp/tsconfig.dist.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "outDir": "./dist" + } +} diff --git a/tools/mrc-usage-mcp/tsconfig.json b/tools/mrc-usage-mcp/tsconfig.json new file mode 100644 index 000000000..51bb95733 --- /dev/null +++ b/tools/mrc-usage-mcp/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "es2020", + "module": "esnext", + "moduleResolution": "node", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "outDir": "./build", + "allowImportingTsExtensions": false + }, + "include": ["src/**/*.ts"], + "exclude": ["node_modules"] +} diff --git a/tools/mrc-usage-report-json-splitter/package-lock.json b/tools/mrc-usage-report-json-splitter/package-lock.json new file mode 100644 index 000000000..476f2273c --- /dev/null +++ b/tools/mrc-usage-report-json-splitter/package-lock.json @@ -0,0 +1,73 @@ +{ + "name": "json-splitter", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "json-splitter", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "chalk": "^5.3.0", + "commander": "^11.1.0" + }, + "devDependencies": { + "@types/node": "^20.14.10", + "typescript": "^5.5.3" + } + }, + "node_modules/@types/node": { + "version": "20.19.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.1.tgz", + "integrity": "sha512-jJD50LtlD2dodAEO653i3YF04NWak6jN3ky+Ri3Em3mGR39/glWiboM/IePaRbgwSfqM1TpGXfAg8ohn/4dTgA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/chalk": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", + "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", + "license": "MIT", + "engines": { + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + } + } +} diff --git a/tools/mrc-usage-report-json-splitter/package.json b/tools/mrc-usage-report-json-splitter/package.json new file mode 100644 index 000000000..4bfc88ee3 --- /dev/null +++ b/tools/mrc-usage-report-json-splitter/package.json @@ -0,0 +1,21 @@ +{ + "name": "json-splitter", + "version": "1.0.0", + "description": "A tool to split the merged MRC usage report JSON into individual component files.", + "main": "dist/index.js", + "scripts": { + "build": "tsc", + "start": "node dist/index.js" + }, + "keywords": [], + "author": "", + "license": "ISC", + "dependencies": { + "chalk": "^5.3.0", + "commander": "^11.1.0" + }, + "devDependencies": { + "@types/node": "^20.14.10", + "typescript": "^5.5.3" + } +} diff --git a/tools/mrc-usage-report-json-splitter/readMe.md b/tools/mrc-usage-report-json-splitter/readMe.md new file mode 100644 index 000000000..c7e807fc5 --- /dev/null +++ b/tools/mrc-usage-report-json-splitter/readMe.md @@ -0,0 +1,62 @@ +# MRC Usage Report JSON Splitter + +## Purpose + +The `mrc-usage-report-json-splitter` is a command-line tool designed to process and restructure the monolithic JSON output generated by the `mrc-usage-report` tool. The primary problem it solves is the difficulty of consuming a single, large JSON file that contains all component usage data across multiple applications and micro-frontends (MFEs). + +This tool breaks down the large report into a more granular and organized directory structure, making the data easier to query, analyze, and use for various purposes, such as powering dashboards or other data-driven tools. + +## How it Works + +The tool operates by reading a single merged JSON report file and then creating a structured set of smaller JSON files and directories. The process is as follows: + +1. **Input:** It takes the path to a large JSON file (e.g., `mrc-usage-report-all.json`) as input. +2. **Parsing:** It parses the JSON content, focusing on the `componentStats` array which contains detailed usage information for each MaaS React Component. +3. **Splitting:** The tool creates two primary data structures: + - **`per-component`:** A directory where each component has its own sub-directory. Inside, usage data is split into individual files like `totalUsages.json`, `usagesByMfe.json`, `commonProps.json`, `files.json`, and `instances.json`. This allows for easy lookup of all data related to a specific component. + - **`per-application`:** A directory that organizes the data by application and then by MFE. This structure provides a view of component usage within the context of a specific application or MFE, including aggregated statistics. +4. **Output:** The final output is a directory (e.g., `mrc-usage-report-data/`) containing the structured, split-out JSON files. + +## Usage + +### CLI Options + +The tool can be configured with the following command-line options: + +| Option | Description | Default Value | +| --------------------- | ---------------------------------------- | ------------------------------------ | +| `-i, --input ` | Input path for the merged JSON report | `../../merged-mrc-usage-report.json` | +| `-o, --output ` | Output directory for the generated files | `output/` | + +### How to Run + +1. **Build the tool:** + + ```bash + npm install + npm run build + ``` + +2. **Run the script:** + + ```bash + npm start -- -i -o + ``` + + For example, as seen in the GitHub workflow: + + ```bash + npm start -- -i ../mrc-usage-report/reports/mrc-usage-report-all.json -o ../../../maas-react-components-repo/mrc-usage-report-data + ``` + +## Integration in the MRC Usage Report Workflow + +This tool is an integral part of the automated `mrc-usage-report` generation process, as defined in the `.github/workflows/mrc-usage-report-worker.yml` GitHub Actions workflow. + +Its role in the workflow is as follows: + +1. **Generate Main Report:** The workflow first runs the main `mrc-usage-report` tool to scan the codebase and generate the `mrc-usage-report-all.json` file. +2. **Split the Report:** Immediately after the main report is created, the "Split merged JSON" step is executed. This step runs the `mrc-usage-report-json-splitter` tool. +3. **Commit Data:** The tool takes the monolithic JSON file as input and produces the structured `mrc-usage-report-data` directory. This directory is then committed back to the repository. + +By running as part of this workflow, the splitter ensures that the detailed, queryable usage data is always up-to-date with the latest scan of the codebase. diff --git a/tools/mrc-usage-report-json-splitter/src/index.ts b/tools/mrc-usage-report-json-splitter/src/index.ts new file mode 100644 index 000000000..66af06e54 --- /dev/null +++ b/tools/mrc-usage-report-json-splitter/src/index.ts @@ -0,0 +1,221 @@ +import * as fs from "fs"; +import * as path from "path"; +import { Command } from "commander"; + +interface Prop { + name: string; + type: string; + value: unknown; +} + +interface Instance { + filePath: string; + props: Prop[]; +} + +interface CommonProp { + name: string; + count: number; +} + +interface ComponentStat { + componentName: string; + totalUsages: number; + usagesByMfe: { [key: string]: number }; + commonProps: CommonProp[]; + files: string[]; + customization: Record; + instances: Instance[]; +} + +interface MergedReport { + generatedAt: string; + config: Record; + mrcVersions: Record; + componentStats: ComponentStat[]; +} + +interface AppStats { + [app: string]: { + [component: string]: number; + }; +} + +interface MfeStats { + [app: string]: { + [mfe: string]: { + [component: string]: number; + }; + }; +} + +const program = new Command(); + +program + .name("json-splitter") + .description("A tool to split the merged MRC usage report JSON into a detailed folder structure.") + .version("1.0.0") + .option("-i, --input ", "Input path for the merged JSON report", "../../merged-mrc-usage-report.json") + .option("-o, --output ", "Output directory for the generated files and folders", "output/"); + +program.parse(process.argv); +const options = program.opts(); + +const appMfeMap: { [key: string]: string[] } = { + "broker-manager": ["broker-manager"], + "maas-ui": ["ep", "intg", "mc", "saas"], + "maas-ops-ui": ["infra", "maas-ops-react"] +}; + +function getAppFromMfe(mfe: string): string | undefined { + for (const app in appMfeMap) { + if (appMfeMap[app].includes(mfe)) { + return app; + } + } + return undefined; +} + +function calculateCommonProps(instances: Instance[]): CommonProp[] { + const propCounts: { [key: string]: number } = {}; + for (const instance of instances) { + if (instance.props) { + for (const prop of instance.props) { + propCounts[prop.name] = (propCounts[prop.name] || 0) + 1; + } + } + } + return Object.entries(propCounts) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count); +} + +function optimizeInstances(instances: Instance[]) { + const keyMap = { + filePath: "a", + name: "b", + props: "c", + type: "d", + value: "e" + }; + + const data = instances.map((instance) => { + return { + [keyMap.filePath]: instance.filePath, + [keyMap.props]: instance.props.map((prop) => { + return { + [keyMap.name]: prop.name, + [keyMap.type]: prop.type, + [keyMap.value]: prop.value + }; + }) + }; + }); + + return { keyMap, data }; +} + +function generatePerComponentStructure(report: MergedReport, outputDirPath: string) { + const perComponentDir = path.join(outputDirPath, "per-component"); + fs.mkdirSync(perComponentDir, { recursive: true }); + + for (const component of report.componentStats) { + const componentDir = path.join(perComponentDir, component.componentName); + fs.mkdirSync(componentDir, { recursive: true }); + + fs.writeFileSync(path.join(componentDir, "totalUsages.json"), JSON.stringify(component.totalUsages)); + fs.writeFileSync(path.join(componentDir, "usagesByMfe.json"), JSON.stringify(component.usagesByMfe)); + fs.writeFileSync(path.join(componentDir, "commonProps.json"), JSON.stringify(component.commonProps)); + fs.writeFileSync(path.join(componentDir, "files.json"), JSON.stringify(component.files)); + fs.writeFileSync(path.join(componentDir, "instances.json"), JSON.stringify(optimizeInstances(component.instances))); + fs.writeFileSync(path.join(componentDir, "customization.json"), JSON.stringify(component.customization)); + } +} + +function processComponentForApplication( + component: ComponentStat, + perApplicationDir: string, + appStats: AppStats, + mfeStats: MfeStats +) { + for (const mfe in component.usagesByMfe) { + const app = getAppFromMfe(mfe); + if (app) { + // init stats + if (!appStats[app]) appStats[app] = {}; + if (!mfeStats[app]) mfeStats[app] = {}; + if (!mfeStats[app][mfe]) mfeStats[app][mfe] = {}; + + // aggregate stats + appStats[app][component.componentName] = + (appStats[app][component.componentName] || 0) + component.usagesByMfe[mfe]; + mfeStats[app][mfe][component.componentName] = + (mfeStats[app][mfe][component.componentName] || 0) + component.usagesByMfe[mfe]; + + const mfeInstances = component.instances.filter((inst) => inst.filePath.includes(`/${mfe}/`)); + const mfeFiles = component.files.filter((file) => file.includes(`/${mfe}/`)); + const mfeCommonProps = calculateCommonProps(mfeInstances); + + const componentDir = path.join(perApplicationDir, app, mfe, component.componentName); + fs.mkdirSync(componentDir, { recursive: true }); + + fs.writeFileSync(path.join(componentDir, "totalUsages.json"), JSON.stringify(component.usagesByMfe[mfe])); + fs.writeFileSync( + path.join(componentDir, "usagesByMfe.json"), + JSON.stringify({ [mfe]: component.usagesByMfe[mfe] }) + ); + fs.writeFileSync(path.join(componentDir, "commonProps.json"), JSON.stringify(mfeCommonProps)); + fs.writeFileSync(path.join(componentDir, "files.json"), JSON.stringify(mfeFiles)); + fs.writeFileSync(path.join(componentDir, "instances.json"), JSON.stringify(optimizeInstances(mfeInstances))); + fs.writeFileSync(path.join(componentDir, "customization.json"), JSON.stringify(component.customization)); + } + } +} + +function writeStatsFiles(perApplicationDir: string, appStats: AppStats, mfeStats: MfeStats) { + for (const app in appStats) { + const appDir = path.join(perApplicationDir, app); + fs.mkdirSync(appDir, { recursive: true }); + fs.writeFileSync(path.join(appDir, "total_stats.json"), JSON.stringify(appStats[app])); + } + + for (const app in mfeStats) { + for (const mfe in mfeStats[app]) { + const mfeDir = path.join(perApplicationDir, app, mfe); + fs.mkdirSync(mfeDir, { recursive: true }); + fs.writeFileSync(path.join(mfeDir, "total_stats.json"), JSON.stringify(mfeStats[app][mfe])); + } + } +} + +function generatePerApplicationStructure(report: MergedReport, outputDirPath: string) { + const perApplicationDir = path.join(outputDirPath, "per-application"); + fs.mkdirSync(perApplicationDir, { recursive: true }); + const appStats: AppStats = {}; + const mfeStats: MfeStats = {}; + + for (const component of report.componentStats) { + processComponentForApplication(component, perApplicationDir, appStats, mfeStats); + } + + writeStatsFiles(perApplicationDir, appStats, mfeStats); +} + +function run() { + const inputFilePath = path.resolve(options.input); + const outputDirPath = path.resolve(options.output); + + const rawData = fs.readFileSync(inputFilePath, "utf-8"); + const report: MergedReport = JSON.parse(rawData); + + // Clean output directory + if (fs.existsSync(outputDirPath)) { + fs.rmSync(outputDirPath, { recursive: true, force: true }); + } + fs.mkdirSync(outputDirPath, { recursive: true }); + + generatePerComponentStructure(report, outputDirPath); + generatePerApplicationStructure(report, outputDirPath); +} + +run(); diff --git a/tools/mrc-usage-report-json-splitter/tsconfig.json b/tools/mrc-usage-report-json-splitter/tsconfig.json new file mode 100644 index 000000000..7d9efe288 --- /dev/null +++ b/tools/mrc-usage-report-json-splitter/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "es2016", + "module": "commonjs", + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "strict": true, + "skipLibCheck": true, + "outDir": "./dist" + }, + "include": ["src/**/*"] +} diff --git a/tools/mrc-usage-report/README.md b/tools/mrc-usage-report/README.md new file mode 100644 index 000000000..2dcb70dc9 --- /dev/null +++ b/tools/mrc-usage-report/README.md @@ -0,0 +1,174 @@ +# MRC Usage Report + +This tool generates a comprehensive usage report for MaaS React Components (MRC) across multiple applications with micro-frontends + +## Overview + +The MRC Usage Report tool is a command-line utility that scans specified application codebases to identify how and where `maas-react-components` are being used. It helps answer questions like: + +- Which MRC components are used in a specific application or MFE? +- How many times is a particular component used? +- What props are being passed to each component instance? +- Which components are not being used at all? +- What version of MRC is each MFE using? + +This information is crucial for maintaining the component library, understanding the impact of changes, planning deprecations, and ensuring consistency across different applications. + +## How It Works + +The tool performs the following steps: + +1. **Discover MFEs**: It identifies the MFEs to be analyzed based on the provided paths. +2. **Scan Files**: It scans the source code of the target MFEs for relevant files (`.ts`, `.tsx`). +3. **Parse Components**: It parses the files to find instances of MRC component usage and extracts information about props. +4. **Aggregate Data**: It aggregates the collected data to create a comprehensive overview of component usage statistics. +5. **Generate Report**: It generates a report in various formats (HTML, JSON, YAML, CSV) summarizing the findings. + +## Usage + +### Prerequisites + +Ensure you have Node.js installed and have run `npm install` in the `maas-react-components` repository. + +### Running Locally + +To run the report generator locally, follow these steps: + +1. **Navigate to the tool's directory:** + + ```bash + cd tools/mrc-usage-report + ``` + +2. **Install dependencies:** + + ```bash + npm install + ``` + +3. **Build the tool:** + + ```bash + npm run build + ``` + +4. **Run the report generator with the desired options:** + ```bash + npm start -- --all \ + --maas-ui-path ../../../maas-ui \ + --maas-ops-ui-path ../../../maas-ops-ui \ + --broker-manager-path ../../../broker-manager \ + -f json + ``` + +### Local Directory Structure Example + +For the local scanner to work correctly, your directory structure should be set up as follows. The `maas-react-components`, `maas-ui`, `maas-ops-ui`, and `broker-manager` repositories should be siblings in the same parent directory. + +``` +/path/to/your/projects/ +├── maas-react-components/ +│ └── tools/ +│ └── mrc-usage-report/ <-- You are here +├── maas-ui/ +├── maas-ops-ui/ +└── broker-manager/ +``` + +### Scannable Applications + +The tool is configured to scan the following applications and their micro-frontends: + +- **maas-ui**: Scans all MFEs found within the `micro-frontends` directory. +- **maas-ops-ui**: Scans all MFEs found within the `micro-frontends` directory. +- **broker-manager**: Scanned as a single application. + +When using the `--all` flag, the tool will automatically discover and analyze all the MFEs within these applications. + +### Command-Line Options + +For a typical local run, you will primarily use the following options. The tool provides sensible defaults for other parameters. + +| Option | Alias | Description | Default | +| ------------------------------ | ----- | -------------------------------------------------------------------- | ---------------------- | +| `--all` | | Scan all MFEs across `maas-ui`, `maas-ops-ui`, and `broker-manager`. | `false` | +| `--mfes ` | `-m` | Comma-separated list of specific MFEs to analyze. | | +| `--output ` | `-o` | Output directory for the report. | `./reports` | +| `--format ` | `-f` | Output format(s). Supported: `html`, `json`, `yaml`, `csv`. | `html` | +| `--maas-ui-path ` | | Path to the `maas-ui` repository. | `../../maas-ui` | +| `--maas-ops-ui-path ` | | Path to the `maas-ops-ui` repository. | `../../maas-ops-ui` | +| `--broker-manager-path ` | | Path to the `broker-manager` repository. | `../../broker-manager` | +| `--help` | | Display help for all available commands. | | + +## GitHub Actions Workflow + +The MRC Usage Report is automatically generated and updated via a sophisticated GitHub Actions workflow setup that ensures reliability and development flexibility. + +### Architecture: Scheduler and Worker + +The system uses a two-workflow (master-slave) architecture: + +1. **Scheduler Workflow (`mrc-usage-report-scheduler.yml`)** + + - **Purpose**: This workflow acts as a simple, reliable timer. Its sole responsibility is to trigger the main worker workflow on a schedule. + - **Trigger**: It runs daily at 8 AM EST (12 PM UTC) based on a `cron` schedule. It can also be triggered manually. + - **Constraint**: GitHub requires scheduled workflows to exist on the default branch (`main`) to run reliably. This scheduler meets that requirement. + +2. **Worker Workflow (`mrc-usage-report-worker.yml`)** + - **Purpose**: This is the main workflow that contains all the logic for checking out the required repositories, running the report generation script, and committing the updated data. + - **Trigger**: It is triggered by the Scheduler workflow via a `workflow_dispatch` event. It is designed to run on a specific feature branch (`feature/mrc-usage-report-data`). + +### Why this Architecture? + +This separation allows for continuous development and testing of the report generation logic on the `feature/mrc-usage-report-data` branch without impacting the stability of the `main` branch. The scheduler on `main` remains untouched and reliably triggers the worker, which always uses the latest code from the feature branch. + +A key reason for this design is to **allow the workflow to autonomously commit its generated data back to the repository**. By operating on a feature branch, the workflow can push updates without needing a pull request or manual approval, ensuring the report data is always up-to-date. + +### How It Works + +1. The **Scheduler** workflow runs automatically every day at 12 PM UTC. +2. It checks out the `feature/mrc-usage-report-data` branch. +3. It then triggers the **Worker** workflow, instructing it to run using the code from that same feature branch. +4. The **Worker** workflow executes, generates the report data, and commits it back to the `feature/mrc-usage-report-data` branch. + +### Workflow Outputs + +When the workflow completes, it produces two primary outputs: + +1. **Committed Data**: The raw JSON data is automatically committed and pushed to the `mrc-usage-report-data` directory in the `feature/mrc-usage-report-data` branch. This provides a persistent, version-controlled history of component usage. +2. **Downloadable Artifacts**: The generated HTML and JSON reports are uploaded as a downloadable artifact named `merged-reports`. You can find this artifact on the summary page of the workflow run. This allows for easy access to the human-readable reports without needing to check out the repository. + +### Manual Trigger + +You can manually trigger the report generation at any time. This is useful for testing changes or forcing an update outside of the scheduled run. Here are the different ways to do it: + +**1. Triggering the Scheduler from `main` (Standard Manual Run)** + +This command simulates the scheduled run. It triggers the Scheduler workflow from the `main` branch, which in turn will trigger the Worker workflow on the `feature/mrc-usage-report-data` branch. + +```bash +gh workflow run "MRC Usage Report - Scheduler" --ref main +``` + +**2. Triggering the Scheduler from the feature branch** + +This is less common. It runs the Scheduler workflow using the code from the feature branch. This is useful for testing changes to the scheduler workflow itself before merging to main. + +```bash +gh workflow run "MRC Usage Report - Scheduler" --ref feature/mrc-usage-report-data +``` + +**3. Triggering the Worker Directly (Most Common for Development)** + +This command bypasses the scheduler and triggers the report generation worker directly. This is the most direct way to test the reporting logic. + +```bash +gh workflow run "MRC Usage Report Generation" --ref feature/mrc-usage-report-data +``` + +- **`gh workflow run "..."`**: This command initiates a run of the specified workflow. +- **`--ref `**: This is a crucial parameter that tells GitHub Actions to use the version of the workflow file that exists on the specified branch. This ensures that you are always running the correct version of the logic. + +## References + +- [maas-ui MRC Usage Report Tool](https://github.com/SolaceDev/maas-ui/tree/sthomas/mrc-usage-report/tools/mrc-usage-report) diff --git a/tools/mrc-usage-report/package-lock.json b/tools/mrc-usage-report/package-lock.json new file mode 100644 index 000000000..e7394a353 --- /dev/null +++ b/tools/mrc-usage-report/package-lock.json @@ -0,0 +1,1261 @@ +{ + "name": "mrc-usage-report", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "mrc-usage-report", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0", + "@types/js-yaml": "^4.0.9", + "axios": "^1.6.0", + "chalk": "^4.1.2", + "commander": "^11.0.0", + "glob": "^10.3.10", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.20.4", + "@types/node": "^20.8.2", + "ts-node": "^10.9.1", + "typescript": "^5.2.2" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.0.tgz", + "integrity": "sha512-lJjzvrbEeWrhB4P3QBsH7tey117PjLZnDbLiQEKjQ/fNJTjuq4HSqgFA+UNSwZT8D7dxxbnuSBMsa1lrWzKlQg==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.0", + "@babel/types": "^7.28.0", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.0.tgz", + "integrity": "sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.0" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.0.tgz", + "integrity": "sha512-mGe7UK5wWyh0bKRfupsUchrQGqvDbZDbKJw+kcRGSmdHVYrv+ltd0pnpDTVpiTqnaBru9iEvA8pz8W46v0Amwg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.0", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.0", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.0", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.0.tgz", + "integrity": "sha512-jYnje+JyZG5YThjHiF28oT4SIZLnYOcSBb6+SDaFIyzDVSkXQmQQYclJ2R+YxcdmK0AX6x1E5OQNtuh3jHDrUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.12", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.12.tgz", + "integrity": "sha512-OuLGC46TjB5BbN1dH8JULVVZY4WTdkF7tV9Ys6wLL1rubZnCMstOhNHueU5bLCrnRuDhKPDM4g6sw4Bel5Gzqg==", + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.4.tgz", + "integrity": "sha512-VT2+G1VQs/9oz078bLrYbecdZKs912zQlkelYpuf+SXF+QvZDYJlbx/LSx+meSAwdDFnF8FVXW92AVjjkVmgFw==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.29", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.29.tgz", + "integrity": "sha512-uw6guiW/gcAGPDhLmd77/6lW8QLeiV5RUTsAX46Db6oLhGaVj4lhnPwb184s1bkc8kdVg/+h988dro8GRDpmYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true, + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.7.tgz", + "integrity": "sha512-dkO5fhS7+/oos4ciWxyEyjWe48zmG6wbCheo/G2ZnHx4fs3EU6YC6UM8rk56gAjNJ9P3MTH2jo5jb92/K6wbng==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/js-yaml": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", + "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "20.19.6", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.6.tgz", + "integrity": "sha512-uYssdp9z5zH5GQ0L4zEJ2ZuavYsJwkozjiUzCRfGtaaQcyjAMJ34aP8idv61QlqTozu6kudyr6JMq9Chf09dfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "dev": true, + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==", + "license": "MIT" + }, + "node_modules/axios": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz", + "integrity": "sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==", + "license": "MIT", + "dependencies": { + "follow-redirects": "^1.15.6", + "form-data": "^4.0.0", + "proxy-from-env": "^1.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/call-bind-apply-helpers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz", + "integrity": "sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dunder-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", + "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.1", + "es-errors": "^1.3.0", + "gopd": "^1.2.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/es-define-property": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", + "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-object-atoms": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", + "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-set-tostringtag": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz", + "integrity": "sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==", + "license": "MIT", + "dependencies": { + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.6", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.9", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", + "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/form-data": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.3.0.tgz", + "integrity": "sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==", + "license": "MIT", + "dependencies": { + "call-bind-apply-helpers": "^1.0.2", + "es-define-property": "^1.0.1", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.1.1", + "function-bind": "^1.1.2", + "get-proto": "^1.0.1", + "gopd": "^1.2.0", + "has-symbols": "^1.1.0", + "hasown": "^2.0.2", + "math-intrinsics": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", + "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", + "license": "MIT", + "dependencies": { + "dunder-proto": "^1.0.1", + "es-object-atoms": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/gopd": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", + "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-symbols": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", + "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true, + "license": "ISC" + }, + "node_modules/math-intrinsics": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", + "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "license": "MIT", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "dev": true, + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + } + } +} diff --git a/tools/mrc-usage-report/package.json b/tools/mrc-usage-report/package.json new file mode 100644 index 000000000..14beae896 --- /dev/null +++ b/tools/mrc-usage-report/package.json @@ -0,0 +1,36 @@ +{ + "name": "mrc-usage-report", + "version": "1.0.0", + "description": "Tool to analyze MRC component usage across MFEs", + "main": "index.js", + "scripts": { + "build": "tsc", + "start": "node dist/index.js", + "dev": "ts-node src/index.ts", + "test": "jest" + }, + "keywords": [ + "component", + "analysis", + "report" + ], + "author": "", + "license": "ISC", + "dependencies": { + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0", + "@types/js-yaml": "^4.0.9", + "axios": "^1.6.0", + "chalk": "^4.1.2", + "commander": "^11.0.0", + "glob": "^10.3.10", + "js-yaml": "^4.1.0" + }, + "devDependencies": { + "@types/babel__traverse": "^7.20.4", + "@types/node": "^20.8.2", + "ts-node": "^10.9.1", + "typescript": "^5.2.2" + } +} \ No newline at end of file diff --git a/tools/mrc-usage-report/reports/mrc-usage-report-all.html b/tools/mrc-usage-report/reports/mrc-usage-report-all.html new file mode 100644 index 000000000..c77e9b322 --- /dev/null +++ b/tools/mrc-usage-report/reports/mrc-usage-report-all.html @@ -0,0 +1,181195 @@ + + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on 7/28/2025, 1:21:11 PM

+ +
+ +
+
+

Total Component Usages

+

5043

+
+
+

MFEs Analyzed

+

7

+

ep, intg, mc, saas, infra, maas-ops-react, broker-manager

+
+
+

Unique Components Used

+

68

+
+
+

Unused Components

+

12

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ + + + + + +
+ +

Component Details

+ +
+
+
+ SolaceTypography + 868 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui273
intgmaas-ui129
mcmaas-ui74
saasmaas-ui191
inframaas-ops-ui19
maas-ops-reactmaas-ops-ui182
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant425
sx100
fontWeight43
mt38
data-qa29
mb28
id23
ml18
key18
component18
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (868)

+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ml
1
color
bulkMoveLimitExceeded ? "error" : undefined
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
marginTop
0.5
marginBottom
0.5
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
fontWeight
400
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
role
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
component
span
variant
h5
key
`roles-${label}`
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
3
fontWeight
400
fontSize
14
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
paddingBottom
1.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontSize
12
paddingTop
1
paddingLeft
4
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
sx
{ color: "primary" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: "primary" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontSize
12
paddingTop
1
paddingLeft
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
mb
2
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
color
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
fromGraphView ? { color: "text.secondary" } : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
width
"max-content"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
messageDetailsAddEvents
width
"max-content"
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"body1"
sx
{ marginBottom: 1, color: ux.secondary.text.wMain }
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileNameValue
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
noWrap
true
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"updateLabel"
variant
h5
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
topicAddress
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.deprecated.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
selected && 500
pl
imageComponent ? 2 : 5.25
pr
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
fontWeight
600
sx
{ color: theme.palette.ux.brand.w30 }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
width
600
sx
{ fontSize: "1.5rem", color: invertTextColor }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
showGraphic ? 500 : "100%"
sx
{ color: invertTextColor }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
ml
1
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
sx
{ fontSize: "1.5rem", color: `${theme.palette.ux.primary.text.w10}` }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: `${theme.palette.ux.primary.text.w10}` }
+
+ + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
`24px`
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
data-qa
reuseIndexPurposeQuestionTooltip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
reuseIndexPurposeDescriptionTooltip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
data-qa
reuseIndexPurposeQuestionPopup
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
reuseIndexPurposeDescriptionPopup
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
style
{ marginBottom: "16px" }
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${consumer.name}-template`
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
color
"warning"
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
id
applicationDomainName
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
body1
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
id
applicationDomainName
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
gutterBottom
true
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_payload_fieldName`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_payload_propertyType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
paddingY
1
variant
h5
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
1
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_header_propertyName`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_header_propertyType`
pr
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
m
1
id
`${convertedId}_wrapper_fieldName`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
m
1
id
`${convertedId}_wrapper_fieldType`
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pl
2
pb
2
variant
h3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_constant_propertyName`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_constant_propertyType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
paddingY
1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
variant
h5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_header_propertyName`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_header_propertyType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${convertedId}_header_propertyName`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.text.wMain }
id
`${convertedId}_header_propertyType`
pr
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
paddingY
1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
inline-block
ml
1
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"apiErrorResponse"
display
inline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"generalErrorPrefix"
display
inline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"errorMessages"
display
inline
variant
h5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"generalErrorSuffix"
display
inline
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: theme.palette.grey[500] }
id
conn_flow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
id
connector_marketing_title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
connector_marketing_description
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
"flex"
fontWeight
500
mr
4
id
connector_marketing_help
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mb
1
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
0.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
auto
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ml
1
mt
"6px"
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
0.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain }
ml
auto
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
textVariant ? textVariant : "body1"
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
ml
2
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{
+								overflow: "hidden",
+								textOverflow: "ellipsis",
+								display: "-webkit-box",
+								WebkitLineClamp: "3",
+								WebkitBoxOrient: "vertical"
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }
ml
0.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }
ml
0.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
mr
2
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
color
"error"
sx
{ width: "90%", wordWrap: "break-word" }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
variant ?? "body1"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"caption"
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
fontWeight
500
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
inline-block
ml
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() =>
+								history.push({
+									pathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`
+								})
sx
{ color: theme.palette.primary.main }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
role
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
component
span
variant
h5
key
`roles-${label}`
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
component
div
sx
{ color: "text.secondary" }
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
ml
-0.5rem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
mt
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
mt
theme.spacing(1)
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ color: theme.palette.ux.secondary.text.wMain }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
role
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
key
`roles-${label}`
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
16
mr
1
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
14
sx
{ color: theme.palette.primary.main }
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
component
div
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
component
div
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
fontWeight
500
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
4
variant
h3
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "14px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "16px", fontWeight: "500" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "14px" }
marginTop
2
marginBottom
4
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
24px
fontWeight
500
textAlign
right
data-qa
pcuCostValue
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
style
{ alignContent: "center" }
fontSize
24
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
style
{ color: theme.palette.ux.secondary.wMain }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
4
fontWeight
500
style
{ color: theme.palette.ux.secondary.wMain }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
3
variant
h3
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
3
variant
h3
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
display
"inline-block"
+
+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
display
"inline-block"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
16
mr
1
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
14
sx
{ color: theme.palette.primary.main }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
fontSize
14
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
fontSize
14
sx
{ color: theme.palette.primary.main }
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
3.3
ml
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
1rem
sx
{ opacity: 0.8 }
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
securitySettingsWarning
mb
2
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
subTitle
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ whiteSpace: "initial" }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontWeight: "bolder", color: "inherit" }
+
+ + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "1.33rem", marginBottom: ".3rem" }
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
fontWeight
400
textAlign
"center"
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
14
mt
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
display
"block"
data-qa
supportModalSuccessMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
display
"contents"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
display
"block"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontWeight
400
mt
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
className
message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
pt
2
pb
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pb
3
fontWeight
400
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pb
2
fontWeight
400
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pt
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
pb
2
fontWeight
400
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
style
{ paddingLeft: "0" }
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
detailsLabel
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
detailsLabel
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
noProblemText
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
sx
{ paddingRight: theme.spacing() }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: theme.palette.text.secondary }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
sx
{ paddingRight: theme.spacing() }
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
textAlign
"center"
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
sx
{ wordBreak: "break-all", whiteSpace: "normal" }
textAlign
"center"
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h2
sx
{ wordBreak: "break-all", whiteSpace: "normal" }
textAlign
"center"
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
messageHeading
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
messageHeading
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
messageHeading
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
attachReadStateClassName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
className
attachReadStateClassName
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
paddingTop
theme.spacing(1)
paddingBottom
theme.spacing()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
align
left
variant
h3
fontWeight
bold
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
align
right
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
marginTop
auto
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
align
right
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
align
right
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
data-qa
exportClustersTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
data-qa
exportClustersLoadingMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
data-qa
exportClustersSuccessMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
caption
sx
{ color: "text.secondary" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
dataQa
variant
body1
minHeight
theme.spacing(4)
alignItems
center
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
padding
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
padding
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
padding
theme.spacing(1)
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
padding
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
padding
theme.spacing(1)
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
aggregationDetailsDescription
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
noSearchResultsToShow
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
paddingLeft
3
paddingTop
3
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h4
color
result.healthy ? "success" : "error"
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
sx
{ paddingTop: theme.spacing(3.6) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
sx
{
+								paddingTop: ddOrgData?.subOrgName ? theme.spacing(1) : theme.spacing(3.6),
+								whiteSpace: "nowrap",
+								display: "flex",
+								flexDirection: "column"
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ whiteSpace: "nowrap" }
variant
body1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h1
sx
{ paddingBottom: theme.spacing(3), paddingTop: theme.spacing(3) }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: theme.spacing(1) }
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+											paddingTop: theme.spacing(3.6),
+											marginLeft: theme.spacing(7),
+											display: "flex",
+											flexDirection: "row"
+										}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ width: theme.spacing(10), marginRight: theme.spacing(4) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ width: theme.spacing(10), marginRight: theme.spacing(4.5) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ width: theme.spacing(10), marginRight: theme.spacing(2.5) }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ marginRight: theme.spacing(4), width: theme.spacing(10) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ marginRight: theme.spacing(4.5), width: theme.spacing(10) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ marginRight: theme.spacing(2.5), width: theme.spacing(10) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
p
3
sx
{ fontWeight: "500" }
variant
h2
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
row.result === "Fail" && { color: "error" }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
row.result === "Fail" && { color: "error" }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
row.level === "HIGH" && { fontWeight: 900 }
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mr
6
variant
h3
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: "14px" }
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontSize
24px
fontWeight
500
textAlign
right
data-qa
pcuCostValue
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ fontSize: theme.typography.caption, color: theme.palette.grey[700] }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
productCodeColumnQa
fontWeight
500
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
textAlign
"right"
fontWeight
500
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
productCodeNameQa
fontWeight
400
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
productHeaderQa
variant
h3
mt
2
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fontWeight
500
style
{ color: theme.palette.primary.main }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.grey[600] }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
productCodeColumnQa
fontWeight
500
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
textAlign
"right"
fontWeight
500
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
orgDetailHeaderQa
variant
h5
mt
2
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
accountHeaderQa
variant
h5
mt
5
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
productHeaderQa
variant
h5
mt
5
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
productCodeColumnQa
fontWeight
500
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
data-qa
loading-message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
data-qa
no-results-message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h5
fontWeight
500
data-qa
`state-group-${state.toLowerCase()}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
type
variant
body1
data-qa
`type-count-${state.toLowerCase()}-${type}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
body1
data-qa
no-features
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
h3
gutterBottom
true
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
ref
ref
variant
body1
noWrap
true
sx
{
+				maxWidth: "100%",
+				overflow: "hidden",
+				textOverflow: "ellipsis",
+				whiteSpace: "nowrap"
+			}
title
name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
p
3
sx
{ fontWeight: "500" }
variant
h2
+
+ + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "flex", alignItems: "center" }
mb
2
fontWeight
500
fontSize
16
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
2
sx
{ color: theme.palette.grey[700] }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
2
sx
{ color: theme.palette.grey[700], display: "flex" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ color: theme.palette.primary.main }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
theme.spacing(6)
variant
h3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
mb
theme.spacing(3)
+
+ + + + + + + + + + + +
+
+ +
+
+
+ SolaceButton + 809 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui426
intgmaas-ui67
mcmaas-ui100
saasmaas-ui109
inframaas-ops-ui8
maas-ops-reactmaas-ops-ui99
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant807
onClick592
dataQa407
href212
isDisabled174
title91
dense72
key52
id32
type16
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (809)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/schemaUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
jsonSchemaSpecLink
href
https://json-schema.org/specification.html
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("smfTopics", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("smfTopics", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
commandBlockCopyButton
variant
icon
onClick
handleCopy
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/account-details/private-regions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseMessagingServiceDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOpenMessagingServiceDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`${protocol}//${host}/environments`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][addSchemaRegistry]
variant
text
onClick
handleAddSchemaRegistry
isDisabled
schemaAuthArray?.length > 0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => onDownload(false)
dataQa
downloadButton
isDisabled
!Object.values(namingStrategy).includes(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onOpenVersion ?? onClose
dataQa
returnToApplicationButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm"
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleDisplayDiscrepancyTable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleDisplayDiscrepancyTable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://www.solace.com
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
component
span
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
cancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
linkToApplicationVersionDetails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleUndo
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
toggleCheckbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
resourceAssignmentDelete
title
messages.remove
onClick
() => onRemoveResourceAssignment(resourceAssignment)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"outline"
onClick
() => onAddResourceAssignment(displayedUserTypes[0])
isDisabled
isDisabled
dataQa
addUser
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
eventMeshLink
dense
true
onClick
() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, "_self")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learningCenterLink
dense
true
onClick
() => window.open("/learningCenter", "_self")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_environments
variant
link
href
"https://docs.solace.com/Cloud/environments.htm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
lcVideoTutorialsLink
href
brandableTextValueConverter("videoTutorials", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
trainingCoursesLink
href
brandableTextValueConverter("courses", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
epOverviewDocsLink
href
brandableTextValueConverter("overviewDocs", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeConfigSidePanelButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
onClose
dataQa
"closeDetailsDialog"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBackButtonClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onViewInDesigner(version)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onClose
dataQa
"cancelAddEventToApplication"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSave
dataQa
"saveAddEventToApplication"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBackButtonClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onViewInDesigner?.(version)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onAddToApplication(version)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Edit
dataQa
`${caKey}-edit`
onClick
() => onEditName(entityType, index)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`${caKey}-delete`
onClick
() => handleDelete(entityType, index)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("customAttributes", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
key
`${caKey}-viewall-button`
onClick
() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("customAttributes", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${caKey}-add`
variant
text
dense
true
onClick
() => onAdd(entityType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learnMore
href
brandableTextValueConverter("kpiDashboardLearn", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
goToRuntime
dataQa
goToRuntime
variant
call-to-action
onClick
() => {
+				history.push(`/ep/runtime`);
+			}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
goToDesigner
dataQa
goToDesigner
variant
outline
onClick
() => {
+				history.push(`/ep/designer`);
+			}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
handleCancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
handleApply
isDisabled
!hasUnsavedChanges
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
action.dataQa
key
action.id
...
action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleEdit
dataQa
editDetailsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelDetailsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSave
isDisabled
saveInProgress
dataQa
saveDetailsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://semver.org
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onVersionAdd
dataQa
addVersionButton
title
Add New Version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setShowVersionDetails(false)
title
Hide Version List
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setShowVersionDetails(true)
title
Show Version List
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
changeVersionState
variant
text
onClick
onChangeVersionState
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"customAttributeDefinitionsEditorButton"
variant
text
onClick
() => handleOpenCustomAttributeDialog()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleNavigateBackToOrigin
dense
true
underline
none
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Remove
dataQa
`applicationVersion.clientProfileNameRemove`
onClick
handlRemoveClientProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageClientProfile
dataQa
manageClientProfileName-button
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleStartOverriding
dataQa
overrideClientProfileName-button
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleResetOverride
dataQa
resetOverrideClientProfileName-button
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageClientProfile
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Remove
dataQa
`applicationVersion.clientProfileNameRemove`
onClick
handlRemoveClientProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
selectedVersionInEdit
onClick
() => handleVersionEdit(selectedVersion)
dataQa
editThisVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
selectedVersionInEdit
onClick
() => handleVersionEdit(selectedVersion)
dataQa
editThisVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
disableFormButtons
variant
text
onClick
handleCancelVersion
dataQa
discardChangesButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || disableFormButtons
variant
outline
onClick
handleSubmitVersionClick
dataQa
saveVersionButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || disableFormButtons
variant
call-to-action
onClick
handleSubmitAndCloseVersionClick
dataQa
saveVersionAndCloseButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCloseVersion
dataQa
closeButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
createVersion
variant
call-to-action
onClick
handleCreateVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleClear
dataQa
`${dataQa}-clear`
title
Clear Topic Address
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleEditClick
dataQa
configureVarButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleClear
dataQa
`${dataQa}-clear`
title
Clear Topic Address
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAdd
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
isDisabled
removeDisabled
onClick
() => handleRemove(index)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicSubscriptions", "link")
data-qa
infoBlurbLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
setKafkaPreferences
onClick
onSetKafkaPreferences ? onSetKafkaPreferences : null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
recenterGraph
title
"Center Graph"
dataQa
centerGraph
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
"More Actions"
...
buttonProps
onClick
handleMenuClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
latestGraphUrl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
docUrl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
docUrl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
docUrl
onClick
() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onDismiss
title
Close
dataQa
close-btn-inline-banner
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
action-btn-inline-banner
variant
call-to-action
isDisabled
isButtonDisabled
onClick
onButtonClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onDismiss
title
Close
dataQa
close-btn-inline-banner
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
recenterGraph
title
"Center Graph"
isDisabled
graphEmpty
dataQa
centerGraph
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://semver.org
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`${filterType}-delete`
onClick
() => handleDelete(filterType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`${customAttributeFilterType}-delete`
onClick
handleDeleteFilter
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters(true, true)
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
latestJarFileLink
href
eventManagementAgentResources.version.needUpgradeLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connectEventBrokerButton
variant
text
onClick
handleOpenSidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleOpenSidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || !eventManagementAgent?.eventManagementAgentRegionId
variant
call-to-action
onClick
handleCreateAgent
dataQa
saveAndCreateConnectionFileButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
discardChangesButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId
variant
call-to-action
onClick
handleEditAgent
dataQa
saveAndCreateConnectionFileButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleFinishClick
dataQa
finishWalkthroughButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCompleteInstallationSetupClick
dataQa
comnpleteInstallationSetupButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSkipButton
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleFinishClick
dataQa
finishWalkthroughButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
id
downloadButtonId
dataQa
downloadButtonId
onClick
(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
id
copyButtonId
dataQa
copyButtonId
onClick
(evt) => handleCopyFile(evt, details, emaType, copyButtonId)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceProducts/event-management-agent/releases
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/ep/runtime?sortBy=name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace-sso.solace.cloud/support/error-id-help
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleMessagingService(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => handleMessagingService(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
openMessagingServiceDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeSidePanelCloseButton
title
Close Side Panel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
(evt) => handleDownloadFile(evt)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCopyFile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
EMA_PREREQUISITES_LINK
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
variant
text
onClick
handleCreateRuntimeAgent
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
viewModeledEventMeshes
variant
outline
onClick
handleViewModeledEventMeshes
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/account-details/private-regions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceLabs/event-management-agent/blob/main/README.md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => removeMessagingService(messagingService)
title
Remove
dataQa
removeMessagingService
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
agentSidePanelCloseButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => handleDownloadConnectionFile(item.id, item.name)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://github.com/SolaceLabs/event-management-agent/blob/main/README.md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
variant
onClick
() => handleCollectData(selectedMessagingService)
dataQa
runDiscoveryScan
isDisabled
isDiscoveryScanButtonDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleAddExistingMessagingService
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connectEventBrokerButton
onClick
handleAddExistingMessagingService
key
"addMessageService"
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
viewConnectionDetailsButton
variant
text
onClick
handleViewConnectionDetails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleDeleteMessagingService(selectedMessagingService)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push("/account-details/private-regions")
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("datacenters", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("datacenters", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("eventManagementAgents", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleRemoveVersionEntity(entityVersion.id)
dataQa
removeEntityFromListButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setIsAddMode(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Back to manage associations
onClick
() => setIsAddMode(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
backToGraphView
dataQa
backToGraphView
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
memSidePanelCloseButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!item?.auth?.canOpenModelEventMesh
onClick
onViewDetail
dataQa
viewMEMDetailsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCreateMem
dataQa
createModeledEventMeshButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
viewEventManagementAgentConnections
variant
outline
onClick
() => history.push("/account-details/private-regions")
dataQa
viewEMAConnections
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
viewEventManagementAgentConnections
variant
outline
onClick
handleViewEventManagementAgentConnections
dataQa
viewEMAConnections
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCreateMemDialogOpen
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => showObjectRelationshipsForFirstObjectCallback?.()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => refreshGraphCallback?.(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRefreshEventMeshDetails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("designerTool", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleRefreshEventMeshDetails()
title
"Refresh graph with the latest objects and layout"
dataQa
refreshGraph-button
isDisabled
graphLoading || graphUpdating || drawInProgress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleGoToMessagingServiceTab
variant
link
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleGoToDesigner
variant
link
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("modeledEventMesh", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
onClick
handleOnClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => setAutoCollectDialogOpen(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
refreshAllAuditResults
variant
icon
onClick
() => setRefresh(true)
dataQa
refreshAllAuditResults
title
Refresh all audit results
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("auditRuntimeData", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("auditRuntimeData", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
hideSecondaryPanel
dataQa
closeButton
title
Go Back
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onCloseDetails
dataQa
closeButton
title
Go to Selection Panel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCompare
variant
outline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCompare
variant
outline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onDeselectAll
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
auditImportJob-close
title
Remove
onClick
() => handleDismissJob(jobId)
underline
none
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
link
onClick
() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
link
onClick
() => handleDetailDialogOpen(eventDetail.parent, eventDetail)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCompareVersions
dataQa
"compareVersionsBtn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
() => onVersionItemClick(version.id)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
() => onVersionItemClick(version.id)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleShowMore
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBack
dataQa
"backCompareConfigDialog"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => onViewConfiguration(isSchemaParent)
dataQa
"showFullConfiguration"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRefresh
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleViewEventBrokerConnections
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
underline
none
onClick
() => handleRefreshAuditResult()
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClearAll
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("applicationDomain", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
buttonVariant || "outline"
isDisabled
disabled
dataQa
chooseImportOptionButton
onClick
() =>
+						handleImport(
+							auditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent
+						)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()
variant
"text"
onClick
() => onVersionSelection(applicationVersion)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
onClick
handleDeselect
dataQa
validationErrorDeselect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkButton
variant
link
href
`/ep/runtime/modeled-event-meshes/${eventMeshId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkButton
variant
link
href
designerLink
dataQa
designerLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkButton
variant
link
href
"/ep/catalog"
dataQa
catalogLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setOpenCelebratoryDialog(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
auditImport-action
onClick
action
underline
none
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleUndoTagAction(request)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSetToDefault
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm"
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas"
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
linkHref
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleOpenDeleteTemplateDialog(true, row)
dataQa
deleteTemplateButton
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCreateTemplate
dataQa
createTemplateButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCancel
variant
text
dataQa
cancelTemplate
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onSave
variant
call-to-action
dataQa
saveTemplate
isDisabled
createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => handleOpenAddToApplicationModal(selectedEvent)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
dataQa
`${camelCase(title)}-${secondaryAction.completed}-button`
onClick
() => {
+							secondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);
+						}
isDisabled
secondaryAction?.disabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							handleOpenLink("setUpEMA");
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							handleOpenLink("setUpMEM");
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
sampleApplicationsDomainsLink
href
brandableText.solace.links.sampleDocs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							handleOpenLink("design");
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
dismissExploreSample
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => {
+									handleOpenLink("videoTutorials");
+								}
endIcon
dataQa
howToVideosButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
handleOpenUserManagement
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learnMoreTooltipLink
href
brandableTextValueConverter("kpiDashboardLearn", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
learnMoreCardLink
href
brandableTextValueConverter("kpiDashboardLearn", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
`switchModeAction-${modeToSelect}`
title
selectMessage
onClick
() => handleModeSelection(modeToSelect)
isDisabled
modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
applyAction
title
messagesCommon.button.apply
onClick
applyChanges
isDisabled
!!fetchError ||
+						(templates?.length && (templateNotFound || !!templateOutOfSync)) ||
+						templateHasSchemaErrors ||
+						!!errors[FormNameConfiguration]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => onRemove(type, header)
title
Delete
dataQa
removeRequestHeader
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
addQueueBinding
isDisabled
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOverride
dataQa
overrideQueueBinding
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClearOverride
dataQa
clearOverrideQueueBinding
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleRemoveConfiguration()
title
Delete
dataQa
removeQueueBinding
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setShowRequestHeaderDialog(true)
dataQa
addRequestHeader
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOnAddQueueBinding
dataQa
isGlobal ? "addQueueBinding" : "overrideQueueBinding"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleOnDelete
variant
"icon"
title
Delete
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setShowConsumerType(true)
dataQa
rdpShowConsumerType
isDisabled
showConsumerType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRemoveRestDeliveryPointConfiguration
dataQa
rdpShowReset
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOverrideRestDeliveryPointConfiguration
dataQa
rdpShowOverride
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleRemoveRestDeliveryPointConfiguration
title
Delete
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setShowRestConsumer(true)
isDisabled
showRestConsumer || !configurationTypeId || !isEditing
dataQa
rdpShowRestConsumer
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
selectAnotherTemplateAction
variant
link
onClick
onSelect
isDisabled
isSelectDisabled
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"customizeAction"
variant
outline
onClick
onCustomize
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"refreshAction"
variant
call-to-action
onClick
onRefresh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
action.variant || "text"
onClick
action.onClick
dataQa
action.dataQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
custom-learnMore
href
en.application.links.queueConfiguration
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
template-learnMore
href
messagesTemplate.solaceQueue.infoBlurb.linkHref
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
`switchModeAction-${modeToSelect}`
title
selectMessage
onClick
() => setModeSelectionToConfirm(modeToSelect)
isDisabled
modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
applyAction
title
messagesCommon.button.apply
onClick
applyChanges
isDisabled
!!fetchError || templateNotFound || !!templateOutOfSync
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAddConsumer
dataQa
addConsumerButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
messages[configType].emptyLinkref
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSetUserAccess
dataQa
userAccessButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleOpen
dataQa
openApplicationDomainButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("sampleDocs", "link")
dense
true
onClick
() => Mixpanel.track("clickSampleDocumentationLink")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
createAppDomain-btn
variant
call-to-action
onClick
handleCreate
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
importAppDomain-btn
variant
text
onClick
() => importDomainsFileRef.current?.click()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
brandableTextValueConverter("topicAddresses", "link")
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("enumerations", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleUndoUpload(valuesToUndo)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+									if (fileInputRef) fileInputRef.current.click();
+								}
isDisabled
fileUploading
dataQa
enumerationVersion[values]-importFromFileButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit((data) => {
+								if (!validateEnumValueSets()) {
+									return;
+								}
+
+								const preparedData = prepareEntityForBackend(data);
+
+								return handleSaveEntityAndVersion(preparedData);
+							})
isDisabled
createEnumeration.isLoading
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => handleGoToSelectedApplicationDomain()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleOpenFullConfiguration
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleOpenFullConfiguration
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
title
Edit
onClick
onEdit
dataQa
domainGraphSidePanel-details-editBtn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelCustomAttributesButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => handleSave()
isDisabled
!isDirty || isWritingEpCore || saveInProgress
dataQa
saveCustomAttributesButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
title
Edit
onClick
onEdit
dataQa
`${entityType}NodeSidePanelCustomAttributeEditButton`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClickCancel
dataQa
cancelDetailsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => handleSave(existingLatestNonRetiredVersion)
isDisabled
!isDirty || saveInProgress || isWritingEpCore
dataQa
saveDetailsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseInfoBlurb
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClosePanel
dataQa
leftSidePanelCloseButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Edit Appearance
onClick
handleEditAppearance
dataQa
edit-appearance-button
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => refreshGraphCallback?.(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
onClick
() => goToComponentLists?.()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleRefreshGraph
title
"Refresh graph with the latest versions and layout"
dataQa
refreshGraph-button
isDisabled
graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
"Add To Graph"
title
Add To Graph
variant
outline
endIcon
dataQa
addToGraph-button
isDisabled
!!nodeIdWithUnsavedChanges
onClick
handleMenuClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseInfoBlurb
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
dataQa
findOnGraph
key
"findOnGraph"
onClick
() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)
isDisabled
searchButtonDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
dataQa
DomainGraphLeftPanelMode.ADD_OBJECTS
key
DomainGraphLeftPanelMode.ADD_OBJECTS
onClick
() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)
isDisabled
leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseSearchPanel
dataQa
searchPanelCollapseButton
title
Collapse
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
(e) => handleNavigateToComponentList(e, entityType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageEventApis
isDisabled
sidePanelOpen
dataQa
manageEventApisButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
selectedEventApiVersionIds.includes(versionData.id) ? "text" : "outline"
id
`${versionData.id}-versionButton`
key
`${versionData.id}-versionButton`
onClick
() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? "remove" : "add", versionData)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
id
item.id
onClick
(e) => {
+					e.stopPropagation();
+					onFilterButtonClicked(item);
+				}
dataQa
`filterButton-${item.id}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(handleSaveEntityAndVersion)
isDisabled
createEventApi.isLoading
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
source === "application" ? en.application.links.extension : en.eventApi.links.extension
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
version === "2.5.0" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.application.links.asyncApi
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
`planDeleteButton-${index}`
onClick
() => onPlanDelete(index)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
eapAddPlanButton
isDisabled
planFields.length === 5
onClick
onAddPlanClicked
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.eventApiProduct.labels.availability.url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setOpen(true)
isDisabled
isDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.eventApiProduct.labels.availability.dialogUrl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.eventApiProduct.labels.approvalTypes.url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(handleSaveEntityAndVersion)
isDisabled
createEventApiProduct.isLoading
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
createEventApiProductButton
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertVersionForSave)
isDisabled
createSchema.isLoading
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setTriggerVersionDuplication(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+														if (fileInputRef) fileInputRef.current.click();
+													}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
exampleSchemasButton
href
https://www.jsonschemavalidator.net/
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageReferencedSchemas
isDisabled
sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas
dataQa
manageReferencedSchemasButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+								setActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
onReviewClick
dataQa
reviewButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onReviewClick
dataQa
revokeButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onReviewClick
dataQa
approveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAddButtonClick
isDisabled
!editableSubscriptions
dataQa
`applicationVersion[consumers].${consumerIndex}.add`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Remove
dataQa
`applicationVersion[consumers].${consumerIndex}.${index}.remove`
onClick
() => handleDeleteButtonClick(consumerId, index)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
isDisabled
consumerIdInSidepanel === id && sidePanelOpen
dataQa
`applicationVersion[consumers].${index}.delete`
onClick
handleDeleteButtonClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleAdd
isDisabled
subscription === "" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress
dataQa
subscriptionAddButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => setShowSuggestedEvents(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
en.common.button.download
dataQa
`${name}-configDownload`
onClick
() => {
+				download(new Blob([configuration]), getConfigurationName(name), "application/json");
+			}
isDisabled
isDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${consumer.name}-manageConfigButton`
variant
"text"
onClick
handleManageConfiguration
isDisabled
openedSidePanel === SidePanel.manageConfiguration
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleInitiateOverride
dataQa
`${consumer.name}-overrideConfigButton`
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
`${consumer.name}-clearOverrideButton`
onClick
handleResetOverride
isDisabled
openedSidePanel === SidePanel.manageClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${consumer.name}-manageConfigButton`
variant
"text"
onClick
handleManageConfiguration
isDisabled
openedSidePanel === SidePanel.manageConfiguration
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
en.common.button.remove
dataQa
`applicationVersion[consumers].${index}.configurationRemove`
onClick
() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
(e) => handleEventVersionSelect(e, item)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleToggleEventsExpand
isDisabled
sortedItems.length === 0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleFindEventsClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onAutoCreateConsumers
isDisabled
autoCreateConsumersInProgress
dataQa
autoCreateConsumersButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
launchUserAccessDialog
variant
outline
isDisabled
getRrbacRoles.isLoading || getAttributeAssignments.isLoading
dataQa
userAccessButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
isSaveButtonDisabled()
onClick
handleSubmit(onFormSubmit)
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
addTopicDomain
onClick
handleAddTopicDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
deleteTopicDomain
onClick
() => handleDeleteFromUI(index)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
dataQa
deleteTopicDomain
onClick
() => handleDeleteFromBackend(topicDomain.id)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleEdit
dataQa
editApplicationDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleClose
dataQa
closeButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
title
"Launch link"
dataQa
launchTopicAddressResourceLink
href
resource
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
"Edit link"
dataQa
topicAddressResourcesEdit
onClick
() => setIsEditing(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
"Delete link"
dataQa
topicAddressResourcesDelete
onClick
() => onDelete()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
topicAddressResourcesAdd
onClick
() => setIsEditing(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("kafkaEvents", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("topicAddresses", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertVersionForSave)
isDisabled
createEvent.isLoading
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"create"
onClick
handleCreate
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageSchemas
isDisabled
sidePanelOpen
dataQa
`manage${keyOrValue}SchemasButton`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageSchemasForPrimitiveType
isDisabled
sidePanelOpen
dataQa
`manage${keyOrValue}SchemasForPrimitiveTypeButton`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRemoveSchema
dataQa
`remove${keyOrValue}SchemaButton`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleOpenQuickCreateSchema
dataQa
"quickCreateSchemaButton"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onBackButton
dataQa
backButton
title
Back
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSchemaVersionSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSchemaVersionRemove
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
notifyParentOfSchemaVersionSelection
dataQa
selectPrimitiveTypeButton
isDisabled
!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+													if (fileInputRef) fileInputRef.current.click();
+												}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
exampleSchemasButton
href
https://www.jsonschemavalidator.net/
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
data-qa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(handleSaveEntityAndVersion)
data-qa
createAndSelectButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleSchemaVersionSelect
isDisabled
sharedSearchCriteria && !schema.shared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSchemaVersionRemove
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleSchemaVersionSelect
isDisabled
sharedSearchCriteria && !schema.shared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleSchemaVersionRemove
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Back to add subscription
onClick
() => handleManageSubscriptions(currentSubscription, consumerName)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
Quick Create Event
onClick
() => handleOpenDialog("quickCreateEvent")
dataQa
quickCreateEventButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+								remove();
+								removeToast();
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAutoCreateConsumers
isDisabled
autoCreateConsumersInProgress
dataQa
autoCreateConsumersButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageEvents
isDisabled
sidePanelOpen && openedSidePanel === SidePanel.manageEvents
dataQa
manageEventsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCancel
data-qa
closeButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCloseTopicAddressHelp
data-qa
topicAddressHelpCloseButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
data-qa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertVersionForSave)
data-qa
createAndSelectButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${ApplicationFlowDirection.Source}-${versionData.id}`
variant
versionData.source ? "call-to-action" : "outline"
onClick
(e) => {
+						e.stopPropagation();
+
+						const clonedVersionData = cloneDeep(versionData);
+
+						delete clonedVersionData.source;
+						delete clonedVersionData.destination;
+						delete clonedVersionData.filtered;
+						onSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });
+					}
isDisabled
versionData.filtered
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${ApplicationFlowDirection.Destination}-${versionData.id}`
variant
versionData.destination ? "call-to-action" : "outline"
onClick
(e) => {
+						e.stopPropagation();
+
+						const clonedVersionData = cloneDeep(versionData);
+
+						delete clonedVersionData.source;
+						delete clonedVersionData.destination;
+						delete clonedVersionData.filtered;
+						onDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });
+					}
isDisabled
versionData.filtered
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSendAllRequests
dataQa
sendRequestButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
dataQa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit(convertFormValuesForSave)
isDisabled
createApplication.isLoading
dataQa
saveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/environments.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
isDisabled
isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)
onClick
() => setAddToEnvironmentData({ ...eventBrokerRecord })
dataQa
`${eventBroker.id}-addApplicationButton`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
declinedRequests.length + requestsToCreate.length === 0 ? "outline" : "call-to-action"
dataQa
manageRequestButton
onClick
handleOpenRequestPanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`sub-${versionData.id}`
variant
versionData.sub ? "call-to-action" : "outline"
isDisabled
versionData.stateName.toLowerCase() === "retired"
onClick
(e) => {
+								e.stopPropagation();
+
+								const clonedVersionData = cloneDeep(versionData);
+
+								delete clonedVersionData.pub;
+								delete clonedVersionData.sub;
+								onSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`pub-${versionData.id}`
variant
versionData.pub ? "call-to-action" : "outline"
isDisabled
versionData.stateName.toLowerCase() === "retired"
onClick
(e) => {
+								e.stopPropagation();
+
+								const clonedVersionData = cloneDeep(versionData);
+
+								delete clonedVersionData.pub;
+								delete clonedVersionData.sub;
+								onPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEventVersionSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
closeButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
(e) => {
+							e.stopPropagation();
+							onAddSubscription(item);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleClose
dataQa
closeButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleManageRelationshipBtnClick
dataQa
manageLinksBtn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => setInternalSearchText("")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dataQa + "-expandAll"
variant
text
onClick
handleToggleRequestsExpand
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel
data-qa
cancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
!isValid || !isDirty
onClick
mode === "existingConsumer" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)
data-qa
addSubscriptionButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
gotoRuntimeTab
isDisabled
!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
launchRDPDeploymentDialog
dataQa
addRDPToBrokerButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm"
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+						setIsEditing(true);
+					}
dataQa
credentialsEdit
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onToggleInputBType
title
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
title
Delete
onClick
handleClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
label
onClick
handleClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
variant
startIcon
showSparkle ?  : undefined
onClick
handleClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
onClick
handleFilterToggle
dataQa
`${id}_filterToggleButton`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onClearFilterClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"link"
href
href
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"icon"
onClick
handleFilterToggle
dataQa
filterToggleButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearFilters()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
viewTransformationButton
variant
text
onClick
() => handleAddTransformation(ShowTransformation.READ_ONLY)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
addTransformationButton
dataQa
addTransformationButton
variant
text
onClick
() => handleAddTransformation(ShowTransformation.CREATE)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
editTransformationButton
variant
text
onClick
() => handleAddTransformation(ShowTransformation.EDIT)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
removeRelation
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setSelectedRelation(relation)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.buttons.transformationsLink.hrefLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onAdd
dataQa
`add_${inputOrOutput}_button`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => onRemove(handle)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.buttons.transformationsLink.hrefLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
openUploadModal
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => {
+								setReImport(true);
+								openUploadModal();
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-edit-constant-dialog
onClick
() => {
+							setShowEditDialog(false);
+							setConstantField({});
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
edit-constant-button
variant
call-to-action
dataQa
edit-constant-button
onClick
applyConstantEdit
isDisabled
!!constantNameError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-add-header-dialog
onClick
() => {
+							setShowEditDialog(false);
+							setCustomHeaderField({});
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
edit-custom-header-button
variant
call-to-action
dataQa
`edit-custom-header-button-${direction}`
onClick
applyHeaderEdit
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
`edit-${fieldType}-button`
onClick
handleEdit
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
`delete-${fieldType}-button`
onClick
() => {
+							setIdToDelete(id);
+							setShowDeleteDialog(true);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-add-header-dialog
onClick
handleCancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
`add-custom-header-button-${direction}`
onClick
handleAddHeader
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
close-add-header-dialog
onClick
handleCancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
add-constant-button
onClick
handleAddConstant
isDisabled
!!constantNameError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
startIcon
onClick
handleMapWithAI
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
maxTargetHeaderCountReached()
dataQa
`add-constant-button-${direction}`
onClick
() => {
+								setAddConstantDialog(true);
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
maxTargetHeaderCountReached()
dataQa
`add-header-button-${direction}`
onClick
() => {
+								setAddHeaderDialog(true);
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.targetHeaderMapping.learnMore.href
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.connectors.targetHeaderMapping.learnMore.href
dataQa
headerLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showSensitiveField ? "eyeIcon" : "hideEyeIcon"
dataQa
showSensitiveField ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowSensitiveField(!showSensitiveField)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
(e: any) => onClick && onClick(e)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Delete
variant
icon
onClick
onDropPropertyClick(label)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
zeroStateDocLink
variant
link
href
https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
goToDocumentationButtonLink
href
connectorType.integrationHubUrl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
() => history.push(CONNECTOR_AVAILABLE)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dataQa
goToDocumentationButtonLink
href
connectorType.integrationHubUrl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
deployButton
variant
call-to-action
onClick
handleDeployState
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
openConnectorFlowButton
variant
outline
onClick
handleViewDetails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/services/${serviceDetails?.id}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setSelectedRowIds([])
dataQa
closeButton
title
en.connectors.buttons.close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace-sso.solace.cloud/support/question
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleViewErrorLogs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showClientSecret ? "eyeIcon" : "hideEyeIcon"
dataQa
showClientSecret ? "showClientSecretButton" : "hideClientSecretButton"
variant
icon
onClick
() => setShowClientSecret(!showClientSecret)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showPassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showPassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowPassword(!showPassword)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showSslKeyStorePassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showSslKeyStorePassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowSslKeyStorePassword(!showSslKeyStorePassword)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showSslPrivateKeyPassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showSslPrivateKeyPassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
showPassword ? "eyeIcon" : "hideEyeIcon"
dataQa
showPassword ? "showPasswordButton" : "hidePasswordButton"
variant
icon
onClick
() => setShowPassword(!showPassword)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
connectorTypeDetails?.integrationHubUrl
+										? connectorTypeDetails?.integrationHubUrl
+										: en.connectors.buttons.integrationHub.hrefLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/ToastAction.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
intg-toast-action
variant
text
onClick
handleRedirect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
`solace-header-action-${getDataQaValue(action.title)}`
dataTags
action.title
onClick
handleAction
isDisabled
action.disabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
href
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_environments
variant
link
href
https://docs.solace.com/Cloud/environments.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
editButton
variant
text
onClick
handleEditButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace-sso.solace.cloud/support/question
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleViewErrorLogs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
discard
dataQa
discard
variant
text
onClick
onDiscard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloneButton
dataQa
cloneButton
variant
outline
onClick
() => onSubmit(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloneAndDeployButton
dataQa
cloneAndDeployButton
variant
call-to-action
onClick
() => onSubmit(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createconnector
variant
text
onClick
() => {
+												history.push("/micro-integrations/availableMicroIntegrations");
+											}
dataQa
`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
discard
dataQa
discard
variant
text
onClick
onDiscard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
save
dataQa
save
variant
outline
onClick
() => onSubmit(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
saveDeploy
dataQa
saveDeploy
variant
call-to-action
onClick
() => onSubmit(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleDownloadLog
variant
outline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createAgent
variant
text
onClick
() => {
+										return null;
+									}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/SolaceToast.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => onDismiss()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/SolaceHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
action.variant ?? "text"
isDisabled
action.disabled
href
action.href ? action.href : undefined
dataQa
solace-header-action
dataTags
action.title
onClick
handleAction
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, helpLink)
dataQa
help-no-access
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, secondaryHelpLink)
dataQa
secondary-help-no-access
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_storage
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/Configure-Message-Spools.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_deleteprotection
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_service_deletion_protection.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_migration
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_broker_sso_settings
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_broker_sso_settings
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_dist_tracing
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/enable-dt-for-cloud.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_environments
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/environments.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleViewPassword
title
showPassword ? t({ id: "id_hide_password", message: "Hide password" }) : t({ id: "id_view_password", message: "View password" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleCopy
title
t({ id: "id_copy", message: "Copy" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
resourceAssignmentDelete
title
messages.remove
onClick
() => onRemoveResourceAssignment(resourceAssignment)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"outline"
onClick
() => onAddResourceAssignment(displayedUserTypes[0])
isDisabled
isDisabled
dataQa
addUser
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => history.push(`/mesh-manager/${eventMesh.id}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
create_event_mesh
variant
text
onClick
handleCreateMesh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
view-scaleup-logs
onClick
handleViewScaleUpLogs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
type
button
onClick
onCancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ggs_tryme.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
launchTryMe
endIcon
onClick
handleOpenTryMe
isDisabled
!allowBrokerRequests
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleSelectLibrary(null)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleShowLibraryDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleSelection(item)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
dataQa
open-ticket
href
buildSupportURL(isSAP, service.errorId, service.id)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/account-details/distributed-tracing
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
plan-upgrade-open
onClick
handleOpenUpgradeDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setViewLogs(true)
isDisabled
(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/upgrade-event-broker.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
plan-upgrade-open
onClick
onOpen
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setViewLogs(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
view-upgrade-logs
onClick
handleViewUpgradeLogs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
tutorial.url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.api
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.download[0].url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
dw.url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.api
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.tutorial
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.download[0].url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
isDisabled
readOnly
dataQa
dataQa
onClick
() => {
+						const fileInput = fileInputRef?.current;
+						if (fileInput) {
+							if (fileInput.value) {
+								try {
+									fileInput.value = "";
+								} catch (err) {
+									// that's fine
+								}
+							}
+							fileInput.click();
+						}
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCancel(idx)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleSave(idx)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleAddGroup
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES
onClick
handleShowCreateHostname
dataQa
create-hostname
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_storage
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/configure-hostnames.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnableDisable
dataQa
toggle_semp_request
isDisabled
!allowServiceQueries
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries
onClick
handleCreateEndpoint
dataQa
create-endpoint
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_port_config
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleToggle
isDisabled
!hasERPLimit || !allowServiceQueries
dataQa
toggle_erp_event_addon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/erp-add-on.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleShowMateLinkEncryption
dataQa
toggle_mate_link_encryption
isDisabled
!allowServiceQueries || mateLinkEncryption.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || !canConfigure || !canEnable
onClick
handleEnableLdapManagement
dataQa
enable-ldap-management
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dense
true
onClick
handleProfileShowDialog
dataQa
ldap-management-profile
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dense
true
onClick
handleAccessShowDialog
dataQa
ldap-management-access
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
isDisabled
!allowBrokerRequests
dataQa
launchBrokerManagerClientProfiles
href
(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || ""
onClick
handleOpenBrokerManager
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || !curClusterName
onClick
handleShowClusterName
dataQa
edit-cluster-name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/edit-cluster-name.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries || isDisabled
onClick
handleShowMessageSpoolSize
dataQa
edit-message-spool-size
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleDisableDistributedTracing
isDisabled
distributedTracingStatus == "error" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries
dataQa
distributed-tracing-disable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnableDistributedTracing
isDisabled
isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries
dataQa
distributed-tracing-enable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || ""
dataQa
launchBrokerManagerTelemetryProfiles
onClick
handleOpenBrokerManager
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCheckConnectionStatus
isDisabled
!isConfigured || !allowServiceQueries
dataQa
dt-button-status
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleConfigureDataCollection
isDisabled
!allowServiceQueries
dataQa
dt-button-deploy
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+						setResetFields(item);
+						setShowDialogIndex(index);
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleAdd
dataQa
syslog-forwarding-create
isDisabled
!allowServiceQueries || syslogs.length >= 3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
usernames.length === 0 || !allowServiceQueries
onClick
handleShowRotatePasswords
dataQa
rotate_passwords
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnable
dataQa
monitoring-enable
isDisabled
!allowServiceQueries || !canConfigure || !!configuringMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
service-auth-open-broker-manager
endIcon
onClick
handleOpenBrokerManager
isDisabled
!allowBrokerRequests
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
service-auth-edit-client-auth
onClick
handleShowAuthentication
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dense
true
onClick
handleProfileShowDialog
dataQa
service-auth-edit-profile
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+							setFetchName(item.name);
+							setAddMode(false);
+							setShowDialogIndex(index);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleEnableStandardDomainCertAuth
isDisabled
!canConfigure || !allowServiceQueries
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/server_certs.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries
onClick
handleAddClientCertAuth
dataQa
add-client-cert-auth
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/server_certs.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
hasOngoingOperation
onClick
handleAddDomainCertAuth
dataQa
add-domain-cert-auth
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => {
+						setResetFields();
+						setFetchName(item.name);
+						setShowDialogIndex(index);
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
isDisabled
!allowServiceQueries
onClick
handleAdd
dataQa
client-profile-create
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
isDisabled
!allowBrokerRequests
dataQa
dataQa
href
(allowBrokerRequests && getBrokerWebUI(path)) || ""
onClick
() => {
+							track(TRACK_ELEMENT_CLICK, { "element-id": dataQa });
+							openWindow(getBrokerWebUI(path), serviceId);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
truststoreUri ?? "https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
open-broker-manager
variant
link
dense
true
dataQa
launchBrokerManager
isDisabled
!allowBrokerRequests
href
(allowBrokerRequests && getBrokerWebUI()) || ""
onClick
openBrokerManager
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
create_service
variant
text
dataQa
solace-header-action
onClick
handleCreateService
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_user_access
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRetry
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
service.name
variant
link
dense
true
onClick
() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: "status" }))
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
close
dataQa
close
variant
outline
onClick
handleClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cancel
dataQa
cancel
variant
text
onClick
onCancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
createService
dataQa
createService
variant
call-to-action
type
submit
isDisabled
createServiceDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_port_config
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
cloning-documentation
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/cloud-clone-service.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleCustomize
isDisabled
isDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
onClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
reset
variant
icon
onClick
handleResetPort
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_services
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_pick_service_type.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_cloud
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/choose-cloud-provider.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
help_regions
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/ght_regions.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
resourceAssignmentDelete
title
messages.remove
onClick
() => onRemoveResourceAssignment(resourceAssignment)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"outline"
onClick
() => onAddResourceAssignment(displayedUserTypes[0])
isDisabled
isDisabled
dataQa
addUser
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!ssoBrokerEnabled
onClick
handleManageBrokerButton
variant
text
dataQa
manageBrokerButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleViewSettingMapping
variant
link
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleButtonClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleGotoUserGroups
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
hyperLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
aupIsLoading
onClick
handleAgree
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`limitChangeButton-${index}`
id
`limitChangeButton-${index}`
variant
text
onClick
() => {
+							setNewServiceLimit(row.limit ?? 0);
+							setEditLimitsRow(row);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/ep/runtime/event-management-agents
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
https://docs.solace.com/Cloud/environments.htm
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
https://docs.solace.com/Cloud/environments.htm
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/environments.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
/ep/runtime?sortBy=environment
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${testItem.id}-${testItem.name}-template-enabled`
variant
link
dense
true
onClick
() => {
+									history.push(`/ep/runtime/templates`);
+								}
dataQa
runtimeTemplatesLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("environmentTypeInfo", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("environmentsInfo", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
onClose
dataQa
memSidePanelCloseButton
title
Close Side Panel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
handleButtonClick
dataQa
buttonEventManager
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/environments.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
/ep/runtime/templates
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
createEnvButton
onClick
onCreateEnvClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
discardChanges
isDisabled
checkIfChangesDone()
onClick
handleCancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
isDisabled
checkIfSaveDisabled()
dataQa
saveProfileButton
id
saveButton
onClick
handleApplyButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/drawdown.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!canSave
onClick
() => saveNotifyPreferences()
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleCreateGroup
variant
call-to-action
dataQa
createGroupButton2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleShowMore
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleShowLess
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleGroupMapping
variant
text
dataQa
groupManagementButton
isDisabled
ugCount <= 0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleCreateGroup
variant
outline
dataQa
createGroupButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearInput
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"searchIcon"
variant
icon
onClick
handleClearInput
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsDialogOpen(true)
variant
outline
id
enableSsoConfigurationButton
dataQa
enableSsoConfigurationButton
isDisabled
!isSsoConfigured
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
editSsoConfigurationButton
id
editSsoConfigurationButton
onClick
() => editSSOConfiguration()
isDisabled
!hasLoginSubdomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setHideSecretKey((state) => !state)
title
en.accountSettings[hideSecretKey ? "showKey" : "hideKey"]
variant
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => updateSsoConfiguration({ state: "enabled" })
variant
call-to-action
id
saveSsoConfigurationButton
dataQa
saveSsoConfigurationButton
isDisabled
!haveStagedChangesToSave
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsDialogOpen(true)
variant
outline
id
testSsoConfigurationButton
dataQa
testSsoConfiguration
isDisabled
!isSsoConfigured
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleSsoSetup
variant
outline
id
setupSsoButton
dataQa
setUpSsoButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
en.accountSettings.learnMoreSSODoc
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
discardFilterChanges
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
downloadAuditLogs
dataQa
downloadAuditLogsJsonLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
clearAllButton
onClick
discardFilterChanges
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => setSelectedRow(null)
dataQa
logDetailsCloseButton
title
Close
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("group-management-link", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("setup-idp-link", "link")
onClick
handleGroupClaimHelpLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace.com
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsDialogOpen(true)
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace.com
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
onClick
handleTestAccessClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!claimId
onClick
handleTestAccessClick
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!canDiscardChanges
onClick
discardChanges
variant
text
dataQa
discardChangesButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)
variant
call-to-action
isDisabled
!canSave || !(canDiscardChanges || !isEnabled)
dataQa
saveChangesButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
cancelAddMapping
variant
text
dataQa
cancelAddClaimMapping
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
addMappingHandler
variant
outline
isDisabled
!groupMappingState ||
+						selectedUserGroups.length < 1 ||
+						!claimValuesMapping ||
+						claimValueError ||
+						claimValuesMapping.trim().length < 1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
addGroupMappingHandler
variant
text
isDisabled
claimMappingToEdit !== -1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
cancelClaimMappingEditHandler
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => saveMappingDetails(rowData.id)
variant
outline
isDisabled
!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
supportFormCancel
onClick
handleCancelButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
supportFormSubmit
onClick
handleSaveButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("solaceCloudStatus", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => history.push(`/account-details/users`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setIsRequestLimitChangeDialogOpen(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
onClick
() => history.push(`/support/question`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
en.overview.eventPortalSection.objectCountHelpLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => history.push(`/account-details/service-limits`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setIsRequestUpgradeDialogOpen(true)
variant
text
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
advancedSettingsButton
onClick
() => setIsAdvancedSettingsHidden((x) => !x)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
deleteAccountButton
onClick
() => setIsDeleteAccountDialogOpen(true)
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push("/")
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
sendEmailButton
isDisabled
!email.isValid
type
submit
onClick
handleSubmit
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleNavigateToLogin
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
brandableTextValueConverter("insights-notifications", "link")
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
stopNotification
variant
text
isDisabled
isFetching || mutating
onClick
() => setOpenConfirmationDialog(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
discardChanges
variant
text
isDisabled
isFetching || !formIsDirty || mutating
onClick
onDiscardChanges
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
NotificationIsActive ? "updateNotifications" : "activateNotifications"
variant
call-to-action
isDisabled
isFetching || !formIsDirty || mutating
onClick
onSubmission
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
brandableTextValueConverter("insights-email-integrations", "link")
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://solace.com/contact/
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
patchDocumentationUrl(isSAP, "https://docs.solace.com/Cloud/environments.htm")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.contactSupport
variant
link
href
brandableTextValueConverter("supportPage", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
dense
true
href
brandableTextValueConverter("eventPortalCloudEma", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
underline
always
href
brandableTextValueConverter("tokenManagementHelpLink", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onCreateTokenClick
variant
text
isDisabled
hasMaxNumberOfTokens
dataQa
createApiTokenButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleCopyToken
dataQa
copyTokenButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("solaceOpenAPIV2", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
mode === "create" ? "text" : "call-to-action"
onClick
handleCancel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleSubmit
isDisabled
createTokenIsLoading
dataQa
createTokenBtn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
onRegenerateTokenClick
variant
text
dataQa
regenerateTokenButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => history.push(`/user-settings/notify-settings`)
dataQa
notificationSettingsButton
title
en.notifications.settings
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
refreshNotificationSettingsButton
onClick
() => refetchNotifications()
variant
outline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
markAllNotificationsReadButton
onClick
() => markAllRead()
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
`${header.key}-copy`
onClick
() => navigator.clipboard.writeText(header.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
update
key
`${item.serviceId}-update`
isDisabled
!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)
onClick
() => handleUpdate(item)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
`/services/${item.serviceId}`
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
brandableTextValueConverter("tracingDestinationLink", "link")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
tracingProfile.infoMessage.link.href
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.otlpHttp
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
links.otlpHttp
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
viewServicesButton
variant
text
onClick
() => setSynchTracingDialog(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
tracingLimits.infoMessage.link.href
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
tracingDestinationCreationIsDisabled ? "text" : "outline"
isDisabled
tracingDestinationCreationIsDisabled
onClick
() => setTracingDialog({ mode: Mode.Create, isOpen: true })
dataQa
createTracingProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/utils/helper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
link
isDisabled
!link
variant
link
openLinkInNewTab
false
dataQa
`link-${text}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
toggleShowExportDialog
dataQa
exportCSVButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleClearAllFilters
dataQa
clearAllButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
onClose
dataQa
exportCloseButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
downloadCSV
isDisabled
isFetching || !!error
dataQa
exportDownloadButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/datacenters/${item.name}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
onRefresh
isDisabled
!cluster?.id || isRefreshing
dataQa
refresh-cluster-button
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
() => handleSearchField(EMPTY_STRING)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleToggleSearchPanel
dataQa
openFilterIcon
title
Manage Filters
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleClearAllFilters()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => setClearFiltersFlag(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => history.push(`/organizations/spool-configs`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
startIcon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => history.push(`/organizations/create`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
() => history.push(`/organizations/createorganization`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
moreDetailsErrorButton
variant
text
onClick
() => handleDetails(errorKey)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
call-to-action
onClick
pushLogPipelines
dataQa
createUpdateLogPipelineButton
isDisabled
monitoringJobStatus === TaskStatus.QUEUED || monitoringJobStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
queryTestLog
dataQa
validateLogFacets
isDisabled
queryTestLogStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
updateAllMonitorsButton
onClick
() => setOpenDialog(true)
isDisabled
notificationUpdateStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
validateDatadogResources
dataQa
validateResources
isDisabled
validateStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
updateOrgDefaultsButton
isDisabled
_.isEmpty(dirtyFields) || errorFetchingOrgDetails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
updateServicesMonitoringConfigButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
link
onClick
() => {
+						setDatadogProxyDialogService(service);
+						setOpenDatadogProxyDialog(true);
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
icon
onClick
() => {
+							setAgentStatusDialogService(service);
+							setOpenAgentStatusDialog(true);
+						}
isDisabled
!service.monitoringAgentEnabled
dataQa
`agentVersionButton_${service.name}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
dataQa
serviceDetails
onClick
() => window.open(`/org-services/${row?.serviceId}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
type
submit
dataQa
updateRMMSSettingsButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
configureNewDDSubOrgButton
onClick
createNewDatadogSuborg
isDisabled
createDatadogSuborgLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
call-to-action
type
submit
dataQa
validateAPIKeysButton
onClick
validateKeys
isDisabled
validateApiKeysStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
createInsightsRolesButton
onClick
createInsightsRoles
isDisabled
!ddOrgData?.apiKey || createInsightsRolesLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://app.datadoghq.com/
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/995065871/PE+Enable+PubSub+Insights#PE%3AEnablePubSub%2BInsights-SettinguptheDatadogSubOrgintegrations
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
createUpdateLogPipelineButton
onClick
pushLogPipelines
isDisabled
pushLogPipelinesStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
pushTestLogButton
onClick
pushTestLog
isDisabled
pushTestLogLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://app.datadoghq.com/
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.datadoghq.com/logs/explorer/facets/#create-facets
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
validateLogFacetsButton
onClick
queryTestLog
isDisabled
queryTestLogStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
call-to-action
type
submit
dataQa
updateDDHandlesAndResourcesButton
isDisabled
notificationUpdateStatus == TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
call-to-action
type
submit
dataQa
validateMonitorsDashboardsButton
onClick
validateDatadogResources
isDisabled
validateDatadogResourcesStatus === TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
enableInsightsPolicyButton
onClick
enableInsightsPolicy
isDisabled
enableInsightsPolicyStatus == TaskStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
type
submit
dataQa
inviteAdminUsersButton
onClick
() => inviteAdminUsers(adminUsersList)
isDisabled
inviteAdminUsersLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => add()
isDisabled
!attribute || !operator || !value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => setQueryShow(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
create-plan
variant
text
onClick
() => handleModal()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
variant
onClick
onClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
manage-upgrade-button
onClick
() => handlePlanRoute()
variant
text
dataQa
create
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!autoUpgrades
onClick
setCreateOpen
variant
outline
dataQa
schedule-upgrade-run
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push(`/organizations/${orgId}`)
title
Close
variant
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push(`/organizations/${orgId}`)
title
Close
variant
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://docs.solace.com/Cloud/drawdown.htm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/organizations/${row.orgId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/organizations/${row.orgId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/datacenters/${row.datacenterId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setOpenUpdateDialog(true)
variant
call-to-action
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => setOpenRollbackDialog(true)
variant
outline
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleEdit
dataQa
editMetadata
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
dataQa
create
onClick
() => setCreateDialog(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleRefresh
dataQa
refresh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handleRefresh
dataQa
refresh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
createBizOrganization.messages.runbookLink
variant
link
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
dataQa
exitFormQa
onClick
handleExitFormButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
dataQa
reviewSaveFormQa
isDisabled
isFieldReadOnly
onClick
() => {
+							if (!isEmailValid || inputError || error || validation || orgDetails.error || !readyToSave) {
+								setIsSaveAllowed(false);
+							} else {
+								setIsSaveAllowed(true);
+								handleReviewSaveButton();
+							}
+						}
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"closeIcon"
variant
icon
onClick
handleClearSearchText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!isEmail(currentEmailEntry)
key
"closeIcon"
variant
outline
onClick
() => addEmail()
dataQa
addEmailButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
link
href
`/organizations/${secondary}`
title
secondary.toString()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
props.isEnabled ? "outline" : "call-to-action"
onClick
handleToggleClick
data-qa
props.isEnabled ? "disable-button" : "enable-button"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
refreshSubOrgs
onClick
() => dispatch(fetchAllDatadogInfos())
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
refreshArtifactVersion
onClick
() => dispatch(fetchDatadogArtifactVersion())
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
dataQa
refreshDT
onClick
() => dispatch(fetchDistributedTracingDetails())
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleRefresh
title
Refresh
variant
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
insights-settings
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
handleRefresh
title
Refresh
variant
icon
dataQa
refresh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
href
https://app.datadoghq.com/logs?query=service%3Amaas-monitoring%20%40logger_name%3Acom.solace.maas.monitoring.%2A%20%28%40event%3AINSIGHTS_ONBOARDING%20OR%20%40event%3AINSIGHTS_OFFBOARDING%29%20&cols=host%2Cservice&index=%2A&messageDisplay=inline&refresh_mode=sliding&stream_sort=desc&viz=stream&live=true
variant
link
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
refresh
variant
icon
onClick
() => handleSidekickDeploymentDetailsRefresh()
isDisabled
refreshDetailsInProgress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
refresh
variant
icon
onClick
() => handleSidekickDeploymentStatusRefresh()
isDisabled
refreshStatusInProgress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
onClick
() => window.open(link)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
refetch
dataQa
retrieve
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handelCopy
isDisabled
!details
dataQa
copy
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
dataQa
connectorDetails
onClick
() => window.open(`/connector-deployments/${row?.deploymentId}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
dataQa
connectorDetails
onClick
() => window.open(`/connector-deployments/${row?.deploymentId}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
dataQa
`details-${request.deploymentId}`
onClick
() => setErrorDetails(`${request.deploymentId}-disable`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push(`/organizations/${orgId}`)
title
Close
variant
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
() => handleManageContacts(item.type)
isDisabled
readOnlyAccess
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
() => handleCopyEmails(item.emails, item.type)
isDisabled
!item.emails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => refetch()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
icon
onClick
handleRefresh
dataQa
refresh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
(event) => {
+									event.stopPropagation();
+									window.open(`/datacenters/${row.id}`);
+								}
variant
link
dense
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Broker, isOpen: true })
isDisabled
readOnlyAccess
dataQa
addBrokerButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
outline
onClick
() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Collector, isOpen: true })
isDisabled
readOnlyAccess
dataQa
addCollectorButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
onClick
() => window.open(link)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
refetch
dataQa
retrieve
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
onClick
handelCopy
isDisabled
!configs?.data
dataQa
copy
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
refresh
variant
icon
onClick
handleCollectorInfoRefresh
isDisabled
refreshInProgress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
dataQa
collectorDetails
onClick
() => window.open(`/distributed-tracing-collectors/${row?.serviceId}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
row?.id + "_RefreshButton"
isDisabled
row?.collectorLoadingStatus == CollectorLoadingStatus.IN_PROGRESS ||
+									row?.collectorLoadingStatus == CollectorLoadingStatus.INITIAL
onClick
() => handleRefresh(row?.infrastructureId)
title
Refresh
variant
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
variant
text
dataQa
`details-${request.infrastructureId}`
onClick
() => setErrorDetails(request.infrastructureId)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
() => history.push(`/organizations/${orgId}`)
title
Close
variant
icon
+
+ +
+
+ +
+
+
+ SolaceGrid + 405 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui120
intgmaas-ui29
mcmaas-ui8
saasmaas-ui70
maas-ops-reactmaas-ops-ui178
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
item307
xs204
container93
spacing38
alignItems34
style26
key23
data-qa20
mt19
className19
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (405)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
width
"800px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
pt
2
width
"100%"
style
{ display: "flex", justifyContent: "space-between", alignItems: "center", marginTop: theme.spacing(1) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "flex", flexDirection: "column", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
pt
2
width
"100%"
style
{ display: "flex", justifyContent: "space-between", alignItems: "center", marginTop: theme.spacing(1) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ marginLeft: theme.spacing(4) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
width
"800px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "grid", gridTemplateColumns: "1fr 1fr", gap: "8px" }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
2
container
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
data-qa
"attributeName-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
data-qa
"type-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
data-qa
"scope-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
alignItems
isEditable || nameInEditMode ? "flex-start" : "center"
display
"flex"
data-qa
`${caKey}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
color
(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)
data-qa
`${caKey}-name`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
color
(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)
data-qa
`${caKey}-valueType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
color
(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)
data-qa
`${caKey}-scope`
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
isEditable ? 1 : 2
style
{ display: "flex", justifyContent: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
alignItems
"flex-start"
display
"flex"
data-qa
`${caErrorKey}-message`
key
`${caErrorKey}-message`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
key
`${caKey}-errorMsg-content`
display
"flex"
alignItems
"flex-start"
columnGap
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
key
`${caKey}-errorMsg-action`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-name`
data-qa
`${caKey}-name`
xs
2
mt
index !== 0 ? 1 : 0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-value`
data-qa
`${caKey}-value`
xs
10
mt
index !== 0 ? 1 : 0
display
flex
columnGap
"8px"
alignItems
"flex-start"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
key
`${caKey}-name`
data-qa
`${caKey}-name`
className
name edit
mt
index !== 0 ? 1 : 0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
key
`${caKey}-value`
mt
index !== 0 ? 1 : 0
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
padding
0
spacing
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem additionalFilter
key
`${filterType}-select`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${selectedFilter.type}Select`
item
true
xs
numOfGridColumns
className
filterItem customAttribute
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columns
3
spacing
1.5
alignItems
center
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
"0"
direction
"row"
wrap
nowrap
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
minWidth
"450px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
7
minWidth
"538px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
spacing
0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
paddingRight
2
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
padding
3
width
100%
height
`calc(100% - 65px)`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ width: SIDE_PANEL_WIDTH }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: "flex", flexDirection: "column" }
pl
3
maxHeight
"100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-name`
data-qa
`${caKey}-name`
xs
2
mt
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
`${caKey}-value`
data-qa
`${caKey}-value`
xs
10
mt
1
display
flex
alignItems
"center"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
key
`${caKey}-name`
data-qa
`${caKey}-name`
className
name edit
mt
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
key
`${caKey}-value`
mt
1
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
md
2
alignSelf
"center"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
md
2
alignSelf
"center"
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ paddingTop: "24px" }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
display
"flex"
gap
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
width
"100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "flex", flexDirection: "row", alignItems: "center", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
style
{ display: "flex", flexDirection: "column", rowGap: theme.spacing(1) }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
justifyContent
flex-start
alignItems
flex-start
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
row
justifyContent
center
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
alignItems
center
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
ml
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2.5
alignItems
center
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
row
justifyContent
center
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2.15
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.85
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
numOfGridColumns
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
className
filterItem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
columnSpacing
3
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
borderRight
`1px solid ${theme.palette.ux.secondary.w20}`
overflow
"scroll"
height
"inherit"
onScroll
(e) => {
+									const { scrollTop } = e.target as HTMLElement;
+
+									if (leftScrollTop !== scrollTop && relations.length > 0) {
+										setLeftScrollTop(scrollTop);
+									}
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
style
{ backgroundColor: theme.palette.ux.background.w20 }
justifyItems
"center"
height
"inherit"
alignContent
relations.length === 0 && !initalDrag ? "center" : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
borderLeft
`1px solid ${theme.palette.ux.secondary.w20}`
overflow
"scroll"
height
"inherit"
onScroll
(e) => {
+									const { scrollTop } = e.target as HTMLElement;
+
+									if (rightScrollTop !== scrollTop && relations.length > 0) {
+										setRightScrollTop(scrollTop);
+									}
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
key
`${id}-key`
alignItems
center
spacing
2
className
classNames
style
style
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
7
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
8
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
8
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
alignItems
center
justify-content
flex-end
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3.5
textAlign
right
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
xs
12
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
display
flex
justifyContent
flex-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
display
flex
justifyContent
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
4
display
flex
justifyContent
flex-start
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
5
textAlign
"end"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
direction
column
alignItems
center
justifyContent
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
0
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
container
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
9
mt
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
mr
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
mt
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
mt
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
mr
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
mt
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
mt
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
container
true
mt
2
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
mt
1.5
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
2
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 2 }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 2 }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
alignItems
center
spacing
10
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
alignItems
center
spacing
1
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
container
true
direction
"column"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
container
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
item
isParentCategory
key
permission.id
paddingTop
theme.spacing(0.5)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
style
categoryDetailsSectionStyle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
style
categoryDetailsSectionStyle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
style
categoryDetailsSectionStyle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
item
true
key
categoryName
style
{ padding: theme.spacing(0.25) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
true
style
permissionTitleSectionStyle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
style
bulkPermissionCheckboxStyle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
style
bulkPermissionCheckboxStyle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
marginTop
categoryName ? theme.spacing(0.5) : theme.spacing(0.25)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
"column"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10.8
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
0.5
className
readWrite
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
paddingTop
2
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
1
alignItems
center
display
"flex"
sx
{ padding: 1, paddingLeft: 3 }
+
+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
spacing
1
alignItems
center
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
key
xs
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
style
{ marginTop: "8px" }
key
run.id
item
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
p
3
container
true
rowSpacing
2
columnSpacing
3
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
textAlign
right
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
3
textAlign
right
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
style
styles.column
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
style
styles.row
width
fit-content
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
row
spacing
2
alignItems
center
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
row
columns
14
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
peNotificationStatus
xs
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
key
xs
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
alignItems
center
mt
30px
pr
32px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
container
true
direction
column
alignItems
center
style
{ alignContent: "end" }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
direction
column
pr
2
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
6
style
style.max
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
width
auto
ml
1px
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
data-qa
search-page-form
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
sm
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
sm
11
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
1
sm
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
11
sm
11
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
sm
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
sm
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
sm
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
sm
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
sm
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
12
sm
12
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
2
sm
2
style
{ margin: "auto" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
xs
10
sm
10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
data-qa
editForm
+
+ + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
data-qa
createForm
+
+ + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
data-qa
releaseDialog
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
justifyContent
space-between
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
alignItems
center
spacing
0
mt
theme.spacing(1)
mb
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
value
mr
theme.spacing(1.5)
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
justifyContent
center
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mt
2
container
true
spacing
1
key
`container${key}`
data-qa
`qacx-${key}`
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
data-qa
`subscription-products-container`
+
+ + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
key
key
xs
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
p
3
container
true
rowSpacing
2
columnSpacing
3
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
container
true
sx
{ padding: 3 }
spacing
10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
sm
"auto"
md
"auto"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
item
true
sm
"auto"
md
"auto"
+
+ + + + + + + + + + + + + +
+
+ +
+
+
+ SolaceTooltip + 385 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui245
intgmaas-ui10
mcmaas-ui14
saasmaas-ui29
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui85
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
title379
variant312
placement151
maxWidth87
dataQa29
key20
open10
onOpen9
onClose9
disableHoverListener6
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (385)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventManagementAgent?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody(memName)
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
environmentOption.label
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
messages.preview.aclProfile
maxWidth
medium
placement
bottom
dataQa
aclProfileConfig
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
messages.credentials.clientCredentials
maxWidth
medium
placement
bottom
dataQa
clientCredentialConfig
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
identifier
maxWidth
medium
placement
bottom
dataQa
`queueConfig-${identifier}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
queueBindingTitle
maxWidth
medium
placement
bottom
dataQa
`queueBindingConfig-${queueBindingTitle}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
identifier
maxWidth
medium
placement
bottom
dataQa
`rdpConfig-${identifier}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
POPOVER_CONTENT
maxWidth
medium
placement
top-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title

+								{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}
+							
placement
"bottom-start"
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
{messages.add.applicationVersionRemovalWarning}
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
{messages.add.noConfigurationWarning}
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
{messages.add.noConfigurationWarning}
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
eventName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
eventVersion?.displayName || eventVersion?.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
subscriptions[0]
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
subscriptions[0]
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${id}-subscriptions`
variant
TooltipVariant.rich
title
<>
+									{subscriptions.slice(1).map((sub, index) => (
+										
+ {sub} +
+ ))} +
placement
bottom-start
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
discrepancies[0]
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
discrepancies[0]
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${id}-discrepancies`
variant
TooltipVariant.rich
title
<>
+									{discrepancies.slice(1).map((discrepancy, index) => (
+										
+ {discrepancy} +
+ ))} +
placement
bottom-start
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
getHelpTooltipContent()
placement
"bottom-start"
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
getTitle(title, description)
placement
top-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
title ?? "Configuring"
placement
top-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
Update event broker to configure recent changes to this application
placement
top-start
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
userName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
resourceName
data-qa
resourceNameTooltip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
role.title
placement
placement
dataQa
`roleIcon-${resourceRole || "none"}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
selectedEntity.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
selectedDetails.accessDenied && selectedDetails?.tooltip
placement
bottom-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
onVersionHover ? onVersionHover(version.id) : ""
placement
left-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${version.id}-${index}`
variant
TooltipVariant.rich
title
<>
+													{`Matching text for '${searchText}'`}
+													
+														{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {
+															return 
; + })} + +
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
children
open
open
onOpen
handleOnOpen
onClose
handleOnClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
variant
TooltipVariant.rich
title
<>
+											{searchText && {`Matching text for '${searchText}'`}}
+											
+												{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {
+													return 
; + })} + +
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.displayName || version.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
isSubscribeReadOnly ? "Already subscribing to event" : ""
placement
right-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
isPublishReadOnly ? "Already publishing event" : ""
placement
right-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.displayName || version.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttribute.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Add the custom attribute to All application domains or only the Current application domain."
variant
html
placement
"bottom-start"
dataQa
"customAttributeScopeTooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
getCustomAttributesHelpTooltipContent()
placement
"right"
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttribute.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttributeValue?.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
getStringValuesTooltipContent(customAttributeValue?.stringValues)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
caName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
handleVersionListHover()
placement
right-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.latestVersion
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
<>
+						Link applications to show an organizational relationship in the graph view.{" "}
+						
+							Learn more about linked applications
+						
+					
maxWidth
medium
placement
right-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
placement
bottom-start
disableHoverListener
addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
placement
bottom-start
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
enterDelay
800
enterNextDelay
800
disableFocusListener
true
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
graphViewToggle
title
Graph View
placement
bottom-start
disableHoverListener
selected === "graph"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
listViewToggle
disableHoverListener
disableHoverOnListView
title
entityName ?  : "Components"
variant
entityName ? "html" : "text"
placement
bottom-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom Out
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom In
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom Out
disableHoverListener
disabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Zoom In
disableHoverListener
disabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
removedNode.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
removedNode.displayName
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.parentName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.versionName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.name
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
customAttributeName
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
"Filters relevant only to other object types"
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventApiProductName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.parent?.name
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.displayName || item.version
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
messages.configuration.description
placement
top
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
renderProtocolPopover(messagingService.supportedProtocols ?? [])
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
dataQa
`domainIcon-${applicationDomainName}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
itemName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.displayName || item.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
dataQa
`domainChip-${applicationDomainName}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value.label
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value.label
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value.label
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
"The event broker must be in a modeled event mesh to receive runtime data or send configuration data."
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
brokerType
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
row.modeledEventMesh.name
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.name
variant
TooltipVariant.overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
variant
TooltipVariant.rich
placement
left-start
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
(runtimeAgent as EventManagementAgent)?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
getSempUrlFromEPCore(messagingService)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
getMsgVpnFromEPCore(messagingService)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
placement
bottom
title
{renderUnavailableMessagingServices()}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
STATUS_DESC_DISPLAY_MAP[status]
placement
"right"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
timeMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityVersion.parent.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityVersion.displayName || entityVersion.version
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityVersion.displayName || entityVersion.version
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
getTooltipVariant(item)
title
item.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
variant
TooltipVariant.rich
placement
left-start
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(
+								AUDIT_ENTITY_TYPE_MAP[auditEntityType]
+							)}.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverTitle
placement
left
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverTitle
placement
left
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
secondaryPanelTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getSidePanelTitle()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`domainName-${domain.id}`
variant
"overflow"
title
domain.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverContent
dataQa
`appVersionSummaryPopover-${application.id}`
placement
left-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"text"
title
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverContent
placement
"bottom-start"
dataQa
`auditImportPopover-${jobId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
popoverContent
dataQa
`auditImportPopover-${createdTime}`
placement
bottom-end
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : ""
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : ""
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
renderSubjectRelationshipHelp()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
tag.id
variant
text
title
getTooltipMessage(tag)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
getTooltipMessage(hideAuditTag)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
name
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
topicAddress
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationVersion.displayName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
applicationVersion.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltipBody
placement
"bottom-start"
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
entityName
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
rowIdentifierValue
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
parentName
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${row.designObjects.parentName}`
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${row.designObjects.parentName} ${numAdditionalParents}`
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
enumEntity.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"You do not have access to this Application Domain"
placement
"left"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventApiProduct.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
schema.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"You do not have access to this Application Domain"
placement
"left"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
application.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
en.application.applicationType[application.applicationType]
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(application.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventApi.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
event.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"You do not have access to this Application Domain"
placement
"left"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
getApplicationDomainNameById(event.applicationDomainId, applicationDomains)
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
secondaryAction?.tooltip
placement
bottom-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
selectedDetails.accessDenied && selectedDetails?.tooltip
placement
bottom-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
reuseIndexTooltip
variant
html
title

+											
+												{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}
+												{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}
+											
+											
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}
+												
+												
+													÷
+												
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}
+												
+											
+											
+											
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}
+												
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}
+												
+												
+													{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}
+												
+											
+										
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getTooltipContent()
variant
TooltipVariant.rich
placement
right
dataQa
queueBindingHelpTooltip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
item.name
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
domain.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
placement
"bottom-end"
maxWidth
"full"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
Unable to edit when custom attributes have unsaved changes
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
version
variant
overflow
title
versionInfo?.displayName || versionInfo?.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
customAttributeValue.customAttributeDefinitionName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
getCustomAttributesHelpTooltipContent()
maxWidth
"medium"
placement
"bottom-end"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
`Unable to edit when ${entityType} has unsaved changes`
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
unsavedChangesWarningMsg
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getVersionValues()?.[versionObjectName]["version"]
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getVersionValues()?.[versionObjectName]["displayName"]
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title

+											Event version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.
+										
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltip
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
topicAddress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
node.displayName || node.versionSemver
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
nodeWarningTypeDescription[warnings?.[0]]
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
SecondaryTextHoverContent()
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
topicName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
versionData.displayName
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
placement
top-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
placement
top-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
level.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"overflow"
title
level.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title

+						
+ + All object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file. + + + Learn about downloading AsyncAPI documents + +
+
+ Prepend Application Domain Name + Use this option when the file contains objects with the same name. +
+
+ Append Major Version Number + Use this option when the file contains more than one version of the same name. +
+
variant
html
maxWidth
"medium"
placement
"bottom-start"
dataQa
"namingStrategyTooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.parent?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltipContent
maxWidth
"medium"
placement
"top-start"
dataQa
"availability-Tooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltipContent
maxWidth
"small"
placement
"top-start"
dataQa
"approvalTypes-Tooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.requestor
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
formatISOTimeFromNow(row.createdTime)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
request.eventName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap[request.applicationDomainId]?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
request.subscription
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
eventMesh.environmentName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
warning
placement
right
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
consumer.name
placement
top
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
placement
"bottom-start"
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
renderTooltipBody()
placement
"bottom-end"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
key
`tooltip-${name}`
maxWidth
medium
title
applicatonDomainPopoverContent(name)
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
placement
"bottom-start"
maxWidth
"full"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
entityConfigSidePanelProps.title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
handleVersionListHover()
placement
right-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
"Application Domain"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltip
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
displayName ? displayName : version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
viewedSchema.name
placement
bottom-end
dataQa
viewedSchemaName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
maxWidth
medium
title
applicationDomainsMap[schemaParent.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
sharedSchema ? "This event is shared. Only shared schemas can be created" : ""
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
`${schemaVersionSelectedMap[row.id].length} Added`
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
"Selected"
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
consumerName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
versionData.displayName
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationDomainsMap?.[row.applicationDomainId]?.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row.name
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
messages.configuration.description
placement
top
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
maxWidth
medium
title
messages.action.addApplication
placement
top
disableHoverListener
!!applicationVersion?.id
disableFocusListener
!!applicationVersion?.id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.approved
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.pending
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.declined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
RequestStatusLabel.toBeRequested
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
consumerName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
subscription
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
"Event Access Requests"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
tooltip
maxWidth
"medium"
placement
"bottom-start"
dataQa
"searchEventsTooltip"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
eventName ? "Event is not shared across application domains" : "You do not have access to view this event because it is not shared"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
eventName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
request.subscription
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
versionData.displayName
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
topicAddress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
applicationName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version.displayName || version.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
item.id
title
"Event is not the latest version"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
`Consumer${consumersCount > 1 ? "s" : ""}: ${consumersCount}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.rich
title
ADDITIONAL_CONSUMED_EVENTS_INFO
maxWidth
"medium"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
item.name
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
messages.info
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"html"
title
open
tooltipOpen
onOpen
handleTooltipOpen
onClose
handleTooltipClose
maxWidth
"medium"
placement
"bottom-start"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
label
variant
TooltipVariant.overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
item.source
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
TooltipVariant.overflow
title
item.target
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.nonDroppableTooltip
open
isActive && !canDrop
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.source
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.target
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.source
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.target
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
role.title
dataQa
`roleIcon-${resourceRole || "none"}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
userName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
title
maxQueueMsgsInfo
placement
"bottom-start"
maxWidth
small
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"service-auth-tooltip"
variant
html
title
placement
"right"
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
html
maxWidth
medium
placement
bottom
title

+									{helpMessage}
+								
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
t({ id: "id_view_tiles", message: "Grid View" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
t({ id: "id_view_list", message: "List View" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
email
placement
top-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
servicesInMeshes.get(service.id as string)?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
organization?.orgAutomatedUpgradeEnabled
+										? t({ id: "id_release_revoked_icon_auto", message: "The event broker requires an upgrade. Plan upgrade on the service's Status tab." })
+										: t({ id: "id_release_revoked_icon", message: "The event broker requires an upgrade." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
userAccessInfo.userAccessText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
environment.label || "n/a"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
servicesInMeshes.get(serviceId)?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
userAccessInfo.userAccessText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
organization?.orgAutomatedUpgradeEnabled
+										? t({ id: "id_release_revoked_icon_auto", message: "The event broker requires an upgrade. Plan upgrade on the service's Status tab." })
+										: t({ id: "id_release_revoked_icon", message: "The event broker requires an upgrade." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
userName
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+								{roleIdNameMap &&
+									user.roles
+										.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)
+										.map((role) => {roleIdNameMap[role]})}
+							
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${testItem.id}-${testItem.name}-template-warning`
title
environmentsStr.configurationTemplates.warning
dataQa
runtimeTemplatesWarning
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`The environment type cannot be changed.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`The environment type cannot be changed.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
environment.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
textValue
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
variant
html
dataQa
pcuCalculationTooltip
title

+										{drawdownUsage.messages.title}
+										
+											{drawdownUsage.messages.message}
+										
+										
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
user.email
variant
html
title

+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}
+																	
+																	
+																		{user.firstName ? `${user.firstName} ${user.lastName}` : "-"}
+																	
+																
+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}
+																	
+																	{user.email}
+																
+															
placement
bottom
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+									{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (
+										{mappedRolesData[item].name}
+									))}
+								
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
rowData.claimValues
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+									{rowData.userGroups
+										.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)
+										.map(({ name, value }) => (
+											{name}
+										))}
+								
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
getStatusLabel(c.status)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
getStatusLabel(mc.status)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
en.overview.eventPortalSection[
+											user?.eventPortal2AccessEnabled ? "totalObjectsTooltip1" : "totalObjectsTooltip2"
+										]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+												{en.overview.eventPortalSection.totalObjectsCountText}
+												
+													{en.overview.eventPortalSection.objectsCountLearnLinkText}
+												{" "}
+											
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.notReadyTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.readyTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.notReadyTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.inMaintenanceTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.dcOperational
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
en.privateRegions.labels.dcNotoperational
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
row?.epCapabilities == Status.ERROR ? (
+																<>
+																	{en.privateRegions.eventManagementAgentErrorText}{" "}
+																	
+																		{en.privateRegions.contactSupport}
+																	
+																
+															) : undefined
variant
rich
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tooltip
variant
html
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
placement
bottom-start
variant
html
title
tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tracingDestinationLimitReached
+									? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)
+									: undefined
variant
html
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
dateStr
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
title
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
path.title
maxWidth
medium
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
path.title
maxWidth
medium
placement
bottom-end
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
`${item}`
key
key
data-qa
`tooltip${key}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
serviceNameTooltip
title
name.name
+
+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`Expired ${-daysUntilExpiry} day${-daysUntilExpiry !== 1 ? 's' : ''} ago`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
`Expiring in ${daysUntilExpiry} day${daysUntilExpiry !== 1 ? 's' : ''}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
configRequest
placement
bottom-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
configRequest
placement
bottom-start
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.serviceId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.infrastructureId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.monitoringMode
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.serviceClassId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.servicePackageId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.solaceDatadogAgentImage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.solaceDatadogAgentVersion
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
time
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.[key]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
secondary.toString()
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
String(row[key])
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
textValue
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
variant
html
dataQa
pcuCalculationTooltip
title

+										{drawdownUsage.messages.title}
+										
+											{drawdownUsage.messages.message}
+										
+										
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
`TLS verification skipped. This creates an insecure connection to event brokers with custom certificates.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
`Latest Image Tag: ${latestVersion}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title
popoverContent(row as ManagedEventManagementAgent)
maxWidth
full
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
displayName
placement
top
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
label
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
value
variant
overflow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
row?.released ? "Released" : "Not Released"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
value ? "text" : "overflow"
title
value ? time : "Not Released"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.[key]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.[key]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.organizationId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
datadogSubOrgAttributes().variant
title
datadogSubOrgAttributes().tooltip
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
datadogArtifactAttributes().tooltip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
row?.aup === "N/A" ? "html" : "overflow"
title
row?.aup === "N/A" ? "Not Applicable" : row?.aup
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
text
title
row.distributedTracingEnabled == undefined ? "Use the refresh button to fetch this info" : ""
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
typedRow.org_id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tooltip
variant
html
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
version
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
N/A
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
N/A
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.deploymentId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.serviceId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.infrastructureId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.requestAction
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.deploymentStatus
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.updatedOn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
rich
title

+							{hiddenEmails.map((email, index) => (
+								{email}
+							))}
+						
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
organizationDetails.notificationContacts.tooltips.copyEmail
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`podName-${index}`
title
row.podName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`attachedNode-${index}`
title
row.attachedNode
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`pod-${index}-${idx}`
title
item
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`messageBrokerPod-${index}`
title
messageBrokerPod
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`events-${index}`
title
row.events?.join()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.displayName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.provider.toUpperCase()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.serverCertificateId ?? "Default Global"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.accessType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
_.isEmpty(row?.cloudAgentVersion) ? "Not Configured" : row?.cloudAgentVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.datacenterType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.displayName
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.serviceName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.serviceId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.datacenterId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.infrastructureId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.displayName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
overflow
title
row?.tracingBackendType
+
+ +
+
+ +
+
+
+ SolaceLabel + 304 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui246
intgmaas-ui25
mcmaas-ui20
saasmaas-ui11
maas-ops-reactmaas-ops-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id302
htmlForId77
required52
noWrap12
readOnly6
disabled5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (304)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Domain`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`accessApproval`
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"eventMesh[description]-label"
htmlForId
"eventMesh[description]-label"
disabled
mode === "view"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventMesh[environment]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`messagingServiceDetails[${attribute}]-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"bulkMoveCurrentAppDomainLabel"
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"directClients"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"eventQueues"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"kafkaConsumers"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"authenticationType"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"authenticationA"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"authenticationB"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"clientProfile"
noWrap
true
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"clientProfileLabel"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"queueConsumers"
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Name`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Version`
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"resourceAssignmentListLoading"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${version.id}[versionVersion]-label`
disabled
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${version.id}[versionDisplayName]-label`
disabled
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${version.id}[versionDescription]-label`
disabled
true
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
version
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
associateWithEvent
required
true
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Preview`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}[customColour]-label`
htmlForId
`${entityType}[customColour]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}[customIconLogo]-label`
htmlForId
`${entityType}[customIconLogo]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityName}[versionState]-label`
htmlForId
`${entityName}[versionState]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityName}[endOfLifeDate]-label`
htmlForId
`${entityName}[endOfLifeDate]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[version]-label`
htmlForId
`${versionObjectName}[version]`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[stateName]-label`
htmlForId
`${versionObjectName}[stateName]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[displayName]-label`
htmlForId
`${versionObjectName}[displayName]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
linkedApplications-label
htmlForId
htmlForId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[version]-label`
htmlForId
`${versionObjectName}[version]`
required
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[displayName]-label`
htmlForId
`${versionObjectName}[displayName]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[state]-label`
htmlForId
`${versionObjectName}[state]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"newVersion-label"
htmlForId
"newVersion"
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileNameLabel
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileNameLabel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
defaultClientProfileName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
multiSelectKey
noWrap
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"showNewEventVersionIndicator-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"snapNodeToGrid-label"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[endOfLife]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[endOfLife]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[details]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[details]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[shared]-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[content]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[content]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
env
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventMeshOfMessagingServiceToBeDeleted-none-label
disabled
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[name]-label
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[id]-label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[agentMode]-label
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[EventBrokers]-title
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`serviceLabel-${messagingService.id}`
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"appVersionSummary-applabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"appVersionSummary-label"
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"environmentListLabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"environmentListLabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
detailsNameLabel
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
detailsDescriptionLabel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
detailsEnvironementAssociationLabel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileName
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
enumDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
enumShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductBrokerType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiBrokerType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
topicAddress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
requiresApproval
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
required
true
+
+ + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`restDeliveryPointConfigurationType-label`
htmlForId
`restDeliveryPointConfigurationType`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`restDeliveryPointName-label`
htmlForId
`restDeliveryPointName`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"templateLabel"
required
true
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"selectAllDomainsLabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"selectedDomainsLabel"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"filename-label"
required
true
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
enumerationVersion[values]-label
htmlForId
enumerationVersion[values]
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
enumeration[name]-label
htmlForId
enumeration[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
enumerationVersion[values]-label
htmlForId
enumerationVersion[values]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[version]-label`
htmlForId
`${versionObjectName}[version]`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[displayName]-label`
htmlForId
`${versionObjectName}[displayName]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionObjectName}[description]-label`
htmlForId
`${versionObjectName}[description]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearchLabel
htmlForId
domainsSearch
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApi[name]-label
htmlForId
eventApi[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApi[brokerType]-label
htmlForId
eventApi[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
declaredEAPVersions-label
htmlForId
declaredEAPVersions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messageDeliveryMode
required
!isEmpty(getValues(`${versionObjectName}.name`))
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
accessType
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
queueType
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
maxTTL
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
maxMsgSpoolUsage
required
true
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
availabilityLabel
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
messageDeliveryMode
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProduct[name]-label
htmlForId
eventApiProduct[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProduct[brokerType]-label
htmlForId
eventApiProduct[brokerType]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schema[name]-label
htmlForId
schema[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schema[schemaType]-label
htmlForId
schema[schemaType]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"schemaTypeLabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaVersion[content]-label
htmlForId
schemaVersion[content]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
schemaShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaVersion[content]-label
htmlForId
schemaVersion[content]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-name`
htmlForId
`applicationVersion[consumers].${index}.name`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-consumerType`
htmlForId
`applicationVersion[consumers].${index}.consumerType`
required
true
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attractedEventsLoadingLabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attractedEventsNoPermission"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"attractedEvents"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-name`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`consumers[${index}]-consumerType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${consumer.name}-templateLabel`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
suggested-events
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`brokerType-${topicDomain.id}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`topicDomainLabel-${topicDomain.id}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`brokerTypeLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`topicDomainLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[name]-label
htmlForId
applicationDomain[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[description]-label
htmlForId
applicationDomain[description]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[name]-label
htmlForId
applicationDomain[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain[description]-label
htmlForId
applicationDomain[description]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`brokerTypeLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`topicDomainLabel-${topicDomain.id}`
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"name-label"
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"resource-label"
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"description-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"topicAddressResourcesMessageLabel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"topicAddressResourcesPreview"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event[name]-label
htmlForId
event[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event[brokerType]-label
htmlForId
event[brokerType]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event[requiresApproval]-label
htmlForId
event[requiresApproval]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
topicAddressResource
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"eventVersion[topicAddressLevels]-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
schemaType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
keySchemaType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventBrokerType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
eventShared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"eventVersion[topicAddressLevels]-label"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
schemaType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaType-label
htmlForId
keySchemaType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
appearsIn-label
htmlForId
appearsIn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
noWrap
true
id
"domainsSearch[label]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[details]-label`
htmlForId
`${schemaVersion?.id}-schemaVersion[details]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[shared]-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[description]-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[content]-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`schemaVersion[version]-label`
htmlForId
`schemaVersion[version]`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
schemaVersion[content]-label
htmlForId
schemaVersion[content]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`eventVersion[version]-label`
htmlForId
`eventVersion[version]`
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`eventVersion[topicAddress]-label`
htmlForId
`eventVersion[topicAddress]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
associateWithEvent
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${eventBroker.id}-noCredentials`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${eventBroker.id}-noApplicationVersion`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
application[name]-label
htmlForId
application[name]
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
application[brokerType]-label
htmlForId
application[brokerType]
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventFlows-label
htmlForId
eventFlows
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomain
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
applicationDomainLabel
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
constant-radio-group
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
constant-radio-group
required
true
+
+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`${detail.label}-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_status"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_direction"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_description"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`connector-${config.label}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_sidepanel_eventBrokerService"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"connector_sidepanel_bindingDestination"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"sslKeyStoreFileUploaderLabel"
required
!readOnly
+
+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`role-label-${resourceRole}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
resourceType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
nameHeader
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
typeHeader
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
accessHeader
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"resourceAssignmentListLoading"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${id}-label"`
htmlForId
htmlForId
required
required
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
endpointsLabel
htmlForId
endpoints
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
mateLinkEncryptionLabel
htmlForId
mateLinkEncryption
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
certAuthoritiesLabel
htmlForId
cloneCertificateAuthorities
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceTypeLabel
htmlForId
serviceType
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environmentLabel
htmlForId
environment
required
!!serviceId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
htmlForId
nameCheck
noWrap
true
id
`${nameCheck}-label`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerFamilyLabel
htmlForId
brokerFamilyVersion
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
msgVpnNameLabel
htmlForId
msgVpnName
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
regionLabel
htmlForId
region
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceNameLabel
htmlForId
serviceName
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerVersionLabel
htmlForId
brokerVersion
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloudLabel
htmlForId
cloud
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clusterNameLabel
htmlForId
clusterName
required
!!edit
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
systemTypeLabel
htmlForId
systemType
required
true
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
"resourceAssignmentListLoading"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/components/CommonFormControl.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
required
id
id
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
id
`description-label-${selectedItem.id}`
+
+ + + +
+
+ +
+
+
+ SolaceMessageBox + 283 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui146
intgmaas-ui16
mcmaas-ui38
saasmaas-ui33
maas-ops-reactmaas-ops-ui50
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant283
message283
dataQa82
showCloseButton66
onClose57
showIcon37
dense13
details5
key3
color2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (283)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
submitWarning.message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
+ Event Portal does not require your authentication passwords. After Event Portal generates the connection file, replace + the environment variables with your passwords in the installation command, so you can keep them secure.{" "} + + Learn more about authentication passwords + +
showCloseButton
showCloseButton
onClose
onClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer."
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.entities.labels.bulkMove.bulkMoveInfo[entityType]
variant
"info"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error.message
showCloseButton
true
onClose
handleErrorBoxClose
dataQa
errorMessageBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventAccessRequestError
dataQa
eventAccessRequestErrorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
+ + {`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`} + +
+ +
+ + View Mismatches + +
+
variant
warn
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error.message
showCloseButton
true
onClose
handleErrorBoxClose
dataQa
errorMessageBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventAccessRequestError
dataQa
eventAccessRequestErrorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
+ + {`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`} + +
+ +
+ + View Mismatches + +
+
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
getErrorMessage(errors)
dataQa
previewErrorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
dataQa
"aclProfileMessageBox"
message
+ {messages.preview.aclProfileInfo}{" "} + + {messages.preview.learnMoreAboutACLProfiles} + +
onClose
() => handleCloseAclProfileInfoMessage()
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
dataQa
errorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventAccessRequestError
dataQa
eventAccessRequestErrorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.entities.labels.bulkMove.inProgress
variant
"info"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event."
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
showCloseButton
message
error
onClose
() => setError(null)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
message
addHelpText
onClose
() => onCloseAddHelp()
variant
"info"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
deleteHelpText
variant
"warn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
message
unsavedChangesWarningMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"After an object version is Retired, you cannot associate it to other object versions."
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(
+								entityType
+							)} will be removed from the graph view if all versions are in retired state.`
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
stateChangeErrorMessage
variant
error
color
theme.palette.ux.error.w100
details
getDetails()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"Objects must be in Draft state to edit most attributes."
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead."
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? "versions" : "version"} open for editing`
showCloseButton
true
onClose
() => setShowUnsavedWarning(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit."
showIcon
true
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
dataQa
versionWarningMsg
message
versionWarningMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
"Any unsaved changes will be lost if you reload the page."
showIcon
true
dataQa
"unsavedWarning"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
backendErrorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
enumErrorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
enumWarningMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
showIcon
true
message
warning
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(item.name)
onClose
handleDismissErrorStatus
dataQa
"deletionErrorMsgBoxSidePanel"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorReferencedGatewayMessaggingServices
variant
error
message
errorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorReferencedVersions
variant
error
message
errorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+ {eventManagementAgentResources.version.needUpgradePrompt} + + {eventManagementAgentResources.version.needUpgradeLinkText} + +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Connection details updated. Download the file and run it with the Event Management Agent to update the connection."
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
Unable to create connections to Event Management Agents.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
validationError.eventBrokerError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
The event broker must be in a modeled event mesh to receive runtime data or send configuration data.
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+ Unable to delete connection to{" "} + + { + selectedMessagingServices.filter((service) => { + return service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted; + })[0]?.name + } + + . It is associated with one or more objects in the environment. +
showCloseButton
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
`Event Management agent ${emsStatus}`
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
Event Management Agent installation setup complete
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors."
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"The next steps require you be on the system hosting the connected agent."
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message

+									
+ You can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those + datacenters. +
+ + View Datacenters + +
showCloseButton
true
onClose
() => setViewDatacentersInfoBanner(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to.
showCloseButton
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
errorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+ Connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that + the agent connects to. + + handleDownloadConnectionFile(item.id, item.name)}> + Download Connection File + + +
showCloseButton
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
<>
+								{ConnectionStatusLabel.connectionIncomplete}
+								

+ Install the Event Management Agent and run the connection file to connect to Event Portal.{" "} + + Download and install the Event Management Agent. + +

+
showCloseButton
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
errorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
message
Event management agent not connected to Event Portal. View logs for details.
showCloseButton
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
{dataCollectionErrorMessage}
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message

+											
+												Your event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and
+												re-add it to the modelled event mesh
+											
+
+											
+												 handleDeleteMessagingService(selectedMessagingService)}>
+													Delete From Event Portal
+												
+											
+										
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
{renderDataCollectionError}
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+ Unable to delete connection to {selectedMessagingService.name}. It is associated + with one or more objects in the environment. +
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
message
message
onClose
closeInfoMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+						Modeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows
+						between publishing and subscribing applications.{" "}
+						
+							Learn more about modeled event meshes
+						
+					
variant
info
showCloseButton
true
onClose
onClose
dataQa
memInfoMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
showIcon
true
message
warningInfoBoxMessage
details

+							{showServiceWarning && (
+								
+ Choose Event Broker + {renderMessagingServiceSelect()} +
+ )} +
+ + {showAuditResultTypeWarning ? "Choose Audit Result Type" : "Selected Objects"} + + {renderSelectionStats()} +
+
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"Objects that are already in Event Portal do not need to be imported again."
showCloseButton
true
showIcon
true
dataQa
"matchFoundMessage"
onClose
handleCloseMatchFoundMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
{errorMessage}
+
variant
"error"
showCloseButton
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
onClose
handleCloseInfoMessage
message
AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
Resolve partial matches caused by runtime configuration changes by updating the event from the audit results.
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
No differences found in the compared version configurations.
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
variantType
message
_message
showCloseButton
dismissible
onClose
() => handleMessageBoxOnClose(variantType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NONDRAFT_WARNING
variant
"info"
dataQa
nonDraftWarning
onClose
handleCloseInfoMessage
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SCHEMA_NAME_DUPLICATION_MESSAGE
dataQa
duplicateNamesError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
`Selected ${
+					AUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]
+				} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(
+					entityType
+				)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
message
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
EVENT_NAME_DUPLICATION_MESSAGE
dataQa
duplicateNamesError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+
+ Unable to import + + + {invalidAudits.length} of {audits.length} selected {auditEntityType} + + + because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others. +
+ + Deselect + +
dataQa
auditValidationErrorWithDeselect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`
dataQa
auditValidationError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
submitError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
onClose
handleCloseInfoMessage
message

+							If you plan to create objects on the event broker, consider to tag them as 
+							To Be Created
+							 using the Quick Actions.
+						
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+
{`${status} ${subStatus ?? ""}`}
+ {actionText && ( + +
+ {actionIcon} + {actionText} +
+
+ )} +
variant
variant
showCloseButton
false
onClose
onAuditImportDone
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.kpiMetricsDashboard.appDomainFilterError
showCloseButton
true
onClose
() => {
+									setAppDomainFilterError(false);
+									setSelectedAppDomainId("all");
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.kpiMetricsDashboard.tableFilterError
showCloseButton
true
onClose
() => {
+											setTableFiltersError(false);
+											setSelectedSharedType(null);
+											setSelectedBrokerType(null);
+										}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
message
variant
info
showCloseButton
!!onClose
onClose
onClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
action?.label && !!action?.onClick ? (
+						
+							
+								{message}
+							
+							
+								{action.label}
+							
+						
+					) : (
+						message
+					)
variant
error
dense
dense
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
{error}
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`runtimeConfigurationBanner-${applicationVersion.id}`
message

+							{application.configuration.warningOutOfSync}
+						
variant
"warn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
getEmptyMessageDetails(true)
variant
info
showIcon
true
showCloseButton
true
onClose
closeInfoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message
EXPORT_MESSAGE
variant
"info"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
message
variant
messageType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
message
unsavedChangesWarningMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
dataQa
versionWarningMsg
message
versionWarningMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"warn"
message
unsavedChangesWarningMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.eventApiProduct.labels.downloadInfo
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"error"
message
conflictMessage
details
getErrorDetails()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
+
+ setTriggerVersionDuplication(true)}> + Duplicate Version + +
+
variant
info
dense
true
showCloseButton
true
onClose
() => setShowImportedSchemaInfoBanner(false)
dataQa
editImportedSchemaWarning
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
schemaVersionReferencesError.message
dataQa
manageReferencedSchemasErrorText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SCHEMA_TYPE_MISMATCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SHARED_VALUE_MISMATCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
SCHEMA_VERSION_NOT_FOUND
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
noOptionSelectedError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
kafkaWarningMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
backendValidationErrorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
kafkaWarningMessage
dense
userHasEditorAccess
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message

+							Cannot delete the last topic domain when{" "}
+							All topic addresses within this application domain must use a topic domain is selected.
+						
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
applicationDomainMessage
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
topicDomainSuccessMessage
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"One or more topic domains were not created successfully."
variant
error
details
renderTopicDomain(failedTopicDomains, false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
duplicateTopicDomainMessage
variant
warn
details
renderTopicDomain(duplicateTopicDomainEntries, true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices.
variant
warn
dataQa
topicAddressResourcesWarning
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
"All versions of an event have the same broker type. It cannot be changed after the event is created"
showCloseButton
true
onClose
handleCloseBrokerTypeHelp
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
brokerTypeWarning
dense
userHasEditorAccess
dataQa
"brokerTypeWarning"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errors.event.shared.message
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+ + All versions of a Kafka event use the same topic address and use versions from the same schema object. + + + {"Learn more about creating Kafka events"} + +
variant
info
showCloseButton
true
onClose
() => handleCloseInfoMessage()
dataQa
kafkaEventInfoBanner
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showIcon
true
showCloseButton
true
onClose
handleCloseInfoMessage
message
`This ${pageID === PageID.eventSearchSchemas ? "event" : "schema"} is shared. Only shared schemas can be selected.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
messages.credentials.removeCredentialsWarning
variant
"warn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? "s" : ""}. `}
+								
    + {renderWarningDetails()} +
+
variant
warn
showIcon
true
dataQa
nonSharedEventWarning
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NO_TOPIC_ADDRESS_MSG
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NO_PUBLISHER_MSG
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
NO_MATCHED_SUBSCRIPTION
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
subEventVersionsErrorMessage
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageForPubEvents
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageForPubEvents || subEventVersionsErrorMessage
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
ADDITIONAL_CONSUMED_EVENTS_INFO
showCloseButton
true
onClose
() => setDismissAdditionalConsumedEventsInfo(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`
showCloseButton
true
onClose
() => setDismissAdditionalConsumedEventsWarning(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageForAdditionalEvents
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
showCloseButton
true
onClose
() => setShowUndeployedInformation(false)
message
messages.add.addApplicationDescription
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : "You do not have access to this event."
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
true
message
getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)
onClose
() => setVersionIdWithDeletionError(null)
dataQa
deletionErrorMsgVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
messages.credentials.configurationWarning
dataQa
configurationError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
error
showCloseButton
true
onClose
onCloseError
dataQa
credentialsError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
`Returning to an earlier step will reset your progress. `
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message

+							
+							{messages.info}
+							{getWizardButton("text", goToWizard, false)}
+						
onClose
() => setShowMessageBox(false)
showCloseButton
true
showIcon
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
messages.projectDefinition.guide
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
sourceTransformationGraphError
variant
"error"
key
`${direction}GraphError`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
targetTransformationGraphError
variant
"error"
key
`${direction}GraphError`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
en.connectors.helperText.payloadMessage
onClose
() => setPayloadInfoDismissed(!payloadInfoDismissed)
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.connectors.labels.reImportWarning(direction.toLowerCase())
variant
"warn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
payloadMappingsValidationErrors.apiError
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
max-header-count-info-msg
message
en.connectors.labels.maxConstantCountReached
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
max-header-count-info-msg
message
en.connectors.labels.maxHeaderCountReached
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
{renderErrorMessages(step, validationErrors)}
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
down_state_error_message
message

+									
+										
+											
+												{selectedRowData?.state === ConnectorState.error
+													? en.connectors.labels.errorStateMessage
+													: en.connectors.labels.downStateMessage}
+											
+											{selectedRowData?.state === ConnectorState.error && (
+												
+													{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? "Unknown error"}
+												
+											)}
+											
+												{en.connectors.labels.additionalSupportMessage}
+												
+													{en.connectors.buttons.contactSupport}
+												
+											
+										
+										
+											
+												
+													{en.connectors.buttons.viewErrorLogs}
+												
+											
+										
+									
+								
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? "")
variant
"info"
dataQa
deploying_state_message
showIcon
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
buildSummaryErrorMessage(
+								vendorValidationErrors,
+								solaceValidationErrors,
+								detailsStepValidationErrors,
+								isEqual(connectorTypeDetails.direction, ConnectorDirection.Source),
+								true,
+								payloadMappingsValidationErrors,
+								apiErrorResponseError,
+								sourceTransformationGraphError,
+								targetTransformationGraphError,
+								showGaMiTransformation
+							) ?? ""
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
buildSummaryErrorMessage(
+								vendorValidationErrors,
+								solaceValidationErrors,
+								initialStepValidationErrors,
+								vendorSourceDirection,
+								false,
+								payloadMappingsValidationErrors,
+								apiErrorResponseError,
+								sourceTransformationGraphError,
+								targetTransformationGraphError,
+								showGaMiTransformation
+							) ?? ""
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
downErrorMessage
variant
"error"
onClose
() => setShowDownError(false)
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								{errorMessageDetails ?? ""}
+								
+									{en.connectors.buttons.contactSupport}
+								
+								
+									
+										{en.connectors.buttons.viewErrorLogs}
+									
+								
+							
variant
"error"
dataQa
error_message_box
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.connectors.labels.stateInfoBanner(connectorState ?? "")
showIcon
true
variant
info
dataQa
deploying_message_box
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_edit_msg_spool_info", message: "This change will not impact queue size." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_customize_msg_spool_info", message: "You cannot decrease the message spool size after creating the service, but you can increase it without service interruption." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
type
message
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
showCloseButton
message
error
onClose
() => setError(null)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
eventMesh.errorMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
<>
+									Sorry, a problem occurred trying to create your service.{" "}
+									
+										Open Support Ticket
+									
+								
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({
+									id: "id_sso_out_of_sync",
+									message: "The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details."
+								})
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (
+						
+							{message}
+							
+								Plan Upgrade
+							
+						
+					) : (
+						message
+					)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
dense
true
message

+						
+							{t({
+								id: "id_auto_upgrade_failed",
+								message: `Upgrade steps have failed. Contact Solace for support.`
+							})}
+						
+						
+							 setViewLogs(true)}>
+								View Upgrade Logs
+							
+						
+					
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
Upgrade steps have failed. Contact Solace for support.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_error_facilities", message: "At least one facility must be selected." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_warn_auth_disabled", message: "You have authentication disabled. Your event broker service is accessible by everyone." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
warningMessage.join(" ")
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
pickMessage(isProfileConfigured, isAccessConfigured)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_dt_error_deployment", message: "There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace." })
dataQa
disable-distributed-tracing-error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_dt_destination_out_of_date", message: "Tracing destination is out of date on this service." })
dataQa
event-broker-version-banner
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_dt_error_retrieving_details", message: "An error occurred while retrieving Distributed Tracing details, please try again." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
enableDistributedTracingErrorMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
patchBrandingText(t({ id: "id_dt_error_disabling", message: "An error occurred while disabling Distributed Tracing. For support, contact Solace." }))
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_dt_not_supported", message: "Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature." })
dataQa
event-broker-version-banner
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_configuration_progress", message: "Configuration in progress..." })
dataQa
configuration-progress
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
message
t({ id: "id_collector_running", message: "Collector is running." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_collector_down", message: "Collector is down." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_retrieving_collector_status", message: "Retrieving collector status..." })
dataQa
pending-collector-status
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
message
t({ id: "id_connection_service_active", message: "Connection to the service is active." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
brokerConnectionErrorMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({ id: "id_retrieving_service_status", message: "Retrieving service status..." })
dataQa
pending-service-status
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_syslog_error", message: "Failed to retrieve the configuration for Syslog Forwarding." })
dataQa
syslog-error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_warn_auth_disabled", message: "You have authentication disabled. Your event broker service is accessible by everyone." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
t({
+					id: "id_nodeport_info",
+					message: "You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation."
+				})
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
i18n._(meta.errorMessage)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
i18n._(meta.warningMessage)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
t({ id: "id_warn_not_latest_version", message: "Consider using the latest version. (Recommended)" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
t({ id: "id_error_max_spool_size", message: "Select a different region. You have reached your limits for this service." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
isSAP
+									? t({
+											id: "id_error_limits_sap",
+											message: "You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit."
+									  })
+									: t({ id: "id_error_limits", message: "Select another service type. You have either reached your limits, or the region does not support this service type." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
showCloseButton
showCloseButton
message
error
onClose
() => setError(null)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message

+										
+											{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} 
+											{en.brokerSSOConfig.message.brokerSsoSetup}
+										
+										
+											
+												{en.brokerSSOConfig.message.viewSettings}
+											
+										
+									
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+
+ {text + " "} + + {link} + +
+
+ + I Agree + +
+
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
en.viewMessageSpoolDetails.dialog.info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
+ {environmentsStr.messages.firstOpenTopInfo}{" "} + + {environmentsStr.messages.firstOpenBottomInfoLearnMore} + +
dataQa
environmentFirstUseCardTop
showCloseButton
true
onClose
handleCloseTopMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
deleteError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
+ {en.environments.labels.deleteDialogMessage} + + Learn more in the documentation + +
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.environments.errors.duplicateName
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.environments.createDialogLabels.error.typeRequired
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
en.environments.createDialogLabels.info.typeCannotBeChanged
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
showIcon
true
message
messages.warning
dataQa
configurationTemplateWarning
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.accountSettings.configNotComplete
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.accountSettings.configNotYetApplied
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
userGroupManagement.jitInfoMessage
showCloseButton
true
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message

+							{userGroupManagement.saveChangesText}
+							
+								{userGroupManagement.testAccess}
+							
+						
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
userGroupManagement.noAdminMessage
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
en.overview.banner.WE_HIT_AN_ISSUE
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.forgotPassword.errorSendingResetEmail
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.notifications.fetchingNotificationsErrorNotLoggedIn
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
+ + {environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)} + + + {environments.moveDialogLabels.warningMessages.learnMore} + +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+					{en.privateRegions.emaInfoBanner.title}{" "}
+					
+						{en.privateRegions.emaInfoBanner.linkText}
+					
+				
variant
info
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.tokens.text.anyApplicationsOrScriptsUsingThisToken
variant
"warn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
en.tokens.text.thisCannotBeUndone
variant
"warn"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
variant
"error"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+									{en.tokens.text.description}
+									
+										{en.tokens.text.learnMore}
+									
+								
variant
info
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
failed-to-synch
key
item.serviceId
message
tracingSynchDialog.error(item.serviceName)
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+								{modifyError.message}
+								{modifyError.id && {"Error ID: " + modifyError.id}}
+							
variant
error
dataQa
errorModifyingProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+								{tracingProfile.infoMessage.text}
+								
+									{tracingProfile.infoMessage.link.text}
+								
+							
variant
info
dataQa
infoBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
message

+								{outOfSynchMessageBox.outOfDate({
+									outOfSynchServices: outOfSynchServices.length,
+									associatedServices: associateServicesCount
+								})}
+
+								
+									 setSynchTracingDialog(true)}>
+										{outOfSynchMessageBox.viewServices}
+									
+								
+							
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
tracingLimits.errorMessage.retrieve
variant
error
dataQa
errorRetrievingTracingLimits
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
tracingProfile.errorMessage.delete
variant
error
dataQa
errorDeletingTracingDestination
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
tracingProfile.errorMessage.retrieve
variant
error
dataQa
errorRetrievingTracingDestinations
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${dataQa}Success`
variant
success
message
successMessage || "Success"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
dataQa
`${dataQa}Error`
variant
error
message
+ {errorMessage || "Validation failed. Please try again."} +
+ handleDetails(errorKey)}> + More Details + +
+
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
Note: It can take several minutes for resources to be deployed to Datadog. Please wait before validating.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${service.name}_agentStatusWarning`
variant
warn
message
`${warnings}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${service.name}_agentStatusError`
variant
error
message
`${errors.filter(e => e && String(e).trim() !== '')}.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
warnUpdateServicesPagination
variant
warn
message
`This section updates services shown in current page ${currentPage}. To apply monitoring configurations to all services, make sure you run Update Services on all service pages.`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
Note: solace-datadog-agent version cannot be overridden for k8s services
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
<>
+								Note: If this step fails because rbac is not enabled, please contact Datadog Support to enable
+								rbac for Datadog Sub-Org.
+							
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
<>
+										Note: You may need to switch to the customer Sub-Org.
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
<>
+										Note: It might take up to a minute for the log to be visible in Datadog.
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
<>
+																Note: Don’t enable PE profile for Insights onboarding. For RMMS consider
+																notifying to their handle.
+															
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
message
<>
+										Note: It can take several minutes for resources to be deployed to Datadog. Please wait before
+										validating.
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
info
message
<>
+										Note: Insights policy should not be enabled for RMMS accounts.
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
<>
+										{hasFailures && "Post-upgrade validations have failed. "}
+										{!lastValidation &&
+											"Unhandled server exception, missing attributes: contact the development team for review."}
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
<>
+										{hasFailures && "Pre-upgrade validations have failed. "}
+										{missingAttributes &&
+											"Unhandled server exception, missing attributes: contact the development team for review."}
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
Upgrade has been paused. Verify upgrade status before proceeding. In progress operations will complete.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
Upgrade has been cancelled. In progress operations will complete.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
!autoUpgrades && !customerUpgrades
+									? "Automated and customer upgrades are disabled. No scheduled or immediate upgrades can take place."
+									: !autoUpgrades
+									? "Automated upgrades are disabled. Customers can still trigger upgrades from the Console UI."
+									: !customerUpgrades
+									? "Customer upgrades are disabled. Customers will not be able to trigger upgrades from the Console UI."
+									: ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
ema.latestDeployment?.error?.message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
errorMessage
showCloseButton
true
onClose
() => setErrorMessage("")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
error
message
error
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
error
message
error
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorDialog
variant
error
message
error ? error : IN_USE_MESSAGE
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
error
message
error
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
releaseNotesError
message
Release Notes should be provided
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
createBizOrganization.messages.editDeleteMessage
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
message
+
+ {` ${createBizOrganization.orgDetails.errorFound}`} + + {createBizOrganization.orgDetails.purchaseOrderRunbook} + {" "} + {createBizOrganization.orgDetails.contactPeTeam} +
+ {/*
+ Contact PE +
*/} +
dataQa
errorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
successMsgBox
message
createBizOrganization.orgDetails.organizationSaveSuccess
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+							
+ {createBizOrganization.messages.errorFound} + + + {createBizOrganization.messages.purchaseOrder} + + + {createBizOrganization.messages.contactPeTeam} +
+
+ {createBizOrganization.messages.contactPE} +
+
variant
error
dense
true
color
theme.palette.error.light
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message

+								{createBizOrganization.products.products}
+								{createBizOrganization.messages.successMessage}
+							
variant
success
dataQa
prodValidatedMessageQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
createBizOrganization.requests.successBannerMessage
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
createBizOrganization.messages.editDeleteMessage
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
createBizOrganization.orgDetails.orgIdWarning
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
createBizOrganization.accountAdmins.successBannerMessage
variant
success
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
variant
error
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"For the latest Connector Details, please click the Connector Deployment Info Refresh icon."
variant
warn
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
dataQa
`deleting-${request.deploymentId}`
showIcon
false
message
+ + + Deleting the Connector with Deployment ID: {request.deploymentId} and Service ID:{" "} + {request.serviceId} + +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
dataQa
`error-${request.deploymentId}`
dense
true
message
+ + Failed to delete the Connector with Deployment ID: {request.deploymentId} and Service ID:{" "} + {request.serviceId} + + setErrorDetails(`${request.deploymentId}-disable`)} + > + Show Details + +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
deleteDialog.contentText
dataQa
errorMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
`Note: This page consists of private regions specific to ${orgId} organization.`
variant
info
dataQa
note
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
dataQa
cloneError
message
(error as Error)?.data?.message ?? `Failed to clone ${datacenterId} from ${selectedDatacenterId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
dataQa
sameDCError
message
"Unable to clone a datacenter from itself"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+								{modifyError.message}
+								{modifyError.id && {"Error ID: " + modifyError.id}}
+							
variant
error
dataQa
errorModifyingProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+									{modifyError.message}
+									{modifyError.id && {"Error ID: " + modifyError.id}}
+								
variant
error
dataQa
errorModifyingProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
<>
+									{modifyError.message}
+									{modifyError.id && {"Error ID: " + modifyError.id}}
+								
variant
error
dataQa
errorModifyingProfile
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
warn
dataQa
`deleting-${request.infrastructureId}`
showIcon
false
message
+ + Deleting the collector associated with service {request.serviceName} +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
dataQa
`error-${request.infrastructureId}`
dense
true
message
+ Failed to delete the collector associated with service {request.serviceName} + setErrorDetails(request.infrastructureId)} + > + Show Details + +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
success
showIcon
true
message
successMessage
dataQa
successMsgBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
error
showIcon
true
message
errorMessage
dataQa
errorMsgBox
+
+ +
+
+ +
+
+
+ SolaceConfirmationDialog + 235 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui112
intgmaas-ui12
mcmaas-ui34
saasmaas-ui34
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui42
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
actions235
isOpen234
title232
maxWidth88
linearProgressIndicator69
contentText32
contentLayout8
key8
data-qa3
customAction1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (235)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
confirmationObj.title
actions
[
+					{
+						label: confirmationObj.cancelLabel,
+						dataQa: "returnToForm",
+						onClick: () => closeModal(false)
+					},
+					{
+						label: confirmationObj.okLabel,
+						variant: "outline",
+						dataQa: "leaveAndDiscard",
+						onClick: () => closeModal(true)
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Delete Modeled Event Mesh
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{ label: "Delete", variant: "outline", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Add Existing Event Broker
isOpen
open && !openMessagingServiceDialog
actions
[
+					{
+						label: "Cancel",
+						variant: "text",
+						onClick: handleClose,
+						isDisabled: isLoading || addInProgress
+					},
+					{
+						label: "Add",
+						variant: "call-to-action",
+						onClick: () => {
+							handleAddExistingMessagingService();
+						},
+						isDisabled: isLoading || addInProgress || !!submitError?.message
+					}
+				]
linearProgressIndicator
addInProgress
maxWidth
md
contentLayout
contents
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
generateTitleDialog(mode)
isOpen
open
actions
generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title || "Event Broker Connection Details"
isOpen
open
actions
generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.eventApiProduct.headers.deployToEnvironment
actions
[
+				{ label: en.common.button.cancel, variant: "text", onClick: onClose },
+				{ label: en.common.button.add, variant: "call-to-action", onClick: handleSubmit }
+			]
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.entities.labels.bulkMove.move(
+				selectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)
+			)
isOpen
true
actions
[
+				{ label: en.common.button.cancel, onClick: onClose },
+				{ label: en.common.button.move, variant: "call-to-action", onClick: handleSubmit, isDisabled: moveDisabled }
+			]
linearProgressIndicator
startMove.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[{ label: en.common.button.close, onClick: onClose }]
isOpen
true
title
en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
messages.add.addToEnvironment
actions
[
+						{ label: common.button.cancel, variant: "text", onClick: onClose },
+						{
+							label: common.button.add,
+							variant: "call-to-action",
+							onClick: handleSubmit,
+							dataQa: "addEntityToEnvironment",
+							isDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError
+						}
+					]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
messages.add.addToEnvironment
actions
[
+						{ label: common.button.cancel, variant: "text", onClick: onClose },
+						{
+							label: messages.credentials.saveCredentialsAndContinue,
+							variant: "call-to-action",
+							onClick: onSave,
+							dataQa: "saveCredentialsAndContinue",
+							isDisabled: !!error || !!previewError || !isValid
+						}
+					]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`
actions
[
+					{ label: common.button.cancel, variant: "text", onClick: onClose },
+					{
+						label: common.button.add,
+						variant: "call-to-action",
+						onClick: handleSubmit,
+						dataQa: "addEntityToEnvironment",
+						isDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError
+					}
+				]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
messages.title
actions
[
+				{ label: en.common.button.cancel, variant: "text", onClick: () => onClose(false) },
+				{
+					label: messages.action,
+					variant: "call-to-action",
+					onClick: handleOnClick,
+					dataQa: "updateEntityInEnvironment",
+					isDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError
+				}
+			]
linearProgressIndicator
submitting || isDeploymentPreviewLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title

+					
+ + + +
+ Detected Event Flow Mismatches + + + + + +
+
+
+ + Edit Application + +
+
isOpen
open
actions
generateDialogActionButtons(cancel)
maxWidth
xl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.eventApiProduct.headers.addEventApiProduct
actions
[
+				{ label: en.common.button.cancel, variant: "text", onClick: onClose },
+				{ label: en.common.button.add, variant: "call-to-action", onClick: handleSubmit }
+			]
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
Add to Environment
actions
[
+				{ label: "Cancel", variant: "text", onClick: onClose },
+				{
+					label: "Add",
+					variant: "call-to-action",
+					onClick: handleSubmit,
+					dataQa: "addEntityToEnvironment",
+					isDisabled: !!submitError
+				}
+			]
linearProgressIndicator
isLoading
maxWidth
xl
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Unable to Delete ${entityTypeToLabel(entityType)}`
actions
[{ label: "Close", onClick: handleCloseWithErrors }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Delete ${entityTypeLabel}`
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{ label: "Delete", variant: "outline", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionError ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
applicationVersionId
actions
dialogActions
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.title
actions
[
+				{
+					label: messages.cancelButton,
+					onClick: () => onDone("cancel"),
+					dataQa: "cancelUserAccess"
+				},
+				{
+					label: messages.saveButton,
+					variant: "call-to-action",
+					onClick: onSave,
+					isDisabled: isDisabled,
+					dataQa: "saveUserAccess"
+				}
+			]
isOpen
true
linearProgressIndicator
progressIndicator
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
contentText
typeof errorObject.message === "string" ? errorObject.message : null
actions
[{ label: "Close", dataQa: "catalogErrorDialog", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
getTitle
actions
getButtons
isOpen
true
key
KafkaSampleSuccessDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.selectDialog.title
isOpen
isOpen
actions
[
+				{
+					label: messages.selectDialog.cancel,
+					variant: "text",
+					dataQa: "select-environment-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: messages.selectDialog.select,
+					variant: "call-to-action",
+					dataQa: "select-environment-ok",
+					isDisabled: !value,
+					onClick: handleSelect
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle
actions
getButtons
linearProgressIndicator
showProgressIndicator
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
details.label
isOpen
true
actions
[{ label: en.common.button.close, onClick: () => setDetails(null), variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
error.title
isOpen
true
contentText
error.message
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: () => {
+						setIsDialogOpen(false);
+						setErrorDialogOpen(false);
+					}
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Manage Custom Attributes
isOpen
true
maxWidth
md
actions
[
+				{ label: "Cancel", dataQa: "customAttributes-cancel", onClick: () => setIsDialogOpen(false) },
+				{
+					label: "Save",
+					dataQa: "customAttributes-save",
+					variant: "call-to-action",
+					isDisabled: disabled || isSaving === true,
+					onClick: () => handleSave()
+				}
+			]
linearProgressIndicator
isSaving
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
contentText
typeof errorObject.message === "string" ? errorObject.message : null
actions
[
+					{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: "catalogErrorDialog", onClick: closeErrorDialog, variant: "outline" }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
versionStateDialogOpen
title
Manage Lifecycle
actions
[
+				{
+					label: "Cancel",
+					onClick: handleCancel,
+					variant: "text"
+				},
+				{
+					label: "Save",
+					onClick: handleLifecycleChanges,
+					variant: "call-to-action",
+					isDisabled: isSaveDisabled()
+				}
+			]
maxWidth
"md"
linearProgressIndicator
changeEntityVersionStateHook?.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
[
+				{ label: "Cancel", variant: "text", onClick: handleCancel },
+				{ label: resetButtonLabel, variant: "outline", onClick: handleSave }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
confirmExitDialogOpen
title
`Unable to Close ${entityTypeToLabel(entityType)}`
actions
[{ label: "Return To Form", variant: "outline", onClick: handleCancel }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteVersionDialogOpen
title
`Delete ${entityTypeLabel} Version`
actions
[
+				{ label: "Cancel", onClick: handleCancel },
+				{ label: !isLastVersion || keepParent ? "Delete Version" : `Delete Version & ${entityTypeLabel}`, variant: "outline", onClick: handleDelete }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Duplicate Application Version`
actions
[
+				{ label: "Cancel", onClick: onClose, id: "cancel", dataQa: "cancel" },
+				{ dataQa: "save", label: "Save", variant: "call-to-action", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }
+			]
linearProgressIndicator
duplicateEntityVersion.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title ?? "Warning"
actions
[
+				{ label: "Return to Form", onClick: onClose },
+				{ label: "Reload", variant: "outline", onClick: handleReload }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Configure Variable
actions
actions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
actions
[
+					{ label: refreshGraphRequiredOnClosingErrorDialog ? "Close & Refresh Graph" : "Close", onClick: closeErrorDialog, variant: "outline" }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Publish Graph Layout"
isOpen
layoutConflictDialogOpen
maxWidth
"sm"
actions
[
+				{ label: `Return to ${entityLabel}`, onClick: handleClose, id: "cancel", dataQa: "cancel" },
+				{
+					label: "Publish Layout",
+					variant: "outline",
+					isDisabled: graphUpdating,
+					onClick: handleContinuePublishLayout,
+					dataQa: "continuePublishLayout"
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Changes Partially Published"
isOpen
partialPublishDialogOpen
maxWidth
"sm"
actions
[
+				{ label: "Close", onClick: handleClose, id: "cancel", dataQa: "cancel" },
+				{ label: "Refresh", variant: "outline", onClick: handleRefreshGraph, id: "refreshGraph", dataQa: "refreshGraph" }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title ?? defaultTilte
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{ label: "Remove", dataQa: "removeAssociation", variant: "outline", onClick: () => onRemove(idToRemove) }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionError ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
"fail-download-async-api"
actions
[{ label: en.common.button.close, variant: "outline" as const, onClick: action("onClose") }]
linearProgressIndicator
false
maxWidth
"md"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteConfirmationDialogOpen
title
Delete Event Broker From Event Portal
actions
[
+					{ label: "Cancel", variant: "text", onClick: handleCloseDeleteConfirmationDialog },
+					{ label: "Delete From Event Portal", variant: "outline", onClick: handleDeleteMessagingServiceConfirmation }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
unableToDeleteDialogOpen
title
Unable to Delete
actions
[
+					{ label: "Close", variant: "text", onClick: handleCloseUnableToDeleteDialog },
+					{ label: "Open Modeled Event Mesh", variant: "outline", onClick: handleOpenModeledEventMesh }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
"md"
isOpen
isOpen
title
Skip and Install
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{
+					label: "Skip",
+					variant: "outline",
+					onClick: handleSkip
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
"md"
isOpen
isOpen
title
Connection File Created
actions
[{ label: "Close", variant: "outline", onClick: onClose, dataQa: "connectionFileDialogCloseButton" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Setting Up Offline Event Management Agent
isOpen
standaloneDialogOpen
actions
[{ label: "Close", onClick: handleStandaloneClose, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Event Management Agent Set Up Complete
isOpen
emaSetupCompleteDialog
actions
[
+						{
+							label: "Close",
+							onClick: handleEmaSetupCompleteDialogClose,
+							variant: "text"
+						},
+						{
+							label: "Go to Modeled Event Meshes",
+							onClick: handleGotoMEM,
+							variant: "outline"
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Unable to Delete ${runtimeAgentName}`
actions
[{ label: "Close", onClick: onClose }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
"sm"
isOpen
isOpen
title
Delete Event Management Agent Connection
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{
+							label: "Delete",
+							variant: "outline",
+							isDisabled: deleteEventManagementAgent.isLoading,
+							onClick: handleDelete
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Custom Discovery Scan
maxWidth
sm
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{
+					label: "Run Discovery Scan",
+					variant: "call-to-action",
+					isDisabled: isRunDiscoveryScanButtonDisabled,
+					onClick: initiateCustomScan
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Delete Data Collection"
actions
[{ label: "Close", onClick: onClose }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Delete Data Collection
maxWidth
sm
actions
[
+						{ label: "Cancel", onClick: onClose },
+						{ label: "Delete", variant: "outline", isDisabled: deleteScan.isLoading, onClick: handleDelete }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Run Discovery Scan
actions
renderDialogActionButtons(messagingServicesForDataCollection)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
actions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteConfirmationDialogOpen
title
Delete Event Broker From Event Portal
actions
[
+						{ label: "Cancel", variant: "text", onClick: handleCloseDeleteConfirmationDialog },
+						{ label: "Delete From Event Portal", variant: "outline", onClick: handleDeleteMessagingServiceConfirmation }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
eventManagementAgentNeedsUpdateDialogOpen
title
Event Management Agent Needs Update
actions
[
+						{ label: "Close", variant: "text", onClick: handleCloseEMAUpdateDialog },
+						{ label: "Open Event Management Agent", variant: "outline", onClick: handleGoToEMA }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Data Collection Logs"
isOpen
open
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: onClose
+				}
+			]
maxWidth
"xl"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Add Environment Association"
isOpen
open
actions
generateDialogActionButtons(
+				isLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,
+				cancel,
+				update
+			)
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
isAddMode ? (
+					
+ setIsAddMode(false)}> + + + Add Environment Association +
+ ) : ( + <>{showViewOnly ? "View Environment Associations" : "Manage Environment Associations"} + )
actions
showViewOnly
+					? [{ label: "Close", variant: "call-to-action", onClick: handleClose }]
+					: [
+							{ label: "Cancel", variant: "text", onClick: handleClose },
+							{ label: isAddMode ? "Add" : "Save", variant: "call-to-action", onClick: handleClick }
+					  ]
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeCompareDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? "Configuration" : "Runtime Configuration"
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeDetailsDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
dialogTitle
actions
[
+				{ label: "Cancel", dataQa: "closeConfirmDialog", onClick: onClose },
+				{
+					label: "Apply",
+					dataQa: "applyConfirmDialog",
+					onClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),
+					variant: "call-to-action"
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Import Progress
isOpen
true
actions
[
+				{
+					label: "Close",
+					dataQa: "auditImport-close",
+					variant: "outline",
+					onClick: () => setAuditImportProgressDialogOpen(false)
+				}
+			]
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeConfigDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
actions
[{ label: "Cancel", variant: "outline", onClick: onClose, dataQa: "closeConfigDialog" }]
isOpen
open
maxWidth
"lg"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
title
linearProgressIndicator
!!isLoading
actions
[
+				{ label: "Cancel", variant: "text", onClick: onClose, dataQa: "cancelAuditButton" },
+				{ label: "Import", variant: "call-to-action", isDisabled: auditInError, onClick: handleImport, dataQa: "importAuditButton" }
+			]
customAction
customAction
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
renderHeader()
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: onClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
application.configuration.setDefaultTemplate
actions
[
+						{
+							label: en.common.button.cancel,
+							onClick: () => setOpenConfirmationDialog(false)
+						},
+						{
+							label: application.configuration.setDefaultTemplate,
+							variant: "call-to-action",
+							onClick: () => {
+								setObservedConfiguration({
+									name: configurationName,
+									value: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)
+								});
+								setOpenConfirmationDialog(false);
+							}
+						}
+					]
isOpen
true
data-qa
defaultTemplateConfirmationDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
[
+				{ label: en.common.button.cancel, onClick: () => onClose() },
+				{ label: en.common.button.delete, dataQa: "deleteTemplate", variant: "outline", onClick: handleDeleteTemplate }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"learningCenterErrorDialog"
isOpen
true
title
title
contentText
description
actions
[{ label: "Close", onClick: closeErrorDialog }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle
actions
[{ label: "Close", variant: "outline", onClick: () => setApiError(null) }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate
actions
[
+						{
+							label: messagesCommon.button.cancel,
+							dataQa: "cancelAction",
+							onClick: () => {
+								setModeSelectionToConfirm(null);
+							}
+						},
+						{
+							label: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,
+							dataQa: `confirmSwitchFrom_${mode}`,
+							variant: "outline",
+							onClick: () => {
+								if (modeSelectionToConfirm === Mode.template) {
+									updateUserConfigValues({}, true);
+								}
+
+								resetTemplate();
+								setMode(modeSelectionToConfirm);
+								setModeSelectionToConfirm(null);
+							}
+						}
+					]
isOpen
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.application.configuration.restDeliveryPoint.addRequestHeader
isOpen
true
actions
[
+				{
+					label: en.common.button.cancel,
+					onClick: () => handleClose()
+				},
+				{
+					dataQa: "add-request-header-submit",
+					variant: "call-to-action",
+					label: en.application.configuration.restDeliveryPoint.addRequestHeader,
+					onClick: () => {
+						handleAddRequestHeader();
+					}
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate
actions
[
+						{
+							label: messagesCommon.button.cancel,
+							dataQa: "cancelAction",
+							onClick: () => {
+								setModeSelectionToConfirm(null);
+							}
+						},
+						{
+							label:
+								modeSelectionToConfirm === Mode.custom
+									? messagesConfiguration.solaceClientProfileName.customize
+									: messagesConfiguration.selectTemplate,
+							dataQa: `confirmSwitchFrom_${mode}`,
+							variant: "outline",
+							onClick: () => {
+								if (modeSelectionToConfirm === Mode.custom) {
+									setValue(FormCustomizedClientProfileName, observedConfiguration ?? "");
+								}
+
+								reset(modeSelectionToConfirm === Mode.template);
+								setMode(modeSelectionToConfirm);
+								setModeSelectionToConfirm(null);
+							}
+						}
+					]
isOpen
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorDialogOpen
title
errorObject.title
contentText
errorObject.message ?? ""
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Delete Application Domain"
actions
[{ label: "Close", onClick: onClose }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`Delete Application Domain`
actions
[
+						{ label: "Cancel", onClick: onClose, id: "cancel", dataQa: "cancel" },
+						{ dataQa: "delete", label: "Delete", variant: "outline", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }
+					]
linearProgressIndicator
deleteApplicationDomain.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
error.title
isOpen
true
contentText
error.message
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								onDone();
+							}
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Application Domain Export Preview
isOpen
true
actions
[
+				{ label: "Cancel", dataQa: "domainExport-cancel", onClick: () => onCancel() },
+				{
+					label: "Export",
+					dataQa: "domainExport-confirm",
+					variant: "call-to-action",
+					isDisabled: !!errorMsg,
+					onClick: () => onExport()
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
customAttributeValidations?.title
isOpen
!!customAttributeValidations
actions
customAttributeValidations?.actions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Error Importing Application Domains"
isOpen
true
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								setErrorMsg("");
+							}
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
appDomainCount === 1 ? "Importing Application Domain" : "Importing Application Domains"
isOpen
true
maxWidth
"sm"
contentText
"The import may take several minutes."
actions
null
linearProgressIndicator
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Error Importing Application Domains"
isOpen
true
maxWidth
"sm"
contentText
errorMsg
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								onDone(false);
+							}
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Kafka Settings"
actions
[
+				{ label: "Cancel", onClick: onClose },
+				{ label: "Save", variant: "outline", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
details.label
isOpen
true
actions
[{ label: en.common.button.close, onClick: () => setDetails(null), variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
details.label
isOpen
true
actions
[{ label: en.common.button.close, onClick: () => setDetails(null), variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Select Shared Events
isOpen
open
actions
generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))
maxWidth
"lg"
contentLayout
contents
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionError ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
eventApi.id
actions
dialogActions
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
showErrorDialog
title
error.title
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+
{`${collisionErrors ? "Unable to " : ""}${en.eventApi.headers.download}`}
+
isOpen
true
key
eventApi.id
actions
dialogActions
linearProgressIndicator
isLoading
maxWidth
"md"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.eventApiProduct.labels.availability.dialogTitle
actions
[
+						{ label: en.common.button.cancel, onClick: () => setOpen(false) },
+						{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }
+					]
linearProgressIndicator
updatePublishState.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
error.title
isOpen
true
contentText
error.message
actions
[
+						{
+							label: "Close",
+							variant: "call-to-action",
+							onClick: () => {
+								setOpen(false);
+								setErrorDialogOpen(false);
+							}
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
userNotFoundDialogOpen
title
User No Longer Exist
actions
[
+									{
+										label: "Close & Clear Filters",
+										variant: "outline",
+										onClick: handleCloseAndClearFilters
+									}
+								]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Revoke Event Access"
actions
[{ label: "Close", onClick: onCancel }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Revoke Event Access
actions
[
+						{
+							label: "Cancel",
+							onClick: handleCancel,
+							variant: "text"
+						},
+						{
+							label: "Revoke Access",
+							onClick: handleSendReview,
+							variant: "outline",
+							isDisabled: declineEventAccessRequest.isLoading
+						}
+					]
maxWidth
"sm"
linearProgressIndicator
declineEventAccessRequest.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
"Unable to Review Event Access Request"
actions
[{ label: "Close", onClick: onCancel }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Review Event Access Request
actions
[
+						{
+							label: "Cancel",
+							onClick: handleCancel,
+							variant: "text"
+						},
+						{
+							label: "Send Review",
+							onClick: handleSendReview,
+							variant: "call-to-action",
+							isDisabled: sendReviewButtonDisabled,
+							dataQa: "sendReviewButton"
+						}
+					]
maxWidth
"sm"
linearProgressIndicator
approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteDialogOpen
title
`Delete Subscription`
actions
[
+				{ label: "Cancel", onClick: handleCloseDeleteDialog, id: "cancel", dataQa: "cancelDeleteSubscriptionButton" },
+				{ label: "Delete", variant: "outline", onClick: () => handleDelete(consumerId, index), dataQa: "deleteSubscriptionButton" }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteDialogOpen
title
`Delete Consumer`
actions
[
+				{ label: "Cancel", onClick: handleCloseDeleteDialog, id: "cancel", dataQa: "cancelDeleteConsumerButton" },
+				{ label: "Delete", variant: "outline", onClick: handleDelete, dataQa: "deleteConsumerButton" }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
title
errorObject.title || "Error"
contentText
errorObject.message
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
title
actions
failedTopicDomains?.length > 0
+					? [{ label: "Edit Topic Domains", variant: "text", onClick: onReturn }]
+					: [
+							{ label: "Edit Topic Domains", variant: "text", onClick: onReturn },
+							{ label: "Use Duplicates", variant: "outline", onClick: onContinue }
+					  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
title
actions
[
+				{ dataQa: "topicAddressResourcesCancel", label: "Cancel", variant: "outline", onClick: onReset },
+				{ dataQa: "topicAddressResourcesDone", label: ctaLabel, variant: "call-to-action", onClick: onDone }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
"Topic Address Required"
actions
actions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
!!error
title
"Error Sending Requests"
contentText
error ?? ""
actions
[{ label: "Close", onClick: closeErrorDialog, variant: "outline" }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
messages.action.removeCredentials
actions
[
+						{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },
+						{
+							label: common.button.remove,
+							variant: "call-to-action",
+							onClick: async () => {
+								try {
+									await deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {
+										refreshApplicationDeploymentPreviews.refresh();
+									});
+								} catch (error) {
+									handleBackendError(messages.credentials.removeCredentialsErrorTitle, error);
+								}
+
+								// close the dialog
+								setRemoveCredentialsData(null);
+							}
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
title
actions
isEditing
+					? [
+							{ label: common.button.cancel, variant: "text", onClick: () => setOpen(false), dataQa: "credentialsCancel" },
+							{
+								label: common.button.save,
+								variant: "call-to-action",
+								onClick: () => onSave(),
+								isDisabled: isLoading || !isValid || !!error,
+								dataQa: "credentialsSave"
+							}
+					  ]
+					: [{ label: common.button.close, variant: "call-to-action", onClick: () => setOpen(false), dataQa: "credentialsClose" }]
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isLoading
title
getInProgressTitle(activeStep)
actions
[]
linearProgressIndicator
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
errorMessage !== ""
title
Encountered Error while Creating Assets
actions
[{ label: "Close", variant: "outline", onClick: () => setErrorMessage("") }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
genAiErrorMessage !== ""
title
`Encountered Error while ${getInProgressTitle(activeStep)}`
actions
[{ label: "Close", variant: "call-to-action", onClick: () => setGenAiErrorMessage("") }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isMoreInformationDialogOpen
title
More Information Required
actions
[
+					{
+						label: "OK",
+						variant: "outline",
+						onClick: () => setIsMoreInformationDialogOpen(false)
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
activeStepToConfirm !== -1
title
Progress Reset Warning
actions
[
+					{
+						label: "Cancel",
+						variant: "outline",
+						onClick: () => setActiveStepToConfirm(-1)
+					},
+					{
+						label: "Continue",
+						variant: "call-to-action",
+						onClick: () => handleSetActiveStep(activeStepToConfirm)
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
title
"Disclaimer"
actions
[{ label: "Close", variant: "outline", onClick: () => setIsDialogOpen(false) }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
showTransformationDialog !== ShowTransformation.NONE
maxWidth
xl
actions
showTransformationDialog === ShowTransformation.READ_ONLY
+					? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: "text" }]
+					: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: "text" }]
title

+					{en.connectors.labels.transformationDetails}
+					
+						{en.connectors.buttons.transformationsLink.label}
+					
+				
key
transformation-dialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
showTransformationDialog !== ShowTransformation.NONE
maxWidth
xl
actions
showTransformationDialog === ShowTransformation.READ_ONLY
+					? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: "text" }]
+					: [
+							{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: "text" },
+							{
+								label: en.connectors.buttons.apply,
+								onClick: onApplyTransformation,
+								variant: "call-to-action",
+								dataQa: "applyTransformationButton"
+							}
+					  ]
title

+					{en.connectors.labels.transformationDetails}
+					
+						{en.connectors.buttons.transformationsLink.label}
+					
+				
key
transformation-dialog
contentLayout
contents
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.importPayloads(direction)
isOpen
uploadDialog
maxWidth
lg
actions
[
+					{
+						label: en.connectors.buttons.cancel,
+						variant: "text",
+						dataQa: "close-upload-dialog",
+						onClick: () => {
+							setUploadDialogErrorText("");
+							setUploadDialog(false);
+						}
+					},
+					{
+						label: en.connectors.buttons.import,
+						variant: "call-to-action",
+						dataQa: "upload-file",
+						onClick: handleUploadFile
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
fieldType === FieldType.constant
+							? en.connectors.labels.deleteConstantField
+							: en.connectors.labels.deleteHeaderField
contentText
en.connectors.labels.deleteHeaderFieldContext
isOpen
showDeleteDialog
maxWidth
sm
actions
[
+						{
+							label: en.connectors.buttons.cancel,
+							onClick: () => {
+								setIdToDelete("");
+								setShowDeleteDialog(false);
+							},
+							variant: "text"
+						},
+						{
+							label: en.connectors.buttons.delete,
+							onClick: () => handleDeleteButtonClick(),
+							variant: "outline"
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+				{ label: "Cancel", dataQa: "deleteEdgeDialog-cancel", onClick: onClose },
+				{
+					label: en.connectors.buttons.delete,
+					dataQa: "deleteEdgeDialog-delete",
+					variant: "outline",
+					onClick: removeRelation
+				}
+			]
isOpen
true
title
en.transformations.labels.deleteMapping
contentText
!isEmpty(affectedTransformations) && affectedTransformations.length > 1
+					? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)
+					: en.transformations.labels.deleteDialogText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
connectors.labels.errorDeploymentTitle
isOpen
dialogOpen
actions
[
+					{
+						label: connectors.buttons.close,
+						dataQa: "connectordeployerror-close",
+						onClick: () => setDeployErrorDialogClose(false)
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+				{ label: "Cancel", dataQa: "connectorStateChange-cancel", onClick: () => setShowDeployDialog(false) },
+				{
+					label: action === "deploy" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,
+					dataQa: "connectorStateChange-deploy",
+					variant: "call-to-action",
+					onClick: handleStateChange
+				}
+			]
isOpen
true
maxWidth
lg
title
action === "deploy" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
en.connectors.labels.deleteDialogTitle
contentText
en.connectors.deleteConfirmationMsg
actions
[
+				{ label: en.connectors.buttons.close, onClick: onClose },
+				{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: "outline" }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title

+						
+							{en.connectors.labels.mapWithAI}
+						
+						
+					
isOpen
isOpen
actions
[
+					{
+						label: en.connectors.buttons.cancel,
+						variant: "link",
+						dataQa: "close-ai-mapping-dialog",
+						onClick: () => setMapAiDialogClose(false),
+						isDisabled: isReqLoading
+					},
+					{
+						label: en.connectors.buttons.map,
+						variant: "call-to-action",
+						dataQa: "confirm-ai-mapping",
+						onClick: handleAiMapping,
+						isDisabled: isReqLoading
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"An error occurred"
isOpen
isOpen
actions
[
+				{
+					label: "Open Support Ticket",
+					variant: "link",
+					dataQa: "open-ticket",
+					onClick: handleOpenTicket
+				},
+				{
+					label: "Close",
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.errorAiMap
isOpen
isOpen
actions
[
+					{
+						label: en.connectors.buttons.close,
+						variant: "outline",
+						dataQa: "close-ai-mapping-error-dialog",
+						onClick: () => setMapAiErrorDialogClose(false)
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_environments", message: "Environments" })
isOpen
isOpen
contentLayout
contents
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "select-environment-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_select", message: "Select" }),
+					variant: "call-to-action",
+					dataQa: "select-environment-ok",
+					onClick: handleSelect
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
isEdit ? t({ id: "id_dlg_edit_msg_spool_title", message: "Edit Message Spool Size" }) : t({ id: "id_dlg_customize_msg_spool_title", message: "Customize Message Spool Size" })
isOpen
true
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "customizeMessageSpoolCancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: isEdit ? t({ id: "id_save", message: "Save" }) : t({ id: "id_apply", message: "Apply" }),
+					variant: "call-to-action",
+					dataQa: isEdit ? "customizeMessageSpoolSave" : "customizeMessageSpoolApply",
+					isDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,
+					onClick: handleApply
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_delete_service_title", message: "Delete Service" })
isOpen
true
actions
[
+					{
+						label: t({ id: "id_ok", message: "OK" }),
+						variant: "outline",
+						dataQa: "delete-service-cancel",
+						onClick: onCancel
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
count ? t({ id: "id_dlg_delete_services_title", message: "Delete Services" }) : t({ id: "id_dlg_delete_service_title", message: "Delete Service" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "delete-service-cancel",
+					onClick: onCancel
+				},
+				{
+					label: count ? t({ id: "id_delete_services", message: "Delete Services" }) : t({ id: "id_delete_service", message: "Delete Service" }),
+					variant: "call-to-action",
+					dataQa: "delete-service-ok",
+					isDisabled: matchText.trim() !== matchName,
+					onClick: onDelete
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_rename_service_title", message: "Edit Service Name" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "rename-service-cancel",
+					onClick: onCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "rename-service-ok",
+					isDisabled: hasErrors,
+					onClick: handleRename
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_clone_service_title", message: "Clone Service: Pre-Check" })
isOpen
true
actions
isReady && (results.errors.length > 0 || results.warnings.length > 0)
+					? [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "clone-service-cancel",
+								onClick: onCancel
+							},
+							{
+								label: t({ id: "id_continue", message: "Continue" }),
+								variant: "call-to-action",
+								dataQa: "clone-service-continue",
+								isDisabled: results.errors.length > 0,
+								onClick: onContinue
+							}
+					  ]
+					: []
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_error_title", message: "An error occurred" })
isOpen
isOpen
maxWidth
md
actions
[
+				{
+					label: t({ id: "id_open_support_ticket", message: "Open Support Ticket" }),
+					variant: "link",
+					dataQa: "open-ticket",
+					onClick: handleOpenTicket
+				},
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_environments", message: "Environments" })
isOpen
isOpen
contentLayout
contents
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "select-environment-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_select", message: "Select" }),
+					variant: "call-to-action",
+					dataQa: "select-environment-ok",
+					onClick: handleSelect
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.title
actions
[
+				{
+					label: messages.cancelButton,
+					onClick: () => onDone("cancel"),
+					dataQa: "cancelUserAccess"
+				},
+				{
+					label: messages.saveButton,
+					variant: "call-to-action",
+					onClick: onSave,
+					isDisabled: isDisabled,
+					dataQa: "saveUserAccess"
+				}
+			]
isOpen
true
linearProgressIndicator
progressIndicator
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
t({ id: "id_auto_upgrade_plan_title", message: "Plan Upgrade" })
actions
[
+				{ label: "Close", onClick: handleClose },
+				{ label: "Run Upgrade", onClick: handleUpgrade, variant: "call-to-action", isDisabled: !!formError || upgradeMutation.isLoading }
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
actions
[{ variant: "outline", label: "Close", onClick: () => onClose() }]
title
getTitle()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
id ? t({ id: "id_dlg_client_profile_edit_title", message: "Edit Client Profile" }) : t({ id: "id_dlg_client_profile_create_title", message: "Create Client Profile" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
canConfigure
+					? [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "client-profile-cancel",
+								onClick: handleCancel
+							},
+							{
+								label: id ? t({ id: "id_save", message: "Save" }) : t({ id: "id_create", message: "Create" }),
+								variant: "call-to-action",
+								dataQa: id ? "client-profile-save" : "client-profile-create",
+								isDisabled: saveDisabled,
+								onClick: handleSave
+							}
+					  ]
+					: [
+							{
+								label: t({ id: "id_close", message: "Close" }),
+								variant: "outline",
+								dataQa: "client-profile-close",
+								onClick: handleCancel
+							}
+					  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
addMode
+					? t({ id: "id_dlg_client_cert_auth_title", message: "Add Client Certificate Authority" })
+					: t({ id: "id_dlg_client_cert_auth_edit_title", message: "Edit Client Certificate Authority" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
canConfigure
+					? [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "client-cert-auth-dialog-cancel",
+								onClick: handleCancel
+							},
+							{
+								label: t({ id: "id_save", message: "Save" }),
+								variant: "call-to-action",
+								dataQa: "client-cert-auth-dialog-save",
+								isDisabled: saveDisabled,
+								onClick: handleSave
+							}
+					  ]
+					: [
+							{
+								label: t({ id: "id_close", message: "Close" }),
+								variant: "outline",
+								dataQa: "client-cert-auth-dialog-close",
+								onClick: handleCancel
+							}
+					  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
maxWidth
md
title
t({ id: "id_dlg_view_logs_title", message: "View Logs" })
actions
[
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					dataQa: "close-error-dialog",
+					variant: "outline",
+					onClick: () => onClose()
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
isEdit
+					? t({ id: "id_dlg_edit_syslog_config_title", message: "Edit Syslog Forwarding Destination" })
+					: t({ id: "id_dlg_create_syslog_config_title", message: "Create Syslog Forwarding Destination" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
canConfigure
+					? [
+							{
+								label: t({ id: "id_close", message: "Close" }),
+								variant: "outline",
+								dataQa: "syslog-config-close",
+								onClick: handleCancel
+							}
+					  ]
+					: [
+							{
+								label: t({ id: "id_cancel", message: "Cancel" }),
+								variant: "text",
+								dataQa: "syslog-config-cancel",
+								onClick: handleCancel
+							},
+							{
+								label: isEdit ? t({ id: "id_save", message: "Save" }) : t({ id: "id_create", message: "Create" }),
+								variant: "call-to-action",
+								dataQa: "syslog-config-save",
+								isDisabled: saveDisabled,
+								onClick: handleSave
+							}
+					  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_view_logs_title", message: "View Logs" })
isOpen
isOpen
maxWidth
lg
linearProgressIndicator
inProgress
actions
[
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
create ? t({ id: "id_dlg_create_endpoint_title", message: "Create Endpoint" }) : t({ id: "id_dlg_edit_endpoint_title", message: "Edit Endpoint" })
isOpen
true
linearProgressIndicator
progress
maxWidth
lg
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "endpoint-dialog-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "endpoint-dialog-save",
+					isDisabled: saveDisabled || progress,
+					onClick: handleSave
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_create_hostname_title", message: "Create Hostname" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "create-hostname-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_create", message: "Create" }),
+					variant: "call-to-action",
+					dataQa: "create-hostname-save",
+					isDisabled: isLoadingCertificates || saveDisabled,
+					onClick: handleCreate
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
title
maxWidth
lg
actions
[
+				{
+					label: t({ id: "id_close", message: "Close" }),
+					variant: "outline",
+					dataQa: "library-close",
+					onClick: onClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_client_auth_title", message: "Edit Client Authentication" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "client-auth-dialog-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "client-auth-dialog-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_edit_cluster_name_title", message: "Edit Cluster Name" })
isOpen
true
linearProgressIndicator
progress
maxWidth
lg
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "cluster-name-dialog-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "cluster-name-dialog-save",
+					isDisabled: saveDisabled || progress,
+					onClick: handleSave
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_distributed_tracing_title", message: "Distributed Tracing" })
isOpen
isOpen
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "dt-dialog-disable-cancel",
+					isDisabled: inProgress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_disable", message: "Disable" }),
+					variant: "outline",
+					dataQa: "dt-dialog-disable-confirm",
+					isDisabled: inProgress,
+					onClick: handleDisable
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_move_hostname_title", message: "Move Hostname" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "create-hostname-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_move", message: "Move" }),
+					variant: "call-to-action",
+					dataQa: "move-hostname-save",
+					isDisabled: saveDisabled,
+					onClick: handleMove
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_distributed_tracing_title", message: "Configure Data Collection" })
isOpen
true
maxWidth
md
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "dt-dialog-deploy-cancel",
+					isDisabled: inProgress,
+					onClick: onCancel
+				},
+				{
+					label: t({ id: "id_dt_confirmDeploy", message: "Confirm and Deploy" }),
+					variant: "call-to-action",
+					dataQa: "dt-dialog-deploy-confirm",
+					onClick: handleConfirmDeploy,
+					isDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_rotate_passwords_title", message: "Rotate Broker Passwords" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "rotate-passwords-dialog-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_rotate", message: "Rotate" }),
+					variant: "call-to-action",
+					dataQa: "rotate-passwords-dialog-rotate",
+					onClick: handleRotate
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_delete_hostname_title", message: "Delete Hostname" })
isOpen
true
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "delete-hostname-cancel",
+					isDisabled: progress,
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_delete", message: "Delete" }),
+					variant: "outline",
+					dataQa: "delete-hostname-confirm",
+					isDisabled: progress,
+					onClick: handleDelete
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_ldap_mgmt_access_title", message: "Set LDAP Group Access" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "ldap-mgmt-access-access-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "ldap-mgmt-access-access-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_mate_link_encryption_title", message: "Mate-Link Encryption" })
isOpen
true
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "mate-link-encryption-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_disable", message: "Disable" }),
+					variant: "call-to-action",
+					dataQa: "mate-link-encryption-disable",
+					onClick: handleDisable
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_ldap_profile_title", message: "Edit LDAP Profile" })
isOpen
true
maxWidth
md
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "ldap-mgmt-profile-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "ldap-mgmt-profile-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_dlg_domain_cert_auth_title", message: "Add Domain Certificate Authority" })
isOpen
true
maxWidth
lg
linearProgressIndicator
progress
actions
[
+				{
+					label: t({ id: "id_cancel", message: "Cancel" }),
+					variant: "text",
+					dataQa: "domain-cert-auth-dialog-cancel",
+					onClick: handleCancel
+				},
+				{
+					label: t({ id: "id_save", message: "Save" }),
+					variant: "call-to-action",
+					dataQa: "domain-cert-auth-dialog-save",
+					isDisabled: saveDisabled,
+					onClick: handleSave
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_endpoint", message: "Delete Endpoint" })
actions
[
+						{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", dataQa: "delete-endpoint-cancel", onClick: handleCancelDelete },
+						{ label: t({ id: "id_delete", message: "Delete" }), variant: "outline", dataQa: "delete-endpoint-confirmed", onClick: handleDeleteEndpoint }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_syslog_config", message: "Deactivate Syslog Forwarding" })
contentText
t({ id: "id_prompt_delete_syslog_config", message: "Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server." })
actions
[
+						{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", dataQa: "syslog-config-cancel-delete", onClick: handleCancelDelete },
+						{ label: t({ id: "id_deactivate", message: "Deactivate" }), variant: "outline", dataQa: "syslog-config-delete", onClick: handleDelete }
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_disable_standard_domain_cert_auth", message: "Disable Standard Domain Certificate Authorities" })
contentText
t({
+							id: "id_disable_standard_domain_cert_auth_desc",
+							message: "This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates."
+						})
actions
[
+							{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", onClick: handleCancelConfirmDisable },
+							{ label: t({ id: "id_disable", message: "Disable" }), variant: "call-to-action", onClick: handleConfirmDisable }
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_cert_auth", message: "Delete Certificate Authority" })
contentText
t({
+							id: "id_prompt_delete_cert_auth",
+							message: "Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? "
+						})
actions
[
+							{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", onClick: handleCancelDelete },
+							{ label: t({ id: "id_delete", message: "Delete" }), variant: "outline", isDisabled: !allowServiceQueries, onClick: handleDelete }
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
linearProgressIndicator
hasOngoingOperation
title
t({ id: "id_delete_client_profile", message: "Delete Client Profile" })
contentText
t({ id: "id_prompt_delete_client_profile", message: "Are you sure you want to permanently delete this client profile?" })
actions
[
+							{ label: t({ id: "id_cancel", message: "Cancel" }), variant: "text", dataQa: "client-profile-cancel-delete", onClick: handleCancelDelete },
+							{ label: t({ id: "id_delete", message: "Delete" }), variant: "outline", dataQa: "client-profile-delete", onClick: handleDelete }
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.title
actions
[
+				{
+					label: messages.cancelButton,
+					onClick: () => onDone("cancel"),
+					dataQa: "cancelUserAccess"
+				},
+				{
+					label: messages.saveButton,
+					variant: "call-to-action",
+					onClick: onSave,
+					isDisabled: isDisabled,
+					dataQa: "saveUserAccess"
+				}
+			]
isOpen
true
linearProgressIndicator
progressIndicator
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.brokerSSOConfig.dialog.title
isOpen
dialogOpen
actions
[
+				{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: "outline" }
+			]
maxWidth
lg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.viewMessageSpoolDetails.dialog.title
actions
[
+				{
+					label: en.viewMessageSpoolDetails.buttons.close,
+					onClick: onClose,
+					variant: "outline"
+				}
+			]
isOpen
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
`Change Request - ${editLimitsRow.name}`
isOpen
true
maxWidth
sm
actions
[
+						{
+							label: en.common.buttons.cancel,
+							onClick: () => setEditLimitsRow(null),
+							isDisabled: submittingTicket
+						},
+						{
+							label: en.serviceLimits.buttons.sendRequest,
+							onClick: onSubmit,
+							variant: "call-to-action",
+							isDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit
+						}
+					]
linearProgressIndicator
submittingTicket
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
md
title
messages.menuLabel
linearProgressIndicator
isLoading
actions
[
+				{
+					label: messages.dialogCancel,
+					onClick: handleClose
+				},
+				{
+					label: messages.dialogAction,
+					id: "updateConfiguration",
+					variant: "outline",
+					onClick: handleUpdate,
+					isDisabled: isLoading
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
sm
title
en.environments.labels.deleteEnvironment
linearProgressIndicator
isDeleting
actions
[
+				{
+					label: en.common.buttons.cancel,
+					onClick: handleClose
+				},
+				{
+					label: en.common.buttons.delete,
+					id: "deleteButtonTest",
+					variant: "outline",
+					onClick: handleDelete,
+					isDisabled: !confirmDelete || isDeleting
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
sm
title
en.environments.labels.deleteEnvironment
actions
[
+				{
+					variant: "outline",
+					label: en.common.buttons.close,
+					onClick: handleClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
lg
title
dialogState.type === "create"
+					? en.environments.labels.createEnvironment
+					: en.environments.labels.editEnvironment
actions
[
+				{
+					label: en.common.buttons.cancel,
+					onClick: handleClose
+				},
+				{
+					label: dialogState.type === "create" ? en.environments.button.create : en.common.buttons.save,
+					variant: "call-to-action",
+					onClick: handleCreateOrEdit,
+					isDisabled:
+						isDuplicate || isLoading || hasError || hasDescError || (dialogState.type === "create" ? false : !isEdited)
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
title
environmentsStr.labels.ASEnvironment
linearProgressIndicator
isUpdating
actions
[
+				{
+					label: en.common.buttons.cancel,
+					onClick: handleCloseDialog
+				},
+				{
+					label: en.common.buttons.save,
+					id: "deleteButton",
+					variant: "call-to-action",
+					onClick: handleUpdateEnvironment,
+					isDisabled: isError || isUpdating
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
md
title
messages.menuLabel
linearProgressIndicator
isLoading
actions
[
+				{
+					label: messages.dialogCancel,
+					onClick: handleClose,
+					dataQa: "cancelConfigurationTemplatesDialog"
+				},
+				{
+					label: messages.dialogAction,
+					id: "updateConfiguration",
+					variant: "call-to-action",
+					onClick: handleUpdate,
+					dataQa: "applyConfigurationTemplatesDialog",
+					isDisabled: isLoading
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
title
dialogState.type === "create" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG
actions
[
+				{
+					label: userGroups.ugDialog.cancel,
+					variant: "text",
+					onClick: handleClose,
+					dataQa: "ugDialogCancelQa"
+				},
+				{
+					label: dialogState.type === "create" ? userGroups.ugDialog.create : userGroups.ugDialog.save,
+					variant: "call-to-action",
+					onClick: handleCreateOrEdit,
+					isDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,
+					dataQa: "ugDialogSaveQa"
+				}
+			]
maxWidth
"xl"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
md
title
userGroups.ugDeleteDialog.deleteUG
linearProgressIndicator
isDeleting
actions
[
+				{
+					label: userGroups.ugDeleteDialog.cancel,
+					onClick: handleClose,
+					dataQa: "ugDialogCancelQa"
+				},
+				{
+					label: userGroups.ugDeleteDialog.delete,
+					id: "deleteButtonTest",
+					variant: "call-to-action",
+					onClick: handleDelete,
+					isDisabled: isError || isDeleting,
+					dataQa: "ugDialogDeleteQa"
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
sm
title
en.accountSettings.enableSsoConfig
actions
[
+					{
+						label: en.accountSettings["cancel"],
+						onClick: cancelEnableSso
+					},
+					{
+						label: en.accountSettings.activate,
+						variant: "outline",
+						onClick: enableSsoConfiguration
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
xl
title
en.accountSettings.configureSsoSettings
actions
[
+					{
+						label: en.accountSettings["cancel"],
+						onClick: cancelConfigureSettings
+					},
+					{
+						label: en.accountSettings.save,
+						variant: "outline",
+						onClick: saveStagedSsoConfiguration,
+						isDisabled: !canSaveSettings
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
sm
title
en.accountSettings[cannotTestSso ? "testSsoConfigError" : "testSsoConfig"]
actions
[
+					{
+						label: en.accountSettings[cannotTestSso ? "close" : "cancel"],
+						onClick: cancelSsoTest
+					},
+					{
+						label: en.accountSettings.test,
+						variant: "outline",
+						onClick: testSsoConfiguration,
+						isDisabled: cannotTestSso
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
sm
title
en.accountSettings.setUpSso
actions
[
+					{
+						label: en.accountSettings.cancel,
+						onClick: cancelSsoSetup
+					},
+					{
+						label: en.accountSettings.sendRequest,
+						variant: "outline",
+						onClick: sendSsoSetupRequest,
+						isDisabled: !canSendRequest || submittingTicket,
+						dataQa: "sendRequestButton"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
md
title
title
actions
[
+				{
+					label: cancelButtonLabel || userGroupManagement.cancel,
+					onClick: cancelHandler,
+					dataQa: "cancelNotificationHandlerQa"
+				},
+				{
+					label: actionButtonLabel,
+					id: "notificationModalActionButton",
+					variant: "outline",
+					onClick: actionHandler,
+					dataQa: "notificationModalActionButton"
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDialogOpen
maxWidth
md
title
userGroupManagement.removeClaimMapping
actions
[
+				{
+					label: userGroupManagement.cancel,
+					onClick: () => setIsClaimMappingRemoveDialogOpen(false),
+					dataQa: "cancelClaimMappingQa"
+				},
+				{
+					label: userGroupManagement.remove,
+					id: "deleteClaimMappingId",
+					variant: "call-to-action",
+					onClick: deleteClaimMapping,
+					dataQa: "deleteClaimMappingQa"
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
confirmDialogOpen || errorDialogOpen
maxWidth
sm
title
confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error
linearProgressIndicator
submittingTicket
actions
[
+					{
+						label: supportPage.dialog.close,
+						onClick: handleClose,
+						dataQa: "supportTicketModelOKButton",
+						variant: "outline"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isRequestLimitChangeDialogOpen
title
en.overview.eventPortalSection.requestLimitChangeDialogTitle
actions
[
+						{
+							label: en.overview.eventPortalSection.close,
+							dataQa: "requestLimitChangeCloseAction",
+							onClick: onCloseRequestLimitChange
+						},
+						{
+							label: en.overview.eventPortalSection.sendRequest,
+							dataQa: "requestLimitChangeSendRequestAction",
+							onClick: onRequestLimitChange,
+							variant: "outline",
+							isDisabled: !limitRequestNumber
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isRequestUpgradeDialogOpen
title
en.overview.banner.dialogTitle
maxWidth
lg
actions
[
+					{
+						label: en.overview.banner.cancel,
+						dataQa: "requestUpgradeCloseAction",
+						onClick: onCloseRequestUpgradeDialog
+					},
+					{
+						label: en.overview.banner.sendRequest,
+						dataQa: "requestUpgradeSendRequestAction",
+						onClick: RequestUpgradeHandler,
+						variant: "outline",
+						isDisabled:
+							(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||
+							(!!contactEmail && !isValidEmail(contactEmail))
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isDeleteAccountDialogOpen
title
en.overview.advancedSettingsSection.deleteAccountQuestion
actions
[
+					{
+						label: en.overview.advancedSettingsSection.cancel,
+						dataQa: "cancelDeleteAccountButton",
+						onClick: onCloseDeleteAccountDialog
+					},
+					{
+						label: en.overview.advancedSettingsSection.delete,
+						dataQa: "confirmDeleteAccountButton",
+						onClick: deleteAccountHandler,
+						variant: "outline",
+						isDisabled: !password
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Deactivate Service Notifications
contentText
Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed.
isOpen
openConfirmationDialog
actions
[
+					{ label: "Cancel", dataQa: "cancel", onClick: () => setOpenConfirmationDialog(false), variant: "text" },
+					{
+						label: "Deactivate",
+						dataQa: "deactivate",
+						onClick: () => {
+							stopNotifications();
+							setOpenConfirmationDialog(false);
+						},
+						variant: "outline"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
environments.moveDialogLabels.title
isOpen
true
actions
[
+				{
+					label: environments.moveDialogLabels.cancel,
+					variant: "text",
+					dataQa: "move-datacenter-cancel",
+					onClick: onCancel
+				},
+				{
+					label: environments.moveDialogLabels.move,
+					variant: "call-to-action",
+					dataQa: "move-datacenter-ok",
+					onClick: handleMove,
+					isDisabled: !!errors.environment
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
downloadDialog.errorDialogOpen
title
en.privateRegions.labels.downloadFailed
actions
[{ label: "OK", onClick: handleCloseDialog }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
actions
actions
contentText
undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
open
title
en.privateRegions.labels.new
actions
[
+					{
+						label: en.common.buttons.cancel,
+						onClick: onClose
+					},
+					{
+						label: en.privateRegions.button.sendRequest,
+						onClick: onRequest,
+						variant: "call-to-action",
+						isDisabled: loading
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
state.open
title
en.tokens.text.copyToken.title
actions
[
+					{
+						label: en.common.buttons.close,
+						variant: isCopied ? "outline" : "call-to-action",
+						onClick: handleCancel,
+						isDisabled: !isCopied,
+						dataQa: "closeTokenButton"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
!!errorMessage
title
en.tokens.text.genericError.title
actions
[
+				{
+					label: en.common.buttons.close,
+					onClick: handleClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
state.open
title
en.tokens.text.regenerateToken.title
actions
[
+					{
+						label: en.common.buttons.cancel,
+						onClick: handleCancel
+					},
+					{
+						label: "Regenerate",
+						onClick: handleRegenerate,
+						variant: "outline",
+						dataQa: "confirmRegenerateTokenButton"
+					}
+				]
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
state.open
title
en.tokens.text.deleteToken.title
actions
[
+					{
+						label: en.common.buttons.cancel,
+						onClick: handleCancel
+					},
+					{
+						label: "Delete",
+						onClick: handleDelete,
+						variant: "outline",
+						dataQa: "confirmDeleteTokenButton"
+					}
+				]
linearProgressIndicator
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tracingProfile.title.details
isOpen
isOpen
actions
[
+				{
+					label: tracingProfile.button.close,
+					variant: "outline",
+					onClick: onClose
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
tracingSynchDialog.title
contentText
tracingSynchDialog.contentText
isOpen
isOpen
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					onClick: close
+				}
+			]
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit
contentText
tracingProfile.contentText
isOpen
isOpen
linearProgressIndicator
modifyingTracingProfile
actions
actions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/ErrorDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
An error occurred
isOpen
isOpen
maxWidth
md
actions
[
+				{
+					label: "Close",
+					variant: "outline",
+					dataQa: "close-error-dialog",
+					onClick: handleClose,
+				}
+			]
data-qa
error-dialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+								{
+									label: "Cancel",
+									onClick: () => setOpenDialog(false)
+								},
+								{
+									label: "Proceed",
+									variant: "call-to-action",
+									onClick: forceUpdateAllMonitors,
+									dataQa: "proceedUpdateAllMonitorsButton"
+								}
+							]
isOpen
openDialog
title
Update Monitoring Notification
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+							{
+								label: "OK",
+								onClick: () => updateShowDetails(false)
+							}
+						]
isOpen
detailsState.showDetails
title
`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "OK",
+						onClick: () => setShowUpdateDefaultsError(false)
+					}
+				]
isOpen
showUpdateDefaultsError
title
`Update Monitoring Defaults Failed`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "Proceed",
+						variant: "call-to-action",
+						onClick: () => {
+							handleSubmit(onSubmit)();
+							setOpenConfirmationDialog(false);
+						},
+						dataQa: "confirmationDialogProceedButton"
+					},
+					{
+						label: "Cancel",
+						onClick: () => setOpenConfirmationDialog(false)
+					}
+				]
isOpen
openConfirmationDialog
title
Update Services Monitoring Configurations
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "OK",
+						onClick: () => setOpenDatadogProxyDialog(false)
+					}
+				]
isOpen
openDatadogProxyDialog
title
"Monitoring Proxy Endpoints"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "Refresh",
+						onClick: async () => {
+							const updatedService = await refreshMonitoringAgentStatus(agentStatusDialogService);
+
+							setAgentStatusDialogService(updatedService);
+						},
+						isDisabled:
+							servicesStates?.[agentStatusDialogService?.infrastructureId ?? ""]?.agentVersionRequestStatus ===
+							RequestStatus.IN_PROGRESS
+					},
+					{
+						label: "OK",
+						onClick: () => {
+							setOpenAgentStatusDialog(false);
+
+							// Errors and warnings are part of the fetched status and should persist
+							// until a refresh. They are not reset on dialog close.
+						},
+						variant: "outline",
+						dataQa: "statusDialogOkButton"
+					}
+				]
isOpen
openAgentStatusDialog
title
`Monitoring Agent Status`
linearProgressIndicator
servicesStates?.[agentStatusDialogService?.infrastructureId ?? ""]?.agentVersionRequestStatus ===
+					RequestStatus.IN_PROGRESS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "OK",
+						onClick: () => updateShowDetails(false)
+					}
+				]
isOpen
detailsState.showDetails
title
`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "Cancel",
+						onClick: () => setShowUpdateMonitoringNotificationConfirmation(false)
+					},
+					{
+						label: "Proceed",
+						variant: "call-to-action",
+						dataQa: "updateMonitoringNotificationConfirmationProceedButton",
+						onClick: () => {
+							handleSubmit(updateMonitoringNotification)();
+							setShowUpdateMonitoringNotificationConfirmation(false);
+						}
+					}
+				]
isOpen
showUpdateMonitoringNotificationConfirmation
title
`Update Monitoring Notification`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						label: "OK",
+						onClick: () => setShowInvalidHandlesDialog(false),
+						dataQa: "InvalidHandlesDialogButton"
+					}
+				]
isOpen
showInvalidHandlesDialog
title
`Failed: Invalid Email Handles`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
cleanModal
title
WARNING
contentText
Are you sure you want to perform database cleanup?
actions
[
+					{ label: "Cancel", variant: "outline", onClick: () => setCleanModal(false) },
+					{ label: "Continue", variant: "call-to-action", onClick: () => handleJobClean() }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
syncModal
title
WARNING
contentText
Heavy database operation will be executed. Are you sure you want to proceed?
actions
[
+					{ label: "Cancel", variant: "outline", onClick: () => setSyncModal(false) },
+					{ label: "Continue", variant: "call-to-action", onClick: () => handleEntitySync() }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
contentLayout
contents
maxWidth
md
isOpen
isOpen
actions
[
+				{
+					label: "Cancel",
+					onClick: () => {
+						handleModal();
+						reset();
+						setError("");
+					}
+				},
+				{
+					label: "Save",
+					isDisabled: false,
+					variant: "call-to-action",
+					onClick: handleSubmit(onSubmit)
+				}
+			]
title
Update Upgrade Plan
contentText
Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
contentLayout
contents
maxWidth
md
isOpen
isOpen
actions
[
+				{
+					label: "Cancel",
+					dataQa: "cancel-plan",
+					onClick: () => {
+						handleModal();
+						reset();
+						setError("");
+					}
+				},
+				{
+					label: "Create Plan",
+					dataQa: "create-plan",
+					variant: "call-to-action",
+					onClick: handleSubmit(onSubmit)
+				}
+			]
title
Create Plan
contentText
Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
contentLayout
contents
maxWidth
md
isOpen
open
actions
[
+				{
+					label: "Cancel",
+					dataQa: "cancel-manage-plan",
+					onClick: handleCancel
+				},
+				{
+					label: "Apply",
+					dataQa: "apply-manage-plan",
+					variant: "call-to-action",
+					onClick: handleApply
+				}
+			]
title
 handleCancel()}>
+					
+					Manage Broker Upgrade Scope
+				
contentText
The filter will be applied to the upgrade run, determining the brokers included in that specific run.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Delete Plan
contentText
Deleting this plan will delete any runs, groups, and associated data using this plan. They will be permanently removed from the system.
actions
[
+					{ label: "Cancel", variant: "text", onClick: () => handleModal() },
+					{ label: "Delete", variant: "outline", onClick: () => handleDelete(plan.id) }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
maxWidth
lg
title
Post-Upgrade Check Results
linearProgressIndicator
loading
actions
[{ label: "Close", variant: "outline", onClick: onClose }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
maxWidth
lg
title
Upgrade Logs
linearProgressIndicator
inProgress
actions
[{ label: "Close", variant: "outline", onClick: onClose }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
true
maxWidth
lg
title
Pre-Upgrade Check Results
actions
[{ label: "Close", variant: "outline", onClick: onClose }]
linearProgressIndicator
loading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
`${actionType === "pause" ? "Pause" : "Cancel"} Upgrade Run`
contentText
`Are you sure you want to ${actionType} this upgrade run?`
actions
[
+					{ label: "Cancel", variant: "text", onClick: handleModal },
+					{ label: actionType === "pause" ? "Pause Run" : "Cancel Run", variant: "outline", onClick: handleAction }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
actions
[
+				{
+					label: "Cancel",
+					dataQa: "cancel-run",
+					onClick: () => {
+						handleModal();
+						reset();
+						setError("");
+					}
+				},
+				{
+					label: "Schedule Run",
+					dataQa: "create-run",
+					variant: "call-to-action",
+					onClick: handleSubmit(onSubmit)
+				}
+			]
title
Schedule Upgrade Run
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
Delete Upgrade Run
contentText
Are you sure you want to delete this upgrade run? This action cannot be undone.
actions
[
+					{ label: "Cancel", variant: "text", onClick: onClose, dataQa: "delete-run-cancel" },
+					{ label: "Delete Run", variant: "outline", onClick: handleDelete, dataQa: "delete-run-confirm" }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+				{
+					label: "Cancel",
+					variant: "outline",
+					onClick: onCancel,
+					isDisabled: isLoading
+				},
+				{
+					label: actionLabel,
+					variant: actionVariant,
+					onClick: onConfirm,
+					isDisabled: isLoading
+				}
+			]
isOpen
isOpen
title
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
lg
actions
[
+				{
+					label: "OK",
+					variant: "outline",
+					dataQa: "okAction",
+					onClick: () => setOpen({ open: false, servicePackage: undefined })
+				}
+			]
isOpen
open
title
Service Package Details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
lg
actions
actions
isOpen
open
title
Edit Service Package
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
lg
actions
[
+				{
+					label: "Cancel",
+					dataQa: "cancel",
+					onClick: onClose
+				},
+				{
+					label: "Create",
+					dataQa: "create",
+					variant: "call-to-action",
+					isDisabled: loading,
+					onClick: handleSubmit(onCreate)
+				}
+			]
isOpen
open
title
Create Service Package
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions
isOpen
state.open
title
Delete Service Package
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
lg
actions
[
+				{
+					label: "Cancel",
+					dataQa: "cancel",
+					onClick: onClose
+				},
+				{
+					label: "Release",
+					dataQa: "release",
+					variant: "call-to-action",
+					isDisabled: loading || !servicePackage?.metadata?.releaseNotes,
+					onClick: handleRelease
+				}
+			]
isOpen
open
title
Release New Service Package
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
maxWidth
lg
title
createBizOrganization.reviewAndSave
actions
[
+				{
+					label: createBizOrganization.cancel,
+					onClick: handleClose
+				},
+				{
+					label: createBizOrganization.save,
+					id: "confirmSave",
+					variant: "call-to-action",
+					onClick: handleSave,
+					isDisabled: dialogState.saving
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
i18nStrings.addProductsLabel
isOpen
dialogOpen
actions
[
+				{
+					label: i18nStrings.cancelLabel,
+					onClick: handleCancel,
+					variant: "text",
+					dataQa: "productSubscriptionDialogCancel"
+				},
+				{
+					label: i18nStrings.addProductsLabel,
+					onClick: handleAddProducts,
+					variant: "outline",
+					dataQa: "productSubscriptionDialogAddProds"
+				}
+			]
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogOpen
title
getDialogTitle()
actions
[
+					{
+						label: integrationStrings.buttons.cancel,
+						variant: "text",
+						onClick: handleCancel,
+						dataQa: "cancel-button"
+					},
+					{
+						label: integrationStrings.buttons.confirm,
+						variant: "call-to-action",
+						onClick: () => {
+							handleConfirm();
+						},
+						dataQa: "confirm-button"
+					}
+				]
data-qa
confirmation-dialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
[
+					{
+						variant: "outline",
+						label: "OK",
+						onClick: () => setDetailsDialog({ isOpen: false, org: {} } as DetailsDialog)
+					}
+				]
isOpen
detailsDialog.isOpen
title
Organization Details
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
dialogState.open
title
Manage Connector Flow Version
actions
[
+				{
+					label: "Cancel",
+					variant: "text",
+					onClick: () => onDialogClose()
+				},
+				{
+					label: "Update",
+					variant: "call-to-action",
+					dataQa: "upgradeConfirmation",
+					onClick: handleConnectorUpgrade,
+					isDisabled: updatedVersion === connectorTypeId
+				}
+			]
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
!!errorDetails
actions
[
+							{ label: "OK", variant: "outline", onClick: () => setErrorDetails(""), dataQa: `json-${errorDetails}` }
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteConfirmation.isOpen
title
Delete Connector
actions
[
+						{
+							label: "Cancel",
+							variant: "text",
+							onClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })
+						},
+						{ label: "Delete", variant: "outline", dataQa: "deleteConfirmation", onClick: handleConnectorDelete }
+					]
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
isOpen
title
organizationDetails.manageNotificationContactDialog.title
actions
dialogActions
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
deleteDialog.title
contentText
!deleteDialog?.error ? deleteDialog.contentText : ""
isOpen
deleteDialog.isOpen
linearProgressIndicator
deleteDialog.linearProgressIndicator
actions
deleteDialog.actions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Import From Datacenter
actions
actions
linearProgressIndicator
isLoading
isOpen
isOpen
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Delete
isOpen
deleteConfirmation.isOpen
linearProgressIndicator
deletingBrokerCompatibility || deletingHelmChartCompatibility
actions
[
+					{
+						label: "Cancel",
+						onClick: () => setDeleteConfirmation({ isOpen: false, type: CompatibilityType.None, row: {} }),
+						variant: "text",
+						dataQa: "cancelButton"
+					},
+					{
+						label: modifyError.error ? "Ok" : "Delete",
+						onClick: () => handleDelete(deleteConfirmation.row, deleteConfirmation.type),
+						variant: "call-to-action",
+						dataQa: "deleteButton"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
compatibilityType == CompatibilityType.Broker ? "Add Broker Compatibility" : "Add Collector Compatibility"
isOpen
isOpen
actions
[
+				{
+					label: "Cancel",
+					variant: "text",
+					dataQa: "cancel",
+					onClick: () => {
+						onClose();
+						setModifyError({ error: false, message: "", id: "" });
+					}
+				},
+				{
+					label: "Add",
+					variant: "call-to-action",
+					type: "submit",
+					dataQa: "addButton",
+					onClick:
+						compatibilityType == CompatibilityType.Broker
+							? handleSubmit((data: BrokerCompatibility) => handleModifyCollector(data))
+							: handleSubmit((data: CollectorCompatibility) => handleAddCollectorCompatibility(data))
+				}
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
!!errorDetails
actions
[
+							{ label: "OK", variant: "outline", onClick: () => setErrorDetails(""), dataQa: `json-${errorDetails}` }
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOpen
deleteConfirmation.isOpen
title
Delete Collector
actions
[
+						{
+							label: "Cancel",
+							variant: "text",
+							onClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })
+						},
+						{ label: "Delete", variant: "call-to-action", dataQa: "deleteConfirmation", onClick: handleCollectorDelete }
+					]
maxWidth
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Modify collector
isOpen
isOpen
linearProgressIndicator
isPerformingRequest
contentText
"Infrastructure ID: " + collector?.infrastructureId
actions
[
+				{
+					label: "Close",
+					variant: "text",
+					dataQa: "close",
+					onClick: () => {
+						onCloseHandler()
+						dispatch(openUpgradeDialog({ isOpen: false }));
+					}
+				},
+				{
+					label: "Submit",
+					variant: "outline",
+					isDisabled: isPerformingRequest || isEdited === false,
+					dataQa: "submit",
+					onClick: () =>
+						handleModifyCollector(
+							collector?.serviceId as string,
+							collector?.infrastructureId as string,
+							imageTag,
+							helmChartVersion,
+							action
+						)
+				}
+			]
+
+ +
+
+ +
+
+
+ SolaceTextField + 197 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui71
intgmaas-ui35
mcmaas-ui21
saasmaas-ui34
maas-ops-reactmaas-ops-ui36
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name197
value188
onChange156
dataQa147
hasErrors113
helperText111
label99
readOnly71
required64
onBlur52
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (197)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchInput
dataQa
searchInput
placeholder
Filter by Name
value
searchText
onChange
handleSearchTextChange
width
50%
endAdornment
[
+												searchText ? (
+													
+														
+													
+												) : null,
+												
+											]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleNameChange
onBlur
handleNameOnBlur
id
eventMesh[name]
name
eventMesh[name]
dataQa
eventMesh[name]
label
LABEL_NAME
value
memContent.name
required
mode === "create" || mode === "edit"
readOnly
mode === "view"
hasErrors
!!getNameErrorMessage
helperText
getNameErrorMessage
disabled
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][schemaRegistry][registryUrl]
disabled
isDisabled
hasErrors
!!error
helperText
!readOnly ? error?.message ?? renderKafkaAuthHelperText("registryUrl") : ""
id
schemaRegistry[registryUrl]
label
Registry URL
name
name
onBlur
onBlur
onChange
(e) => {
+									onChange(e.value);
+								}
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][management][sempUsername]
disabled
loading
hasErrors
!!error
helperText
error?.message ?? ""
id
eventBroker[solace][management][sempUsername]
label
eventBrokerFormFieldLabels.sempUsername
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][management][sempUrl]
disabled
loading
hasErrors
!!error
helperText
error?.message ?? ""
id
eventBroker[solace][management][sempUrl]
label
eventBrokerFormFieldLabels.sempUrl
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][messaging][host]
disabled
loading
hasErrors
!!error
helperText
!readOnly ? error?.message ?? "e.g. ########.messaging.solace.cloud or 123.89.40.72" : ""
id
eventBroker[solace][messaging][host]
label
eventBrokerFormFieldLabels.host
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
disabled
disabled
hasErrors
!!error
helperText
!readOnly ? error?.message ?? helperText : ""
id
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
inlineLabel
true
label
label
name
name
onBlur
() => {
+												onBlur();
+												setValue(name, value.trim());
+											}
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
!readOnly && isRequired
value
value
width
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][authentication][${authKey}][${inputField}]`
disabled
disabled
hasErrors
!!error
helperText
!readOnly ? error?.message ?? helperText : ""
id
`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`
label
eventBrokerFormFieldLabels[inputField]
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
isRequired
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][authentication][bootstrapServers]
hasErrors
!!error
helperText
!readOnly ? error?.message ?? "Use a comma (,) to separate the messaging services in the Kafka cluster." : ""
id
eventBroker[kafka][authentication][bootstrapServers]
label
eventBrokerFormFieldLabels.bootstrapServers
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
disabled
loading || kafkaDelimiterIsNotSet
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
!!error
helperText
error?.message ?? ""
label
eventBrokerFormFieldLabels.port
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
selectedMode === "view"
type
number
value
value
width
250px
dataQa
`eventBroker[solace][messaging][protocol][${index}][port]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`messagingServiceDetails[${attribute}]`
name
`messagingServiceDetails[${attribute}]`
dataQa
`messagingServiceDetails[${attribute}]`
value
attributeValue
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[name]
disabled
isLoading
hasErrors
!!error
helperText
error?.message ?? ""
label
eventBrokerFormFieldLabels.name
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly || !!content.solaceCloudMessagingServiceId
required
!readOnly
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][messageVpn]
disabled
isLoading
hasErrors
!!error
helperText
error?.message ?? ""
id
eventBroker[solace][messageVpn]
label
eventBrokerFormFieldLabels.messageVPN
name
name
onBlur
onBlur
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"authenticationB"
dataQa
"authenticationB"
value
getCredentialsFieldValue(credentials, "inputB")
type
inputBType
disabled
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!nameErrorMsg || !!attributeErrorMsg
helperText
nameErrorMsg || null
onChange
(e) => {
+													onChange(e.value);
+													handleNameUpdate(e.value);
+												}
onBlur
() => {
+													onBlur();
+													onChange(value.trim());
+													handleNameUpdate(value.trim());
+												}
dataQa
`${caKey}-input`
dataTags
`hasFocus=${customAttribute.hasFocus}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!nameErrorMsg || !!attributeErrorMsg
helperText
nameErrorMsg || null
onChange
(e) => {
+												onChange(e.value);
+												handleNameUpdate(e.value);
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleNameUpdate(value.trim());
+											}
dataQa
`${caKey}-input`
dataTags
`hasFocus=${customAttribute.hasFocus}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || null
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
maxLength
251
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? getVersionErrorMessage(value, error) : ""
onChange
(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())
onBlur
() => {
+										onBlur();
+										onUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);
+									}
dataQa
`${versionObjectName}[version]`
autoFocus
mode === "edit"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
() => {
+								onBlur();
+								onUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());
+							}
dataQa
`${versionObjectName}[displayName]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? getVersionErrorMessage(value, error) : ""
onChange
(e) => {
+										const newValue = e.value.trim();
+										const validVersion = semverValid(newValue) ?? newValue;
+
+										onChange(validVersion);
+										checkVersionAndSetWarning(validVersion);
+									}
dataQa
"DuplicateEntityVersion[version]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
required
true
label
Name
value
variableName
onChange
handleNameChange
onBlur
() => handleNameValidate()
hasErrors
!!nameErrorMsg
helperText
nameErrorMsg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
textFieldName ?? "entityNameTextField"
dataQa
dataQa ?? ""
label
label
value
entityName
required
true
readOnly
readOnly
maxLength
maxLength + 1
hasErrors
!!validationErrorMsg
helperText
validationErrorMsg
onChange
handleEntityNameChange
onBlur
handleOnBlur
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
createInlineApplicationDomain
dataQa
createInlineApplicationDomain
label
New Application Domain Name
value
name
required
true
hasErrors
!!validationErrorMsg || !!backendErrorMsg
helperText
validationErrorMsg || backendErrorMsg || SHARE_WARNING
onChange
handleEntityNameChange
onBlur
handleOnBlur
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
textFieldName ?? "entityVersionTextField"
dataQa
dataQa ?? ""
label
Version
value
version
required
true
hasErrors
!!validationErrorMsg
helperText
validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText
onChange
handleVersionChange
onBlur
handleOnBlur
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
createInlineApplication
dataQa
createInlineApplication
label
New Application Name
value
name
required
true
hasErrors
!!validationErrorMsg || !!backendErrorMsg
helperText
validationErrorMsg || backendErrorMsg || ""
onChange
handleEntityNameChange
onBlur
handleOnBlur
disabled
!domainId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleNameChange
onBlur
handleNameOnBlur
id
runtimeAgent[name]
name
runtimeAgent[name]
dataQa
runtimeAgent[name]
value
eventManagementAgent.name
hasErrors
!!getNameErrorMessage
helperText
getNameErrorMessage
disabled
loading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
runtimeAgent[id]
name
runtimeAgent[id]
dataQa
runtimeAgent[id]
value
agentId
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchInput
dataQa
searchInput
placeholder
Search
value
searchText
onChange
handleSearchTextChange
width
100%
endAdornment
[
+						searchText ? (
+							
+								
+							
+						) : null,
+						
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"Event Broker"
readOnly
true
inlineLabel
true
label
"Event Broker"
value
scan.messagingServiceName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
topicAddress
label
Topic Address
value
selectedAudits[0].identifier
required
true
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
dataQa
`detailsName`
maxLength
256
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
clientProfileName
hasErrors
!!error
helperText
error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText
onChange
(e) => {
+								setClientProfileName(e.value);
+								onChange(e.value);
+							}
dataQa
`clientProfileName`
maxLength
33
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
email-input
name
email-input
type
email
label
en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress
helperText
!isValid ? (
+													en.eventPortalResources.labels.startJourney.inviteUsers.helperTextError
+												) : (
+													
+														{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}
+														
+															{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}
+														
+													
+												)
hasErrors
!isValid
onChange
handleEmailInput
value
email
fullWidth
true
onBlur
validateEmail
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
onChange
(e) => {
+										onChange(e.value);
+										updateConfiguration();
+									}
onBlur
() => {
+										onBlur();
+										onChange(value?.trim());
+										updateConfiguration();
+									}
dataQa
`${configurationName}-postRequestTarget`
hasErrors
!!error
helperText
error?.message || ""
maxLength
2001
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.configuration.restDeliveryPoint.requestHeaderName
name
name
value
value || ""
required
true
onChange
(e) => {
+									onChange(e.value);
+								}
onBlur
() => {
+									onBlur();
+									value && onChange(value.trim());
+								}
dataQa
configurationNameRequestHeaderName
hasErrors
!!error
helperText
error ? error.message : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription
onChange
(e) => {
+												onChange(e.value);
+												handleUpdateRestDeliveryPointName(value);
+											}
onBlur
() => {
+												onBlur();
+												handleUpdateRestDeliveryPointName(value ? value.trim() : "");
+											}
dataQa
`restDeliveryPointName-editor`
readOnly
!getValues(`${formName}.configurationTypeId`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
FormCustomizedClientProfileName
id
name
name
name
dataQa
name
value
value || ""
label
messagesConfiguration.solaceClientProfileName.clientProfileName
onChange
(e) => {
+												onChange(e.value);
+
+												if (e.value) {
+													setObservedConfiguration(e.value);
+												}
+											}
onBlur
() => {
+												onChange(value.trim());
+												onBlur();
+											}
helperText
error ? error.message : ""
hasErrors
!!error
required
true
maxLength
33
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsg
helperText
errorMsg || null
onChange
(e) => {
+								onChange(e.value);
+								handleFilenameUpdate(e.value);
+							}
onBlur
() => {
+								onBlur();
+								onChange(value.trim());
+								handleFilenameUpdate(value.trim());
+							}
dataQa
`filenameInput`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"enumeration[name]"
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || null
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+													setIsDirty(true);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
maxLength
251
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? getVersionErrorMessage(value, error) : ""
onKeyDown
blockEnterKey
onChange
(e) => {
+												setIsDirty(true);
+
+												const newValue = e.value.trim();
+
+												if (semverValid(newValue) !== null) {
+													checkIfVersionStillLatestAfterUpdate(newValue, versionId);
+												}
+
+												onChange(semverValid(newValue) ?? newValue);
+											}
dataQa
`${versionObjectName}[version]`
autoFocus
isDuplicateVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => {
+											setIsDirty(true);
+											onChange(e.value);
+										}
dataQa
`${versionObjectName}[displayName]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventSearchInput
dataQa
eventSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+								internalSearchText ? (
+									 setInternalSearchText("")}>
+										
+									
+								) : null,
+								
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
nodeNameTextField
dataQa
appDomain-graph-object-name-field
value
nodeName
onChange
handleChange
onKeyDown
handleKeyDown
onFocus
(e) => {
+						setTimeout(() => e.target.select(), 100); // Delay to ensure select() works
+					}
hasErrors
!!errorMessage
helperText
errorMessage
autoFocus
true
width
`${nameEditorWidth}px`
maxLength
maxNameLength + 1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventApiSearchInput
dataQa
eventApiSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								 setInternalSearchText("")}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${level.name}-${index}`
name
name
hasErrors
!!error
onBlur
() => {
+										onBlur();
+									}
helperText
error && "Invalid Format"
value
value || ""
onChange
(e) => onChange(e.value.trim())
dataQa
name
fullWidth
true
minWidth
622px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
dataQa
"eventApi[name]"
autoFocus
true
width
"526px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`maxTTLTextField-${index}`
name
name
value
value || ""
onChange
(e) => onChange(e.value.trim())
dataQa
name
hasErrors
!!error
helperText
error ? error.message : null
readOnly
mode === "view"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`maxMsgSpoolUsageTextField-${index}`
name
name
value
value || ""
onChange
(e) => onChange(e.value.trim())
dataQa
name
hasErrors
!!error
helperText
error ? error.message : null
readOnly
mode === "view"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`planNameTextField-${index}`
dataQa
name
name
name
value
value || ""
onChange
(e) => onChange(e.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"eventApiProduct[name]"
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"schema[name]"
autoFocus
true
maxLength
2049
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
autoFocus
value === ""
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
onBlur
dataQa
`applicationVersion[consumers].${index}.name`
maxLength
256
readOnly
!isGlobal
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"applicationDomain[name]"
autoFocus
true
maxLength
256
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
() => {
+									onBlur();
+									onChange(value.trim());
+								}
dataQa
topicAddressResourcesDisplayName
required
true
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
() => {
+									onBlur();
+									onChange(value.trim());
+								}
dataQa
topicAddressResourcesLink
required
true
type
url
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"event[name]"
autoFocus
true
maxLength
2049
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
schemaSearchInput
dataQa
schemaSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								
+									
+								
+							) : null,
+							
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchInput
dataQa
searchInput
placeholder
Search
value
searchText
onChange
handleSearchTextChange
width
100%
endAdornment
[
+						searchText ? (
+							
+								
+							
+						) : null,
+						
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Name"
required
true
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"schema[name]"
autoFocus
true
maxLength
2049
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
getVersionErrorMessage(value, error)
onChange
(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())
dataQa
"schemaVersion[version]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Name"
required
true
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"event[name]"
autoFocus
true
maxLength
2049
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
getVersionErrorMessage(value, error)
onChange
(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())
dataQa
"eventVersion[version]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventSearchInput
dataQa
eventSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								 setInternalSearchText("")}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => onChange(e.value)
dataQa
"application[name]"
autoFocus
true
maxLength
256
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationSearchInput
dataQa
applicationSearchInput
value
internalSearchText
onChange
handleSearchTextChange
fullWidth
true
endAdornment
[
+							internalSearchText ? (
+								 setInternalSearchText("")}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
en.common.labels.name
autoFocus
value === ""
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => onChange(e.value)
onBlur
onBlur
dataQa
`consumerName`
maxLength
256
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"configurationInputA"
dataQa
"configurationInputA"
label
messages.credentials[configuration.typeId].inputA
value
inputA ?? ""
required
isEditing
disabled
isLoading
hasErrors
!!inputAValidationError
helperText
inputAValidationError
onChange
onChangeInputA
readOnly
!isEditing
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"configurationInputB"
dataQa
"configurationInputB"
label
messages.credentials[configuration.typeId].inputB
value
inputB || ""
type
inputBType
required
isEditing
disabled
isLoading || (configuration.inputB.type === "password" && !isEditing)
hasErrors
!!inputBValidationError
helperText
inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext
onChange
onChangeInputB
readOnly
configuration.inputB.type !== "password" && !isEditing
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name ?? "emptyName"
label
label ?? "Name"
value
name
onChange
(e) => {
+				const newName = e.value ?? "";
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newName));
+				}
+
+				setName(newName);
+			}
onBlur
() => {
+				const newName = name.trim();
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newName));
+				}
+
+				setName(newName);
+			}
hasErrors
!!errorMsg
helperText
errorMsg
dataQa
"name"
maxLength
256
required
true
placeholder
placeholder
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
topic ?? "emptyTopic"
label
label
value
topic
onChange
(e) => {
+				const newTopic = e.value ?? "";
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newTopic));
+				}
+
+				setTopic(newTopic);
+			}
onBlur
() => {
+				const newTopic = topic.trim();
+
+				if (!shouldValidate) {
+					setErrorMsg(validator(newTopic));
+				}
+
+				setTopic(newTopic);
+			}
hasErrors
!!errorMsg
helperText
errorMsg
dataQa
label
maxLength
maxLength
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
name
host
value
solaceConnectionValues.authentication.host
label
en.connectors.labels.host
dataQa
connectionDetailsHostTextField
onBlur
() => {
+										if (isEmpty(solaceConnectionValues.authentication.host)) {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												host: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)
+											});
+										} else {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												host: ""
+											});
+										}
+									}
onChange
({ value: host }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											authentication: {
+												...solaceConnectionValues.authentication,
+												host: host
+											}
+										});
+									}
hasErrors
validationEnabled && !!solaceValidationErrors.host
helperText
validationEnabled && solaceValidationErrors.host
+											? solaceValidationErrors.host
+											: en.connectors.helperText.host
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
msgVpn
value
solaceConnectionValues.authentication.messageVpn
label
en.connectors.labels.msgVpn
dataQa
msgVpnTextField
onChange
({ value: msgVpn }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											authentication: {
+												...solaceConnectionValues.authentication,
+												messageVpn: msgVpn
+											}
+										});
+									}
onBlur
() => {
+										if (isEmpty(solaceConnectionValues.authentication.messageVpn)) {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												messageVpn: en.connectors.labels.validationErrors.missingRequiredField(
+													en.connectors.labels.msgVpn
+												)
+											});
+										} else {
+											setSolaceValidationErrors({
+												...solaceValidationErrors,
+												messageVpn: ""
+											});
+										}
+									}
required
true
hasErrors
validationEnabled && !!solaceValidationErrors.messageVpn
helperText
validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
solaceBindingDestination
onChange
({ value: destination }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											binding: {
+												...solaceConnectionValues.binding,
+												destination: destination
+											}
+										});
+									}
value
solaceConnectionValues.binding.destination
label
en.connectors.labels.bindingDestination
required
true
dataQa
solaceBindingDestinationTextField
onBlur
() => {
+										validateDestination();
+									}
hasErrors
validationEnabled && !!solaceValidationErrors.destination
helperText
solaceValidationErrors.destination && validationEnabled
+											? solaceValidationErrors.destination
+											: // flipped because solaceDirection is the opposite of the actual connector direction
+											isEqual(solaceDirection, ConnectorDirection.Source)
+											? en.connectors.helperText.destinationTarget
+											: en.connectors.helperText.destinationSource
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
constantName
label
en.connectors.labels.customConstantValue
required
true
dataQa
constant-name-textfield
maxLength
255
hasErrors
!!constantNameError
helperText
constantNameError
value
String(constantField.constantValue)
onChange
(e) => {
+							setConstantNameError("");
+							setConstantField({ ...constantField, constantValue: e.value });
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
headerName
label
en.connectors.labels.customHeaderName
required
true
dataQa
header-name-textfield
maxLength
255
hasErrors
!!headerNameError
helperText
headerNameError
value
customHeaderField.headerName
onChange
(e) => {
+						setHeaderNameError("");
+						setCustomHeaderField({ ...customHeaderField, headerName: e.value });
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
headerName
label
en.connectors.labels.customHeaderName
required
true
dataQa
header-name-textfield
maxLength
255
value
headerName
hasErrors
!!headerNameError
helperText
headerNameError
onChange
(e) => {
+						setHeaderName(e.value);
+						setHeaderNameError("");
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
constantName
label
en.connectors.labels.customConstantValue
required
true
dataQa
constant-name-textfield
maxLength
255
value
constantValue
hasErrors
!!constantNameError
helperText
constantNameError
onChange
(e) => {
+							onConstantValueChange(e);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
targetHeaderExample
value
en.connectors.targetHeaderMapping.targetHeaderExample
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
headerExpressionExample
value
en.connectors.targetHeaderMapping.headerExpressionExample
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
type
sensitiveField && !showSensitiveField ? "password" : "text"
label
props.label
name
props.name
onChange
(e) => onChangeTrigger(props, e)
value
fieldValue
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
endAdornment
endAdornment
dataQa
`${props.label}-form-textField`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslKeyStoreReadOnlyBlank
value
props.value ? "" : "-"
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
values.name
dataQa
details_name_field
onChange
({ value: name }) => setValues({ ...values, name })
label
en.connectors.labels.name
required
true
onBlur
() => {
+							if (isEmpty(values.name)) {
+								setInitialStepValidationErrors({
+									...initialStepValidationErrors,
+									name: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)
+								});
+							} else {
+								setInitialStepValidationErrors({ ...initialStepValidationErrors, name: "" });
+							}
+						}
hasErrors
validationEnabled && !!initialStepValidationErrors.name
helperText
validationEnabled ? initialStepValidationErrors.name : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
tokenUri
value
readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri
readOnly
readOnly
label
en.connectors.labels.tokenUri
dataQa
tokenUriTextField
onChange
({ value: tokenUri }) => {
+					setOauthValues({
+						...oauthValues,
+						tokenUri: tokenUri
+					});
+				}
onBlur
() => {
+					if (isEmpty(oauthValues.tokenUri)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							tokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							tokenUri: ""
+						});
+					}
+				}
hasErrors
!!solaceValidationErrors.tokenUri
helperText
!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientId
value
readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId
readOnly
readOnly
label
en.connectors.labels.clientId
dataQa
tclientIdTextField
onChange
({ value: clientId }) => {
+					setOauthValues({
+						...oauthValues,
+						clientId: clientId
+					});
+				}
onBlur
() => {
+					if (isEmpty(oauthValues.clientId)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientId: ""
+						});
+					}
+				}
hasErrors
!!solaceValidationErrors.clientId
helperText
!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientSecret
value
readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret
readOnly
readOnly
label
en.connectors.labels.clientSecret
dataQa
clientSecretTextField
onChange
({ value: clientSecret }) => {
+					setOauthValues({
+						...oauthValues,
+						clientSecret: clientSecret
+					});
+				}
onBlur
() => {
+					if (isEmpty(oauthValues.clientSecret)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientSecret: en.connectors.labels.validationErrors.missingRequiredField(
+								en.connectors.labels.clientSecret
+							)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientSecret: ""
+						});
+					}
+				}
hasErrors
!!solaceValidationErrors.clientSecret
helperText
!readOnly && validationEnabled && solaceValidationErrors.clientSecret
+						? solaceValidationErrors.clientSecret
+						: ""
type
showClientSecret ? "text" : "password"
endAdornment
[
+					 setShowClientSecret(!showClientSecret)}
+					>
+						{showClientSecret ?  : }
+					
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
scopes
value
readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes
readOnly
readOnly
label
en.connectors.labels.scopes
dataQa
scopesTextField
onChange
({ value: scopes }) => {
+								setOauthValues({
+									...oauthValues,
+									scopes: scopes
+								});
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
clientName
value
readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName
readOnly
readOnly
label
en.connectors.labels.clientName
dataQa
clientNameTextField
onChange
({ value: clientName }) => {
+								setOauthValues({
+									...oauthValues,
+									clientName: clientName
+								});
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientUsername
value
basicAuthValues.clientUsername
label
en.connectors.labels.clientUsername
dataQa
clientUsernameBasicAuthTextField
onChange
({ value: clientUsername }) => {
+					setBasicAuthValues({
+						...basicAuthValues,
+						clientUsername: clientUsername
+					});
+				}
onBlur
() => {
+					if (isEmpty(basicAuthValues.clientUsername)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							basicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(
+								en.connectors.labels.clientUsername
+							)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							basicAuthUsername: ""
+						});
+					}
+				}
hasErrors
validationEnabled && !!solaceValidationErrors.basicAuthUsername
helperText
!readOnly
+						? solaceValidationErrors.basicAuthUsername && validationEnabled
+							? solaceValidationErrors.basicAuthUsername
+							: en.connectors.helperText.clientUsername
+						: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!readOnly
name
clientPassword
label
en.connectors.labels.clientPassword
dataQa
clientPasswordTextField
value
basicAuthValues.clientPassword
readOnly
readOnly
onChange
({ value: clientPassword }) => {
+					setBasicAuthValues({
+						...basicAuthValues,
+						clientPassword: clientPassword
+					});
+				}
type
showPassword ? "text" : "password"
endAdornment
[
+					 setShowPassword(!showPassword)}
+					>
+						{showPassword ?  : }
+					
+				]
onBlur
() => {
+					if (isEmpty(basicAuthValues.clientPassword)) {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientPassword: en.connectors.labels.validationErrors.missingRequiredField(
+								en.connectors.labels.clientPassword
+							)
+						});
+					} else {
+						setSolaceValidationErrors({
+							...solaceValidationErrors,
+							clientPassword: ""
+						});
+					}
+				}
hasErrors
validationEnabled && !!solaceValidationErrors.clientPassword
helperText
!readOnly
+						? solaceValidationErrors.clientPassword && validationEnabled
+							? solaceValidationErrors.clientPassword
+							: en.connectors.helperText.clientPassword
+						: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslKeyStoreReadOnlyBlank
value
"-"
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslKeyStorePassword
value
readOnly
+									? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)
+									: clientCertValues.sslKeyStorePassword
readOnly
readOnly
label
en.connectors.labels.sslKeyStorePassword
dataQa
sslKeyStorePasswordTextField
onChange
({ value: sslKeyStorePassword }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStorePassword: sslKeyStorePassword
+								});
+							}
type
showSslKeyStorePassword ? "text" : "password"
endAdornment
[
+								 setShowSslKeyStorePassword(!showSslKeyStorePassword)}
+								>
+									{showSslKeyStorePassword ?  : }
+								
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslPrivateKeyAliasName
value
readOnly
+									? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)
+									: clientCertValues.sslPrivateKeyAliasName
readOnly
readOnly
label
en.connectors.labels.sslPrivateKeyAliasName
dataQa
sslPrivateKeyAliasNameTextField
onChange
({ value: sslPrivateKeyAliasName }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyAliasName: sslPrivateKeyAliasName
+								});
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
sslPrivateKeyPassword
value
readOnly
+									? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)
+									: clientCertValues.sslPrivateKeyPassword
readOnly
readOnly
label
en.connectors.labels.sslPrivateKeyPassword
dataQa
sslPrivateKeyPasswordTextField
onChange
({ value: sslPrivateKeyPassword }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyPassword: sslPrivateKeyPassword
+								});
+							}
type
showSslPrivateKeyPassword ? "text" : "password"
endAdornment
[
+								 setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}
+								>
+									{showSslPrivateKeyPassword ?  : }
+								
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
clientUsername
value
readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername
readOnly
readOnly
label
en.connectors.labels.clientUsername
dataQa
clientUsernameClientCertAuthTextField
onChange
({ value: clientUsername }) => {
+								setClientCertValues({
+									...clientCertValues,
+									clientUsername: clientUsername
+								});
+							}
onBlur
() => {
+								if (isEmpty(clientCertValues.clientUsername)) {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(
+											en.connectors.labels.clientUsername
+										)
+									});
+								} else {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: ""
+									});
+								}
+							}
hasErrors
!readOnly && !!solaceValidationErrors.clientCertUsername
helperText
!readOnly
+									? solaceValidationErrors.clientCertUsername && validationEnabled
+										? solaceValidationErrors.clientCertUsername
+										: en.connectors.helperText.clientUsername
+									: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
connectorDetails.name
dataQa
details_name_field
onChange
({ value: name }) => {
+						setConnectorDetails({ ...connectorDetails, name });
+					}
label
en.connectors.labels.name
required
true
onBlur
() => {
+						if (isEmpty(connectorDetails.name)) {
+							setDetailsStepValidationErrors({
+								...detailsStepValidationErrors,
+								name: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)
+							});
+						} else {
+							setDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: "" });
+						}
+					}
hasErrors
!!detailsStepValidationErrors.name
helperText
detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName
autoFocus
clone
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
eventBrokerService
label
en.connectors.labels.eventBrokerService
value
getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
host
required
true
label
en.connectors.labels.host
value
getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
msgVpn
required
true
label
en.connectors.labels.msgVpn
value
getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
required
true
name
authenticationTypeReadOnlyField
label
en.connectors.labels.authenticationType
value
getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
required
true
name
clientUsername
label
en.connectors.labels.clientUsername
value
getConnectorSummaryValue(basicAuthValues.clientUsername)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
required
true
name
clientPassword
label
en.connectors.labels.clientPassword
value
clientPassword
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
destinationType
required
true
label
en.connectors.labels.destinationType
value
getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
bindingDestination
required
true
label
en.connectors.labels.bindingDestination
value
getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
key
value
getConnectorSummaryValue(key)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
value
value
getConnectorSummaryValue(value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
(hasBlurred || isSubmitted) && hasErrors
helperText
(hasBlurred || isSubmitted ? errorText : "") || helperText
value
value
onChange
handleChange
onBlur
handleBlur
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
new_msg_spool_size
name
new_msg_spool_size
dataQa
newMessageSpoolSize
label
t({ id: "id_new_msg_spool_size_label", message: "New Message Spool Size (GB)" })
required
true
disabled
progress
autoFocus
true
size
4
value
messageStorage.value
onChange
handleMessageStorageChange
hasErrors
hasMessageStorageErrors
helperText
hasMessageStorageErrors ? messageStorageErrorText : t({ id: "id_default_size_gb", message: "Default: {0} GB", values: { 0: formatter.format(defaultMessageSpoolSize) } })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
service_name
name
service_name
dataQa
delete-service-confirm-name
label

+								Please type {matchText} to confirm.
+							
value
matchName
onChange
(e) => setMatchName(e.value)
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
service_name
name
service_name
dataQa
rename-service-name
label
t({ id: "id_new_service_name_label", message: "Service Name" })
value
newName
onChange
(e) => setNewName(e.value)
required
true
hasErrors
hasErrors
helperText
isEmpty
+							? t({ id: "id_rule_enter_value", message: "Required. Enter a value." })
+							: hasErrors
+							? t({ id: "id_rule_less_n_chars", message: "Exceeds limit. Enter a value under {0} characters.", values: { 0: 50 } })
+							: "\xa0"
inlineLabel
true
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
accessType
readOnly
true
inlineLabel
true
label
t({ id: "id_access_type", message: "Access Type" })
value
i18n._(accessTypes[endpoint.accessType])
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
telemetryProfileName
inlineLabel
true
label
t({ id: "id_telemetry_profile", message: "Telemetry Profile" })
value
telemetryProfileName
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
selectedTracingProfileId
dataQa
selectedTracingProfileId
inlineLabel
true
label
t({ id: "id_tracing_destination", message: "Tracing Destination" })
value
tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : "-"
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
msg_spool_size
inlineLabel
true
label
t({ id: "id_cur_msg_spool_size", message: "Current Message Spool Size (GB)" })
value
messageSpoolSize
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingProfileName
inlineLabel
true
label
t({ id: "id_tracing_destination", message: "Tracing Destination" })
value
tracingProfileName
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingClientUsername
inlineLabel
true
label
t({ id: "id_tracing_client_username", message: "Tracing Client Username" })
value
"sc-dt-trace-collector"
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
telemetryProfileName
inlineLabel
true
label
t({ id: "id_telemetry_profile", message: "Telemetry Profile" })
value
telemetryProfileName
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationBasicEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_basic_auth", message: "Basic Authentication" })
value
getEnablingText(msgVpn?.authenticationBasicEnabled)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationBasicEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_basic_auth", message: "Basic Authentication" })
value
getEnablingText(msgVpn?.authenticationBasicEnabled)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationClientCertEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_client_cert_auth", message: "Client Certificate Authentication" })
value
getEnablingText(msgVpn?.authenticationClientCertEnabled)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
authenticationOauthEnabled
readOnly
true
inlineLabel
true
label
t({ id: "id_oauth_provider_auth", message: "OAuth Provider Authentication" })
value
getEnablingText(msgVpn?.authenticationOauthEnabled)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
filterName
name
filterName
dataQa
services-filter-name
value
filter
onChange
handleSetFilter
placeholder
t({ id: "id_filter_services", message: "Filter by service name" })
customIcon
{
+								icon: filter ?  : ,
+								position: "end",
+								handleClick: filter ? handleClearFilter : undefined
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messageStorage
name
messageStorage
dataQa
messageStorage
type
number
label
t({ id: "id_message_storage_gb", message: "Message Spool Size (GB)" })
value
activeServiceClasses.length === 0 ? "" : formatter.format(parseInt(messageStorage.value))
onChange
handleMessageStorageChange
readOnly
true
inlineLabel
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messageStorage
name
messageStorage
dataQa
messageStorage
type
number
label
t({ id: "id_message_storage_gb", message: "Message Spool Size (GB)" })
disabled
activeServiceClasses.length === 0
value
activeServiceClasses.length === 0 ? "" : messageStorage.value
onChange
handleMessageStorageChange
hasErrors
hasMessageStorageErrors
helperText
messageStorageErrorText
readOnly
activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
namePort
name
namePort
dataQa
namePort
type
number
label
""
inlineLabel
true
size
5
disabled
disabled
hasErrors
hasErrors
helperText
errorText
value
port
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
msgVpnName
name
msgVpnName
dataQa
msgVpnName
type
text
readOnly
isCloning
hasErrors
hasErrors
helperText
errorText ? errorText : t({ id: "id_message_vpn_name_help", message: "The message VPN name cannot be changed once the service is created." })
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
dataQa
name
type
text
autoFocus
true
hasErrors
hasAnyErrors
helperText
anyErrorText
value
value
onChange
handleChange
onBlur
handleBlur
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
serviceLimitValue
label
en.serviceLimits.labels.newServiceLimit
type
number
required
true
onChange
onServiceLimitChange
value
newServiceLimit
dataQa
"serviceLimitValue"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environmentFilter
placeholder
environmentsStr.environmentList.filterPlaceholder
endAdornment
[]
onChange
handleSearch
dataQa
environmentFilterInput
width
"313px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.environments.labels.environmentName
value
dialogState.name
name
environmentName
maxLength
100
onChange
handleEnvNameChange
required
true
hasErrors
isDuplicate || hasError || hasNameRequiredError
helperText
handleErrorText()
disabled
isLoading
dataQa
envNameTestId
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
firstNameError
helperText
firstNameError ? myProfile.firstNameError : ""
name
userFirstName
id
userFirstName
dataQa
userFirstName
value
firstNameValue
maxLength
150
onChange
handleFirstName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
lastNameError
helperText
lastNameError ? myProfile.lastNameError : ""
name
userLastName
id
userLastName
dataQa
userLastName
value
lastNameValue
maxLength
150
onChange
handleLastName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
oldPasswordReq
helperText
oldPasswordReq ? myProfile.oldPasswordReq : ""
name
userOldPassword
type
password
id
userOldPassword
dataQa
userOldPassword
value
oldPasswordValue
maxLength
50
onChange
handleOldPasswordChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
newPasswordError.length > 0
helperText
newPasswordError
name
userNewPassword
id
userNewPassword
type
password
dataQa
userNewPassword
value
newPasswordValue
maxLength
50
onChange
handleNewPasswordChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
confirmPasswordError
helperText
confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning
name
userNewConfirmation
id
userNewConfirmation
type
password
dataQa
userNewConfirmation
value
newPasswordValueConfirm
maxLength
50
onChange
handleNewPasswordConfirmChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
userGroups.ugDialog.ugName
value
dialogState.name
name
userGroupName
maxLength
100
onChange
handleUGNameChange
disabled
isLoading
hasErrors
hasNameError || isDuplicate || hasNoNameError || isDefaultError
helperText
handleErrorText()
dataQa
userGroupNameQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userGroupSearch
dataQa
userGroupSearchQa
value
userGroupSearchValue
onChange
handleUserGroupSearchValue
placeholder
userGroups.userGroupsHome.search
size
155
endAdornment
[
+							userGroupSearchValue ? (
+								
+									
+								
+							) : null,
+							
+								
+							
+						]
width
20rem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.clientId?.errors?.length > 0
helperText
configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : ""
width
100%
name
clientId
onChange
({ name, value }) => {
+								const errors: string[] = [];
+
+								if (value.length < 1) {
+									errors.push(en.accountSettings.clientIdErrorMsg);
+								}
+
+								handleConfigureSettingsChange();
+
+								setConfigSettings((config) => {
+									return { ...config, [name]: { ...config.clientId, value, errors } };
+								});
+							}
title
en.accountSettings.clientId
value
configSettings.clientId.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.clientSecretKey.errors?.length > 0
helperText
configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : ""
type
hideSecretKey ? "password" : "text"
width
100%
name
clientSecretKey
onChange
({ name, value }) => {
+									const errors: string[] = [];
+
+									if (value.length < 1) {
+										errors.push(en.accountSettings.clientSecretKeyErrorMsg);
+									}
+
+									handleConfigureSettingsChange();
+
+									setConfigSettings((config) => {
+										return { ...config, [name]: { ...config.clientSecretKey, value, errors } };
+									});
+								}
title
en.accountSettings.clientSecretKey
value
configSettings.clientSecretKey.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.oidcDiscoveryUrl.errors?.length > 0
helperText
configSettings.oidcDiscoveryUrl.errors?.length > 0
+									? configSettings.oidcDiscoveryUrl.errors[0]
+									: en.accountSettings.discoveryUrlExpectedFormat
width
100%
name
oidcDiscoveryUrl
onChange
({ name, value }) => {
+								const errors: string[] = [];
+
+								if (value.length < 1) {
+									errors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);
+								}
+
+								handleConfigureSettingsChange();
+
+								setConfigSettings((config) => {
+									return { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };
+								});
+							}
title
en.accountSettings.discoveryUrl
value
configSettings.oidcDiscoveryUrl.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
configSettings.additionalScopes.errors?.length > 0
helperText
configSettings.additionalScopes.errors?.length > 0
+									? configSettings.additionalScopes.errors[0]
+									: en.accountSettings.additionalScopesExpectedFormat
width
100%
name
additionalScopes
onChange
({ name, value }) => {
+								const errors: string[] = [];
+
+								if (value.indexOf(" ") >= 0) {
+									errors.push(en.accountSettings.noWhiteSpaceAllowed);
+								}
+
+								handleConfigureSettingsChange();
+
+								setConfigSettings((config) => {
+									return { ...config, [name]: { ...config.additionalScopes, value, errors } };
+								});
+							}
title
en.accountSettings.additionalScopes
value
configSettings.additionalScopes.value as string
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.accountSettings.preferredSubdomain
name
preferredSubdomain
onChange
(e) => setPreferredSubdomainText({ edited: true, text: e.value })
required
true
title
en.accountSettings.preferredSubdomain
value
preferredSubdomain.text
hasErrors
preferredSubdomain.edited && !canSendRequest
helperText
preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : ""
width
100%
dataQa
preferredSubdomainTextField
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
helperText
userGroupManagement[
+									claimIdChanged && claimId.trim().length < 1 ? "claimIdError" : "identityProviderHelperText"
+								]
hasErrors
claimIdChanged && claimId.trim().length < 1
label
userGroupManagement.identityProviderLabel
name
claimId
onChange
({ value }) => claimIdChangeHandler(value)
value
claimId
dataQa
roleId
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
editClaimValuesFieldId
name
editClaimValuesField
value
claimValuesMapping
onChange
({ value }) => setClaimValuesMapping(value)
helperText
claimValueError ? userGroupManagement.claimValueErrorMessage :  
hasErrors
claimValueError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
addClaimValuesField
name
addClaimValuesField
value
claimValuesMapping
onChange
({ value }) => setClaimValuesMapping(value)
helperText
claimValueError ? userGroupManagement.claimValueErrorMessage : undefined
hasErrors
claimValueError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
summaryError
helperText
handleSummaryError()
name
summaryfield
id
supportPageSummary
dataQa
supportPageSummary
value
summaryValue
onChange
handleSummaryFieldValue
maxLength
150
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
errorIdError
helperText
handleErrorIdError()
name
errorField
id
supportPageErrorId
dataQa
supportPageErrorId
value
errorIdValue
onChange
handleErrorIdFieldValue
maxLength
350
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
limitRequestNumber
name
limitRequestNumber
onChange
({ value }) => setLimitRequestNumber(+value)
type
number
value
limitRequestNumber
label
en.overview.eventPortalSection.totalObjects
required
true
width
15rem
data-qa
limitRequestNumberInput
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.overview.banner.contactEmail
name
en.overview.banner.contactEmail
onChange
(e) => setContactEmail(e.value)
title
en.overview.banner.contactEmail
value
contactEmail
hasErrors
!!contactEmail && !isValidEmail(contactEmail)
helperText
!!contactEmail && !isValidEmail(contactEmail) ? (
+								
+									{en.overview.banner.errorHelperText}
+								
+							) : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
en.overview.advancedSettingsSection.password
name
en.overview.advancedSettingsSection.password
onChange
({ value }) => setPassword(value)
title
en.overview.advancedSettingsSection.password
value
password
type
password
width
45rem
hasErrors
inCorrectPassword
dataQa
password
helperText
inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fullWidth
true
id
resetPasswordEmail
name
resetPasswordEmail
onChange
handleChange
title
en.forgotPassword.resetPasswordFieldTitle
placeholder
en.forgotPassword.email
dataQa
resetPasswordEmailInput
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
name
name
dataQa
name
label
List of Emails
value
handle
onChange
({ value }) => setHandle(value)
onFocus
() =>
+					!helper.hasErrors &&
+					setHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))
onBlur
() =>
+					!helper.hasErrors &&
+					setHelper((previous: any) => ({
+						...previous,
+						[name]: { hasErrors: false, helperText: handle ? "" : helperText.warning(name) }
+					}))
hasErrors
helper.hasErrors
helperText
helper.helperText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
search
width
45%
placeholder
Search...
onChange
(event) => setSearch(event.value)
value
search
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
tokenFormValues.name
aria-label
Name
data-lpignore
true
width
500px
name
name
required
true
hasErrors
!!nameError
helperText
nameError ?? undefined
onChange
(e) => dispatch(setTokenName(e.value))
dataQa
tokenName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
dataQa
details_displayName
name
tracingProfile.formFields.name.field
value
tracingDestination?.displayName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.type.field
value
tracingProfile.tracingType[tracingDestination?.tracingBackendType]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.connectionType.field
value
tracingProfile.tlsConnectionType[tracingDestination.connectionType]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.region.field
value
tracingProfile.datadogSite[tracingDestination.datadogSite]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
tracingProfile.formFields.endpoint.field
value
tracingDestination.endpoint
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
dataQa
details_apiKey
name
tracingProfile.formFields.datadogApiKey.field
value
tracingDestination.datadogApiKey
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
!!readOnly
name
name
value
value || ""
hasErrors
!_.isEmpty(error)
helperText
error?.message
onChange
(e) => onChange(e.value)
onBlur
onBlur
dataQa
dataQa ?? name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
customIcon
{
+						icon: ,
+						position: "end"
+					}
width
50%
label
customers.searchAggregationName
name
searchCustomerTextbox
onChange
handleSearchTextSearch
title
customers.searchAggregationName
dataQa
searchCustomerTextbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
orgSearchBox
name
orgSearchBox
dataQa
orgSearchBox
width
400px
value
searchText
onChange
(event) => handleSearchField(event.value)
endAdornment
[
+							searchText ? (
+								 handleSearchField(EMPTY_STRING)}>
+									
+								
+							) : null,
+							
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
SolaceDatadogAgentVersion
placeholder
Enter to override Production Datadog Agent Version
helperText
Overrides solace-datadog-agent image version, default: latest
onChange
(e) => setValue("SolaceDatadogAgentVersion", e.value)
dataQa
SolaceDatadogAgentVersionTextBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
orgIdField
label
Organization Id
value
orgId
dataQa
orgIdField
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
true
name
apiKeyField
label
API Key
value
ddOrgData?.apiKey ?? ""
dataQa
apiKeyTextField
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
name
orgNameField
label
Organization Display Name
value
ddOrgData?.orgPublicId ?? ""
dataQa
orgNameField
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
true
name
appKeyField
label
APP Key
value
ddOrgData?.appKey ?? ""
dataQa
appKeyTextField
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
ddSubOrgName
label
Datadog Sub-Org Name
value
subOrgName
placeholder
Enter Datadog Sub-Org name
onChange
(e) => {
+									handleSubOrgNameInput(e.value);
+								}
dataQa
ddSubOrgNameTextBox
width
50%
maxLength
32
hasErrors
subOrgNameInvalid
helperText
subOrgNameInvalid
+										? "Datadog Sub-Org Name does not start with 'PI - ' or 'RMMS - ' , change the name and retry"
+										: ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
alertHandles
label
Alert Handles
onChange
(e) => {
+																	handleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));
+																}
value
resource.alertHandles ?? ""
dataQa
`${resource.profile}_alertHandlesTextBox`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
warningHandles
label
Warning Handles
onChange
(e) => {
+																	handleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));
+																}
value
resource.warningHandles ?? ""
dataQa
`${resource.profile}_warningHandlesTextBox`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
recoveryHandles
label
Recovery Handles
onChange
(e) => {
+																	handleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));
+																}
value
resource.recoveryHandles ?? ""
dataQa
`${resource.profile}_recoveryHandlesTextBox`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
inviteUsersInput
label
Provide a list of comma-separated solace.com email addresses
value
adminUsersList
onChange
(e) => {
+							setAdminUsersList(e.value);
+						}
dataQa
inviteUsersTextBox
width
60%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
search === "none"
label
Search
name
search
width
375px
value
filters[search]
onChange
(event) => setFilters({ ...filters, [search]: event.value })
endAdornment
[]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
value
value
value
onChange
(event) => setValue(event?.value)
placeholder
operator === "=in=" || operator === "=out=" ? "value1,value2,value3" : "Enter value"
fullWidth
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
(event) => onChange(event.value)
hasErrors
!!error
dataQa
plan-name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
(event) => onChange(event.value)
hasErrors
!!error
dataQa
plan-description
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
(event) => onChange(event.value)
hasErrors
!!error
dataQa
run-description
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
searchFor
onChange
searchBoxChangeHandler
dataQa
search-for-textbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
rest
hasErrors
!!error
helperText
error?.message
dataQa
name
name
name
disabled
disabled
value
value || ""
onChange
(e) => onChange(e.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
confirmationBox
value
confirmationText
dataQa
confirmationBox
onChange
({ value }) => setConfirmationText(value)
label

+								Please type DELETE to confirm.
+							
autoFocus
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
search
name
search
placeholder
Search by event broker version
width
400px
value
search
onChange
(input) => setSearch(input.value)
customIcon
{
+								icon: search ?  : ,
+								position: "end",
+								handleClick: search ? handleClearSearch : undefined
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
quantityTextfieldId
name
quantityTextfield
onChange
({ value }) => validateQuantity(value)
value
prodQuantityValue
width
100%
dataQa
quantityTextfieldQa
hasErrors
productDrawdown.inputError
helperText
prodQuantityErrors[0]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
readOnlyProducts || isFieldReadOnly
type
number
size
5
name
`countField${key}`
value
prod.count !== 0 ? prod.count : undefined
onChange
(e) => handleCountSet(key, parseInt(e.value))
width
!(readOnlyProducts || isFieldReadOnly) ? "100%" : "auto"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
(orgDetails["orgDisplayName"].isEdited || !isSaveAllowed) &&
+							orgDetails["orgDisplayName"].errors.validationErrors.concat(
+								orgDetails["orgDisplayName"].errors.inputErrors
+							).length > 0
helperText
orgDetails["orgDisplayName"].errors.validationErrors.concat(
+								orgDetails["orgDisplayName"].errors.inputErrors
+							)[0]
name
orgDisplayName
onChange
inputHandler
width
80%
title
createBizOrganization.orgDetails.orgDisplayName
disabled
!!validationErrors
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
(orgDetails["orgId"].isEdited || !isSaveAllowed) &&
+							orgDetails["orgId"].errors.validationErrors.concat(orgDetails["orgId"].errors.inputErrors).length > 0
helperText
validationErrors
+								? ""
+								: orgDetails["orgId"].errors.validationErrors.concat(orgDetails["orgId"].errors.inputErrors)[0] ||
+								  createBizOrganization.orgDetails.orgIdWarning
name
orgId
onChange
inputHandler
width
80%
title
createBizOrganization.orgDetails.orgId
disabled
!!validationErrors
hasWarnings
!validationErrors
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
accountName
onChange
inputHandler
width
80%
title
createBizOrganization.orgDetails.accountName
disabled
!!validationErrors
hasErrors
(orgDetails["accountName"].isEdited || !isSaveAllowed) &&
+							orgDetails["accountName"].errors.validationErrors.concat(orgDetails["accountName"].errors.inputErrors)
+								.length > 0
helperText
orgDetails["accountName"].errors.validationErrors.concat(
+								orgDetails["accountName"].errors.inputErrors
+							)[0] || createBizOrganization.orgDetails.accountNameHelperText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
accountId
onChange
inputHandler
width
80%
disabled
!!validationErrors
title
createBizOrganization.orgDetails.accountId
hasErrors
(orgDetails["accountId"].isEdited || !isSaveAllowed) &&
+							orgDetails["accountId"].errors.validationErrors.concat(orgDetails["accountId"].errors.inputErrors)
+								.length > 0
helperText
orgDetails["accountId"].errors.validationErrors.concat(orgDetails["accountId"].errors.inputErrors)[0] ||
+							createBizOrganization.orgDetails.accountIdHelperText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
costCenter
onChange
inputHandler
width
80%
value
orgDetails["costCenter"].value
disabled
!!validationErrors
title
createBizOrganization.orgDetails.costCenter
dataQa
costCenterInput
hasErrors
(orgDetails["costCenter"].isEdited || !isSaveAllowed) && getCostCenterErrors().length > 0
helperText
((orgDetails["costCenter"].isEdited || !isSaveAllowed) && getCostCenterErrors()[0]) || ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
domainNameFilter
value
nameFilter
onChange
handleFilterChange
readOnly
readOnlyProducts
dataQa
filterDomainName
placeholder
i18nStrings.filterByNameLabel
size
155
width
100%
endAdornment
[
+									nameFilter ? (
+										
+											
+										
+									) : null,
+									
+ +
+ ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
helperText
currentEmailEntry.length > 0 && !isEmailValid ? (
+									
+										{createBizOrganization.accountAdmins.errorHelperText}
+									
+								) : emailList.length === 0 && !isSaveAllowed ? (
+									
+										{createBizOrganization.accountAdmins.requiredFieldError}
+									
+								) : (
+									createBizOrganization.accountAdmins.emailsPlaceholder
+								)
hasErrors
(currentEmailEntry.length > 0 && !isEmailValid) || (emailList.length === 0 && !isSaveAllowed)
name
accountAdminEmail
onChange
({ value }) => setCurrentEmailEntry(value)
onBlur
() => { setIsEmailValid(isEmail(currentEmailEntry)) }
value
currentEmailEntry
width
100%
data-qa
accountAdminTextField
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
autoFocus
true
inlineLabel
true
dataQa
searchByOrgId
name
searchByOrgId
label
Search By Organization ID
width
500px
value
orgId
onChange
(event) => (!loadingOrgs ? setOrgId(event.value) : undefined)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
autoFocus
true
inlineLabel
true
dataQa
searchByOrgId
name
searchByOrgId
label
Search By Organization ID
width
500px
value
orgId
onChange
(event) => (!loadingJobs ? setOrgId(event.value) : undefined)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
readOnly
true
value
datacenterId
name
datacenterId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
required
true
placeholder
Type a datacenter ID ...
name
sourceDatacenterId
dataQa
sourceDatacenterId
value
selectedDatacenterId
disabled
isLoading
onChange
({ value }) => {
+							setSelectedDatacenterId(value);
+							reset();
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
isPerformingRequest
label
Image Tag
name
imageTag
title
Image Tag
value
imageTag
onChange
(event) => dispatch(setImageTag(event.value.trim()))
dataQa
imageTag
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
isPerformingRequest
label
Helm Chart Version
name
helmChartVersion
title
Helm Chart Version
value
helmChartVersion
onChange
(event) => dispatch(setHelmChartVersion(event.value.trim()))
dataQa
helmChartVersion
required
true
+
+ +
+
+ +
+
+
+ SolaceStack + 157 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui64
intgmaas-ui53
mcmaas-ui3
saasmaas-ui12
inframaas-ops-ui13
maas-ops-reactmaas-ops-ui12
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
spacing72
direction49
padding17
alignItems15
justifyContent14
width10
height7
data-qa6
bgcolor6
marginTop4
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (157)

+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
width
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
justifyContent
space-between
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
paddingLeft
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
paddingLeft
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
paddingLeft
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
flex-start
spacing
1
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
0
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
+
+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
paddingTop
theme.spacing(3)
spacing
1.5
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
spacing
5
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
width
100%
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
width
100%
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
maxHeight
"360px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
width
"100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
4
width
"100%"
mb
5
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
textAlign
"center"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
my
2.5
width
"fit-content"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
spacing
2.5
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
gap
1
marginBottom
1
data-qa
manageCredentialsEditor
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
height
84
bgcolor
theme.palette.ux.background.w10
borderBottom
showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined
alignItems
"center"
padding
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
height
84
bgcolor
theme.palette.ux.background.w10
borderBottom
showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined
alignItems
"center"
padding
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
margin
createMode ? 0 : 3
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
alignItems
"center"
padding
3
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
justifyContent
"flex-end"
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
margin
createMode ? 0 : 3
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
useFlexGap
true
flexWrap
wrap
height
data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
5
margin
createMode ? 0 : 3
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
3
height
`calc(100vh - 80px)`
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
useFlexGap
true
flexWrap
"wrap"
pl
3
pr
3
height
data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
data-qa
connectorsSidePanel
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
6
direction
"row"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
0
ml
"auto"
mt
"auto"
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
start
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
height
allItems.length !== 0 ? `calc(100vh + 80px)` : "100%"
bgcolor
theme.palette.ux.background.w10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
38rem
height
auto
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
justifyContent
end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
style
{ minHeight: "45vh" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
paddingTop
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
marginTop
2
bgcolor
theme.palette.ux.background.w20
padding
2
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
paddingTop
1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
"row"
spacing
1
marginTop
marginTop
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
direction
"row"
alignItems
center
padding
theme.spacing(2, 2, 2, 2)
marginX
theme.spacing(2)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
spacing
1
sx
{ paddingLeft: 1 }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
2
paddingBottom
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
1
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
column
maxWidth
"25%"
padding
theme.spacing(1)
alignItems
justifyContent
space-between
bgcolor
theme.palette.ux.secondary.w10
flex
'1 1 0px'
border
1
borderRadius
1
borderColor
theme.palette.ux.secondary.w40
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-qa
clusters-summary
direction
row
spacing
3
margin
theme.spacing(3, 6)
padding
theme.spacing(2)
bgcolor
theme.palette.ux.background.w10
border
1
borderRadius
1
borderColor
theme.palette.ux.secondary.w70
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
1
justifyContent
'flex-end'
marginTop
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
column
padding
theme.spacing(2)
spacing
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
column
padding
theme.spacing(2)
spacing
theme.spacing(1)
data-qa
cluster-status-tab
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
justifyContent
space-between
padding
theme.spacing(1)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
alignItems
center
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
column
spacing
theme.spacing(1)
data-qa
cluster-system-components-tab
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
column
padding
theme.spacing(2)
spacing
theme.spacing(1)
data-qa
cluster-status-tab
style
{ backgroundColor: theme.palette.ux.background.w10, border: `1px solid ${theme.palette.ux.secondary.w20}`, borderRadius: theme.shape.borderRadius }
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
spacing
1.5
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
direction
row
my
1.5
spacing
1.5
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data-testid
filter-by
direction
row
justifyContent
space-between
alignItems
center
spacing
3
mb
1
+
+ + + + + + + + + + + +
+
+ +
+
+
+ SolaceSelect + 124 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui72
intgmaas-ui10
mcmaas-ui12
saasmaas-ui10
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui18
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name124
value122
onChange120
dataQa95
label70
id62
hasErrors45
helperText44
width37
required36
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (124)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleTypeChange
id
eventMesh[type]
name
eventMesh[type]
dataQa
eventMesh[type]
label
LABEL_TYPE
value
memContent.brokerType
required
mode === "create"
readOnly
mode !== "create"
disabled
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
schemaRegistry[type]
id
schemaRegistry[type]
label
Type
name
schemaRegistry[type]
onChange
() => undefined
readOnly
true
value
content.type
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
disabled
disabled
id
`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`
inlineLabel
true
label
eventBrokerFormFieldLabels[inputField]
name
name
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
true
value
value
hasErrors
!!error
onClose
onBlur
helperText
error?.message ? en.common.error.selectValueRequired : ""
getOptionDisplayValue
(value) => {
+													const match = environmentVariableMenuOptions.find((props) => props.value === value);
+
+													return match ? match.name : "";
+												}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][schemaRegistry][authType]
disabled
disabled
id
eventBroker[kafka][schemaRegistry][authType]
label
eventBrokerFormFieldLabels.authentication
name
name
onChange
(e) => {
+							clearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);
+							onChange(e.value);
+						}
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][authentication][${authKey}][${inputField}]`
disabled
kafkaDelimiterIsNotSet || loading
id
`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`
label
eventBrokerFormFieldLabels[inputField]
name
name
onChange
(e) => onChange(e.value)
readOnly
isJaasConfigPassword || readOnly
required
true
value
value
hasErrors
!!error
onClose
onBlur
helperText
error?.message ? en.common.error.selectValueRequired : ""
getOptionDisplayValue
(value) => {
+													const match = environmentVariableMenuOptions.find((props) => props.value === value);
+
+													return match ? match.name : "";
+												}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[kafka][authentication][authType]
disabled
kafkaDelimiterIsNotSet || loading
id
eventBroker[kafka][authentication][authType]
label
eventBrokerFormFieldLabels.authentication
name
name
onChange
(e) => {
+							clearErrors(`kafka.authentication.auth.${selectedAuthType}`);
+							onChange(e.value);
+						}
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`eventBroker[kafka][authentication][saslscram][saslMechanism]`
disabled
kafkaDelimiterIsNotSet || loading
id
eventBroker[kafka][authentication][saslscram][saslMechanism]
label
eventBrokerFormFieldLabels.saslMechanism
name
name
onChange
(e) => onChange(e.value)
readOnly
readOnly
required
required
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[solace][messaging][type]
disabled
readOnly
id
eventBroker[type]
label
eventBrokerFormFieldLabels.transport
name
name
onChange
(e) => handleTransportChange(e.value)
readOnly
readOnly
value
value
width
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBroker[type]
disabled
isLoading
id
eventBroker[type]
label
eventBrokerFormFieldLabels.type
name
name
onChange
(e) => onChange(e.value)
readOnly
readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
name
name
dataQa
environment[select]
label
`Environment`
onChange
onEnvironmantChange
value
selectedEnvironmentId
required
true
hasErrors
!!selectQueryError.environmentError || !!validationError.environmentError
helperText
selectQueryError.environmentError ?? validationError.environmentError
maxHeight
DROPDOWN_LIST_MAX_HEIGHT
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[environment]
name
memAssociation[environment]
dataQa
memAssociation[environment]
label
en.eventApiProduct.labels.environment
onChange
handleEnvironmentSelectChange
value
selectedEnvironmentId
required
true
hasErrors
!!validationError.environmentError
helperText
validationError.environmentError
maxHeight
dropdownListMaxHeight
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[eventMesh]
name
memAssociation[eventMesh]
dataQa
memAssociation[eventMesh]
label
en.eventApiProduct.labels.mem
onChange
handleEventMeshSelectChange
value
selectedEventMeshId
required
true
disabled
!selectedEnvironmentId
hasErrors
!!validationError.eventMeshError
helperText
validationError.eventMeshError
maxHeight
dropdownListMaxHeight
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[messagingService]
name
memAssociation[messagingService]
dataQa
memAssociation[messagingService]
label
en.eventApiProduct.labels.messagingService
onChange
handleMessagingServiceSelectChange
value
selectedMessagingServiceId
required
true
disabled
!selectedEventMeshId
hasErrors
!!validationError.messagingServiceError
helperText
validationError.messagingServiceError
maxHeight
dropdownListMaxHeight
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
name
name
dataQa
applicationVersion[select]
label
`Application version to add`
onChange
onApplicationVersionChange
value
selectedApplicationVersion?.id
required
true
maxHeight
DROPDOWN_LIST_MAX_HEIGHT
helperText
helperText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[domain]
name
eapAssociation[domain]
dataQa
eapAssociation[domain]
label
en.eventApiProduct.labels.applicationDomain
onChange
handleApplicationDomainChange
value
selectedApplicationDomainId
required
true
hasErrors
!!validationError.applicationDomainError
helperText
validationError.applicationDomainError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[eventApiProduct]
name
eapAssociation[eventApiProduct]
dataQa
eapAssociation[eventApiProduct]
label
en.eventApiProduct.labels.eventApiProduct
onChange
handleEventApiProductSelectChange
value
selectedEventApiProductId
required
true
disabled
!selectedApplicationDomainId
hasErrors
!!validationError.eventApiProductError
helperText
validationError.eventApiProductError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[eventApiProductVersion]
name
eapAssociation[eventApiProductVersion]
dataQa
eapAssociation[eventApiProductVersion]
label
en.eventApiProduct.labels.eventApiProductVersion
onChange
handleEventApiProductVersionSelectChange
value
selectedEventApiProductVersionId
required
true
disabled
!selectedEventApiProductId
hasErrors
!!validationError.eventApiProductVersionError
helperText
validationError.eventApiProductVersionError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
resourceRoleSelect
name
resourceRoleSelect
dataQa
resourceRoleSelect
disabled
isDisabled
value
role
onChange
(event) => onResourceRoleChange(resourceAssignment, event.value)
getOptionDisplayValue
(value: string) => RESOURCE_LABEL_BY_ROLE[value]
menuAnchorOrigin
{ vertical: "bottom", horizontal: "left" }
menuTransformOrigin
{ vertical: "top", horizontal: "left" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
envDialog-select-environment
name
envDialog-select-environment
dataQa
envDialog-select-environment
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
version.id
name
Entity List
onChange
onChangeVersion
dataQa
entityVersionSelect
width
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+													onChange(e.value);
+													handleSelectUpdate(e.value, "valueType");
+												}
getOptionDisplayValue
(value) => {
+													const match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);
+
+													return match ? match.name : "";
+												}
value
value
dataQa
`${caKey}-value-type-select`
width
"100%"
hasErrors
!nameErrorMsg && !!attributeErrorMsg
menuAnchorOrigin
{ vertical: "bottom", horizontal: "left" }
menuTransformOrigin
{ vertical: "top", horizontal: "left" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+													onChange(e.value);
+													handleSelectUpdate(e.value, "scope");
+												}
value
value
dataQa
`${caKey}-scope-select`
width
"100%"
readOnly
isDomainManager
hasErrors
!nameErrorMsg && !!attributeErrorMsg && !isDomainManager
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`${entityName}[versionState]`
onChange
handleStateSelectionChange
value
versionStateId
required
true
dataQa
stateSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
enumerationVersion
label
Version
dataQa
enumerationVersionName
onChange
handleVersionChange
value
selectedEnumVersionId
disabled
!selectedEnumOption || getEnumVersions.isLoading
getOptionDisplayValue
(value) => valueToMenuItemMap.get(value) || ""
width
35%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationDomainSelect-readOnly
label
title ? title : "Application Domain"
inlineLabel
inlineLabel
value
selectedApplicationDomain?.value
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
`${entityTypeToLabel(entityType)} Version`
required
true
value
selectedEntityVersionId
name
Entity List
onChange
handleEntityVersionChange
dataQa
entityVersionSelect
width
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
versionIncrementStrategySelect
onChange
handleStateSelectionChange
value
selectedVersionIncrementStrategy
required
true
dataQa
dataQa ?? "versionIncrementStrategySelect"
label
Version Incrementing
width
width ?? "100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
FilterTypeLabel[filterType]
onChange
handleSharedTypeChange
value
selectedValue
displayEmpty
true
onOpen
handleOpen
onClose
handleClose
open
openDropdown
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleTypeChange
id
objectRelationship[type]
name
objectRelationship[type]
dataQa
objectRelationship[type]
label
"Graph Type"
value
layoutType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
Agent Mode
disabled
loading
getOptionDisplayValue
(value: string) => EMA_MODES_LABELS[value]
hasErrors
!!getRuntimeAgentModeErrorMessage
helperText
getRuntimeAgentModeErrorMessage
name
agent mode
onChange
handleDiscoveryScanModeChange
readOnly
!!agentId
width
620px
value
eventManagementAgent.runtimeAgentMode
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingServiceTypeSelect
name
messagingServiceTypeSelect
dataQa
messagingServiceTypeSelect
label
Type
onChange
handleMessagingServiceTypeChange
value
selectedMessagingServiceType
width
30%
inlineLabel
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"layoutOptions"
name
"layoutOptions"
dataQa
"layoutOptions"
value
layoutType
onChange
handleLayoutTypeChange
width
"90px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"levelDepthOptions"
name
"levelDepthOptions"
dataQa
"levelDepthOptions"
value
levelDepthString
onChange
handleLevelDepthChange
width
"55px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleEnvironmentChange
id
addToAppVersions[environmentSelect]
name
addToAppVersions[environmentSelect]
dataQa
addToAppVersionsBulkPromotion[environmentSelect]
label
"Environment"
value
selectedEnvironmentId
disabled
isLoading
hasErrors
!!validationError.environmentInputError
helperText
validationError.environmentInputError
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleEventMeshChange
id
addToAppVersions[eventMeshSelect]
name
addToAppVersions[eventMeshSelect]
dataQa
addToAppVersionsBulkPromotion[eventMeshSelect]
label
"Modeled Event Mesh"
disabled
isLoading || selectedEnvironmentId === "" || eventMeshSelectOptions.length === 0
value
selectedEventMeshId
hasErrors
!!validationError.eventMeshInputError
helperText
validationError.eventMeshInputError
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleMessagingServiceChange
id
addToAppVersions[messagingServiceSelect]
name
addToAppVersions[messagingServiceSelect]
dataQa
addToAppVersionsBulkPromotion[messagingServiceSelect]
label
"Event Broker"
disabled
isLoading || selectedEventMeshId === "" || messagingServiceOptions.length === 0
value
selectedMessagingServiceId
hasErrors
!!validationError.messagingServiceInputError
helperText
validationError.messagingServiceInputError
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleEventFlowFilterChange
id
eventFlowSelect
name
eventFlowSelect
dataQa
eventFlowSelect
value
eventFlowOption
disabled
graphLoading || graphUpdating || drawInProgress || graphNodeExceeded
width
280px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"configurationVersionSelect"
onChange
handleOnChange
value
audits[0].id
dataQa
"configurationVersionSelect"
width
"100%"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
filterLabel
onChange
handleChange
value
selectedValue
displayEmpty
true
onOpen
handleOpen
onClose
handleClose
open
openDropdown
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
selectMessagingService
name
selectMessagingService
dataQa
selectMessagingService
onChange
handleSelectMessagingServiceChange
value
selectedMessagingServiceId
disabled
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
onChange
handleVersionChange
id
version-selector-runtime
name
version-selector-runtime
dataQa
versionSelectorRuntime
label
Version
value
selectedVersionId
width
350px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleVersionChange
id
version-selector-runtime
name
version-selector-runtime
dataQa
versionSelectorRuntime
label
Version
value
selectedVersionId
width
315px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
handleSecondVersionChange
id
version-selector-runtime
name
version-selector-runtime
dataQa
versionSelectorRuntime
label
Version
value
selectedSecondVersionId
width
315px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
async (e) => {
+										onChange(e.value);
+										trigger(`${configurationName}-postRequestTarget`);
+										updateConfiguration();
+									}
disabled
!getValues(`${configurationName}-postRequestTarget`)
dataQa
`${configurationName}-requestTargetEvaluation`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.configuration.restDeliveryPoint.requestHeaderType
name
`${configurationName}-request`
value
requestHeaderType
onChange
(e) => setRequestHeaderType(e.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : ""
onChange
(e) => {
+											onChange(e.value);
+											handleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);
+										}
dataQa
restDeliveryPointConfigurationType-selector
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
context.value
name
contextSelector
dataQa
contextSelector
onChange
handleContextOptionChange
inlineLabel
true
disabled
!!isDisabled
width
400px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
kafkaDelimiter
dataQa
kafkaDelimiter
onChange
handleDelimiterChange
value
delimiter
disabled
hasFetchError
width
150px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"AsyncAPI Version"
name
AsyncAPI Version
value
version
onChange
(e) => {
+				setVersion(e.value as EPSupportedAsyncApiVersion);
+
+				if (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);
+			}
getOptionDisplayValue
(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Document Extensions"
name
documentExtensions
value
extension
onChange
(e) => {
+				setExtension(e.value as SupportedAsyncApiExtensionOptions);
+
+				if (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);
+			}
getOptionDisplayValue
(value) => {
+				const match = documentExtensionOptions.find((props) => props.value === value);
+
+				return match ? match.name : "";
+			}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+							}
hasErrors
!!error
helperText
error ? en.eventApi.error.requiredPlan : null
label
en.eventApiProduct.labels.plan
width
621px
required
true
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+								// borkerType is used in the parent, pass the value back.
+								onBrokerTypeChange?.(e.value);
+							}
hasErrors
!!error
helperText
error ? error.message : null
value
value
readOnly
isEdit
dataQa
eventApi[brokerType]
width
"526px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`messagingSelect-${index}`
name
name
onChange
(e) => {
+										onChange(e.value);
+									}
hasErrors
!!error
helperText
error ? error.message : null
width
"556px"
value
`${value}`
dataQa
name
readOnly
mode === "view"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`accessTypeSelect-${index}`
name
name
onChange
(e) => {
+												onChange(e.value);
+											}
hasErrors
!!error
helperText
error ? error.message : null
width
"556px"
dataQa
name
readOnly
mode === "view"
value
value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`queueTypeSelect-${index}`
name
name
onChange
(e) => {
+												onChange(e.value);
+											}
hasErrors
!!error
helperText
error ? error.message : null
width
"556px"
dataQa
name
readOnly
mode === "view"
value
`${value}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+							}
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
`${versionObjectName}[approvalType]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
value
value || brokerTypes[0].value
readOnly
isEdit
getOptionDisplayValue
(value) => brokerTypes.find((type) => type.value === value)?.name || ""
dataQa
eventApiProduct[brokerType]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									setSelectedSchemaType(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
value
value || schemaTypes[0]?.value
dataQa
"schema[schemaType]"
readOnly
isEdit
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
name
name
value
value || ""
readOnly
!isNew || consumerTypeMenuItems?.length === 1
disabled
consumerIdInSidepanel === id && sidePanelOpen
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => {
+										const consumerTypeSelection = e.value;
+
+										// clear any configuration when changing consumer type
+										setValue(`applicationVersion[consumers].${index}.configuration`, undefined);
+										setValue(`applicationVersion[consumers].${index}.configurations`, []);
+
+										onChange(consumerTypeSelection);
+										onBlur();
+									}
getOptionDisplayValue
getOptionDisplayValue
dataQa
`applicationVersion[consumers].${index}.consumerType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"memSelect"
name
"memSelect"
label
`Modeled Event Mesh`
onChange
onChangeHandler
value
selectedEventMeshId
dataQa
memSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`brokerType-${topicDomain.id}`
dataQa
brokerType
onChange
(e) => updateBrokerType(e.value, index)
value
topicDomain.brokerType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`brokerType-${topicDomain.id}`
dataQa
brokerType
value
topicDomain.brokerType
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+												handleBrokerTypeChange(e.value);
+												onChange(e.value);
+											}
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
"event[brokerType]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
"event[requiresApproval]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
schemaVersionSelect
onChange
handleChangeSchemaVersion
value
viewedSchemaVersion?.id
dataQa
schemaVersionSelect
width
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Schema Type"
required
true
name
name
onChange
(e) => {
+										onChange(e.value);
+										setImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);
+									}
hasErrors
!!error
helperText
error ? error.message : null
value
value || schemaTypes[0]?.value
dataQa
"schema[schemaType]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
label
"Access Approval"
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
value
value
dataQa
"event[accessApproval]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+								onChange(e.value);
+								onBrokerTypeChange?.(e.value);
+							}
hasErrors
!!error
helperText
error ? error.message : null
value
value
readOnly
isEdit || !onBrokerTypeChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
selectedMem
value
memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value
onChange
(e) => {
+						const memId = e.value === designedEventFlowOption.value ? "" : e.value;
+
+						setSelectedMemId(memId);
+					}
getOptionDisplayValue
getOptionDisplayValue
width
100%
dataQa
`appVersionDetailMemFilter`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
label
en.application.consumer.consumerType
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onChange
(e) => {
+								const consumerTypeSelection = e.value;
+
+								onChange(consumerTypeSelection);
+								onBlur();
+							}
dataQa
`consumerType`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.consumer.label
value
value
name
name
onChange
(e) => {
+							onChange(e.value);
+							trigger("subscriptions"); // trigger validation
+						}
hasErrors
!!error
helperText
error ? error.message : null
dataQa
consumerSelect
width
100%
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
configurationTypeId
name
configurationTypeId
dataQa
configurationTypeId
label
messages.credentials.configurationTypeId
onChange
onChangeConfigurationType
value
configuration.typeId
required
isEditing
disabled
isLoading
readOnly
!isEditing
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
label
onChange
handleSharedTypeChange
value
selectedValue
displayEmpty
true
onOpen
handleOpen
onClose
handleClose
open
openDropdown
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
authenticationType
id
authenticationType
label
en.connectors.labels.authenticationType
name
"authenticationType"
onChange
({ value: authType }) => {
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											authenticationType: authType as AuthenticationType
+										});
+									}
value
solaceConnectionValues.authenticationType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"solaceDestinationType"
onChange
({ value: destinationType }) =>
+										setSolaceConnectionValues({
+											...solaceConnectionValues,
+											binding: {
+												...solaceConnectionValues.binding,
+												destinationType: destinationType
+											}
+										})
value
solaceConnectionValues.binding.destinationType
label
en.connectors.labels.destinationType
required
true
readOnly
isEqual(solaceDirection, ConnectorDirection.Source) ? true : false
dataQa
solaceDestinationType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setConstantNameError("");
+						setConstantField({
+							...constantField,
+							dataType: dataType,
+							constantValue: getDefaultConstantValue(dataType)
+						});
+					}
label
en.connectors.labels.dataType
required
true
value
constantField.dataType
dataQa
constant-datatype-selection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setCustomHeaderField({ ...customHeaderField, dataType: dataType });
+					}
label
en.connectors.labels.dataType
required
true
value
customHeaderField.dataType
dataQa
header-datatype-selection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setHeaderDataType(dataType);
+					}
label
en.connectors.labels.dataType
required
true
value
headerDataType
dataQa
header-datatype-selection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dataType"
onChange
({ value: dataType }) => {
+						setConstantDataType(dataType);
+						setDefaultConstantValue(dataType);
+						setConstantNameError("");
+					}
label
en.connectors.labels.dataType
required
true
value
constantDataType
dataQa
header-datatype-selection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
props.label
name
props.name
onChange
(e) => onChangeTrigger(props, e)
value
props.value
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
title
props.title
id
props.id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
sslKeyStoreFormatTypeField
id
sslKeyStoreFormatType
label
en.connectors.labels.sslKeyStoreFormat
name
"sslKeyStoreFormat"
onChange
({ value: sslKeyStoreFormat }) => {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType
+								});
+							}
value
clientCertValues.sslKeyStoreFormat
readOnly
readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environment
name
environment
dataQa
environment
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environment
name
environment
dataQa
environment
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
resourceRoleSelect
name
resourceRoleSelect
dataQa
resourceRoleSelect
disabled
isDisabled
value
role
onChange
(event) => onResourceRoleChange(resourceAssignment, event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
view
inlineLabel
true
label
t({ id: "id_view_by", message: "View by" })
value
view
onChange
handleChangeView
dataQa
"connect-view-by"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
protocol
name
protocol
dataQa
protocol
label
t({ id: "id_protocol", message: "Protocol" })
inlineLabel
true
value
protocolIndex.toString()
onChange
handleProtocolChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
hosturi
name
hosturi
dataQa
hosturi
label
t({ id: "id_hosturi", message: "Host URI" })
inlineLabel
true
value
hostUri
onChange
handleHostUriChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
selectedTracingProfileId
data-qa
selectedTracingProfileId
inlineLabel
true
label
t({ id: "id_tracing_destination", message: "Tracing Destination" })
value
selectedTracingProfileId
required
true
hasErrors
!selectedTracingProfileId && isSubmitted
helperText
selectedTracingProfileId || !isSubmitted ? "" : t({ id: "id_dt_select_tracing_dest", message: "Required. Select a tracing destination." })
onChange
(event) => setSelectedTracingProfileId(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceClass
name
serviceClass
dataQa
serviceClass
value
serviceClass.value
onChange
handleServiceClassChange
hasErrors
hasServiceClassErrors
helperText
serviceClassErrorText
label
isSAP ? t({ id: "id_service_class", message: "Service Class" }) : t({ id: "id_connections", message: "Connections" })
disabled
activeServiceClasses.length === 0
readOnly
readOnly
required
true
inlineLabel
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceClass
name
serviceClass
dataQa
serviceClass
value
serviceClass.value
onChange
handleServiceClassChange
hasErrors
hasServiceClassErrors
helperText
serviceClassErrorText
label
isSAP ? t({ id: "id_service_class", message: "Service Class" }) : t({ id: "id_connections", message: "Connections" })
disabled
activeServiceClasses.length === 0
readOnly
readOnly
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerFamilyVersion
name
brokerFamilyVersion
dataQa
brokerFamilyVersion
hasErrors
hasErrors
helperText
errorText
readOnly
readOnly
value
value
disabled
disabled
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerVersion
name
brokerVersion
dataQa
brokerVersion
hasErrors
hasErrors
helperText
errorText
readOnly
readOnly
value
value
disabled
disabled
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloud
name
cloud
dataQa
cloud
value
value
onChange
handleChange
hasErrors
hasErrors
helperText
errorText
disabled
cloudDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
resourceRoleSelect
name
resourceRoleSelect
dataQa
resourceRoleSelect
disabled
isDisabled
value
role
onChange
(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
20rem
id
userGroupDropdownId
name
userGroupDropdown
dataQa
userGroupDropdownQa
onChange
handleSelectedUserGroupRole
title
User Group Select
value
selectedUserGroupRole
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.timeRange
name
timeRange
onChange
(e) => handleFilterChange(e)
title
Time Range
value
filters.timeRange.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.status
name
status
onChange
(e) => handleFilterChange(e)
title
Status
value
filters.status.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.category
name
category
onChange
(e) => handleFilterChange(e)
title
Category
value
filters.category.value
id
categoryFilter
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
!filters.category.value
label
en.auditLogs.event
name
event
onChange
(e) => handleFilterChange(e)
title
Event
value
filters.event.value
helperText
!filters.category.value ? en.auditLogs.selectCategory : ""
id
eventFilter
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environment
name
name
label
environments.moveDialogLabels.destinationEnvironment
value
value || ""
onChange
(e) => onChange(e.value)
required
true
hasErrors
!!error
helperText
error?.message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
readOnly
!!readOnly
value
value || ""
onChange
(e) => onChange(e.value)
hasErrors
!_.isEmpty(error)
helperText
error?.message
dataQa
dataQa ?? name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
readOnly
!!readOnly
value
value
onChange
(e) => onChange(e.value)
hasErrors
!_.isEmpty(error)
helperText
error?.message
dataQa
dataQa ?? name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
readOnly
!!readOnly
value
value || ""
onChange
(e) => onChange(e.value)
hasErrors
!_.isEmpty(error)
helperText
error?.message
dataQa
dataQa ?? name
getOptionDisplayValue
(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
270px
data-qa
searchBySelect
name
searchBySelect
value
searchByOption
onChange
handleSearchByOptions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
250px
name
eolStatus
label
End of Life Status
dataQa
eolStatusSelect
value
endOfLifeStatus
onChange
(event) => setEndOfLifeStatus(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
270px
data-qa
searchBySelect
name
searchBySelect
value
searchByOption
onChange
handleSearchByOptions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
t.profile
name
`artifactResources_${t.profile}`
readOnly
true
label
`Version in Datadog Sub-Org (${t.profile}):`
value
t.version || ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
artifactResource
readOnly
true
label
Latest Version:
value
artifactVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
search
label
Filter By
name
filter by
width
250px
onChange
(e) => setSearch(e.value as FilterKey)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
pageSize.toString()
label
Page Size
name
page size
width
125px
onChange
(event) => {
+							setPageNumber(1);
+							setPageSize(parseInt(event.value));
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
attribute
value
attribute
onChange
(event) => setAttribute(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
comparison
value
operator
onChange
(event) => setOperator(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
hasErrors
!!error
onChange
(event) => onChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
(event) => onChange(event.value)
maxHeight
"40vh"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
(event) => onChange(event.value)
disabled
isLoading
maxHeight
"30vh"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value
onChange
(event) => onChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
value
value ?? "preview"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
label
createBizOrganization.products.rateSet
id
prodRateSet
name
prodRateSet
onChange
handleProdRateSetChange
value
rateSetValues ? prodRateSetValue : ""
dataQa
prodRateSetDropdownQa
readOnly
readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
label
createBizOrganization.products.productConsumptionType
id
productConsumptionType
name
productConsumptionType
onChange
handleProdConsumptionChange
value
productType
width
450px
dataQa
productConsumptionDropdownQa
readOnly
productDrawdown.readonly || productSubscriptions.readonly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
organizationType
id
organizationType
onChange
inputHandler
width
80%
disabled
!!validationErrors
title
createBizOrganization.orgDetails.accountType
dataQa
accountTypeDropdown
hasErrors
(orgDetails["organizationType"].isEdited || !isSaveAllowed) &&
+							orgDetails["organizationType"].errors.validationErrors.concat(
+								orgDetails["organizationType"].errors.inputErrors
+							).length > 0
helperText
validationErrors
+								? ""
+								: orgDetails["organizationType"].errors.validationErrors.concat(
+										orgDetails["organizationType"].errors.inputErrors
+								  )[0]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
label
Page Size
name
pageSize
width
200px
value
pageSize.toString()
onChange
(event) => {
+							setPageNumber(1);
+							setPageSize(parseInt(event.value));
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
label
Page Size
name
pageSize
width
200px
value
pageSize.toString()
onChange
(event) => {
+							setPageNumber(1);
+							setPageSize(parseInt(event.value));
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
availableVersions
id
availableVersions
width
100%
onChange
inputHandler
title
Available Versions
dataQa
availableVersions
+
+ +
+
+ +
+
+
+ SolaceCheckBox + 99 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui45
intgmaas-ui1
mcmaas-ui9
saasmaas-ui27
maas-ops-reactmaas-ops-ui17
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name98
checked94
onChange86
dataQa81
label72
id30
readOnly22
disabled11
hasErrors11
helperText11
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (99)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
value
dataQa
eventBroker[kafka][schemaRegistry][tls]
disabled
disabled
id
schemaRegistry[tls]
label
eventBrokerFormFieldLabels.addTLS
name
name
onChange
(e) => {
+												onChange(e.value);
+
+												if (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);
+											}
readOnly
readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
isTLSChecked
dataQa
schemaRegistry[tls]
id
schemaRegistry[tls]
label
eventBrokerFormFieldLabels.addTLS
name
name
onChange
(e) => {
+									onChange(e.value);
+
+									if (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);
+								}
disabled
readOnly || loading || kafkaDelimiterIsNotSet
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.name
name
option.name
checked
namingStrategy[option.name]
onChange
handleCheckboxChange
dataQa
option.name
label
option.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.value
name
option.name
checked
checkedItems[option.value]
onChange
handleCheckboxChange
dataQa
option.name
disabled
optionDisabled(option, selectedMessagingService)
label
option.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
subscribeToEvent
onChange
(e) => {
+									if (eventFlowError) {
+										setEventFlowError(null);
+									}
+
+									setSubscribeToEvent(e.value);
+								}
checked
subscribeToEvent
readOnly
isSubscribeReadOnly
dataQa
addEventToApplicationSubscribeToEvent
label
Subscribe to Event
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
publishEvent
onChange
(e) => {
+									if (eventFlowError) {
+										setEventFlowError(null);
+									}
+
+									setPublishEvent(e.value);
+								}
checked
publishEvent
readOnly
isPublishReadOnly
dataQa
addEventToApplicationPublishEvent
label
Publish Event
hasErrors
!!eventFlowError
helperText
eventFlowError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"keepParent"
dataQa
"keepEntityCheckbox"
onChange
(e) => handleKeepParentChange(e.value)
subTextProps
{ label: `Creates a new version of the ${entityType}`, light: true }
checked
keepParent
label
`I want to keep the ${entityType}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
checkboxName ?? "customhookCheckbox"
dataQa
dataQa ?? ""
label
label
checked
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.applicationDomain
label
FilterTypeLabel.applicationDomain
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.applicationDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.state
label
FilterTypeLabel.state
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.state
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.shared
label
FilterTypeLabel.shared
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.shared
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.brokerType
label
FilterTypeLabel.brokerType
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.brokerType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.eventMesh
label
FilterTypeLabel.eventMesh
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.eventMesh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
FilterType.applicationType
label
FilterTypeLabel.applicationType
checked
true
readOnly
true
dataQa
dataQa + "-" + FilterType.applicationType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
filterType
label
FilterTypeLabel[filterType]
checked
currentFilters.includes(filterType)
onChange
(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)
dataQa
dataQa + "-" + filterType
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
filterType
label
renderCheckboxLabel(customAttributes[0].name)
checked
!!selectedFilters.find((filter) => filter.type === filterType)
dataQa
dataQa + "-" + filterType
onChange
(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
broker
label
Broker
onChange
handleBrokerOnChange
checked
!!brokerEnabled && !toDisableBrokerScan()
subTextProps
{
+						label: "Discover consumer groups and topics.",
+						light: true
+					}
disabled
toDisableBrokerScan()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
confluentSchemaRegistry
label
Confluent Schema Registry
onChange
handleSchemaRegistryOnChange
checked
!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()
subTextProps
{
+						label: "Discover schemas from Confluent.",
+						light: true
+					}
disabled
toDisableSchemaRegistryScan()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Show only the modeled event meshes I can access
name
Filter By Access
checked
filterByAccess
onChange
toggleFilterByAccessOnChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"dontShowConfirmBoxCheckbox"
label
`Don't show this message again.`
checked
!showDialogAgain
dataQa
"dontShowConfirmBox-checkbox"
onChange
(event) => setShowDialogAgain(!event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"requiredConfirmBoxCheckbox"
label
"Require confirmation"
checked
showConfirmDialogBox
dataQa
"requiredConfirmBox-checkbox"
onChange
(event) => handleRequireConfirmCheckbox(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"hideAuditResults"
label
`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`
checked
showHiddenAudits !== "false"
dataQa
"hideAuditResults-checkbox"
onChange
(event) => handleHideTagCheckbox(event.value)
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`checkDomain-${item.id}`
dataQa
`checkDomain-${item.id}`
onChange
(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)
checked
checked
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"selectAllDomains"
dataQa
"selectAllDomainsCheckbox"
onChange
onAllDomainsCheck
checked
isChecked
indeterminate
isChecked && selectedDomainIds.length !== items.length
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
dataQa
enumeration[shared]
label
Allow Enumeration to be shared across application domains
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+										setIsDirty(true);
+										onChange(e.value);
+									}
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`
dataQa
`${entityType}[shared]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.name
name
option.name
checked
namingStrategy[option.name]
onChange
handleNamingStrategyChange
dataQa
option.name
label
option.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
en.eventApi.labels.sharedCheckbox
dataQa
"eventApi[shared]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
en.eventApiProduct.labels.sharedCheckbox
dataQa
"eventApiProduct[shared]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									onSharedChange?.(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
checked
value || false
label
Allow schema to be shared across application domains
dataQa
"schema[shared]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
onlyShowEventsWithoutSubscription
onChange
(e) => {
+						setOnlyShowEventsWithoutSubscription(e.value);
+					}
checked
onlyShowEventsWithoutSubscription
label
Show events without a consumer subscription
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error ? error.message : null
checked
value
dataQa
uniqueTopicAddressEnforcementEnabled
label

+										All topic addresses within this application domain must be unique
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									setTopicDomainEnforcement(e.value);
+								}
disabled
!value && !hasValidTopicDomain
hasErrors
!!error
helperText
error ? error.message : null
checked
value
dataQa
topicDomainEnforcementEnabled
label

+										All topic addresses within this application domain must use a topic domain
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+								}
hasErrors
!!error
helperText
error ? error.message : null
checked
value
dataQa
nonDraftDescriptionsEditable
label
Allow object descriptions to be editable in all lifecyle states
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"applicationDomain[uniqueTopicAddressEnforcementEnabled]"
checked
domainValues?.uniqueTopicAddressEnforcementEnabled
dataQa
"uniqueTopicAddressEnforcementEnabled"
label

+											All topic addresses within this application domain must be unique
+										
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"applicationDomain[topicDomainEnforcementEnabled]"
checked
domainValues?.topicDomainEnforcementEnabled
dataQa
topicDomainEnforcementEnabled
label

+											All topic addresses within this application domain must use a topic domain
+										
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"applicationDomain[nonDraftDescriptionsEditable]"
checked
domainValues?.nonDraftDescriptionsEditable
dataQa
nonDraftDescriptionsEditable
label
Allow object descriptions to be editable in all lifecyle states
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+									onChange(e.value);
+									onSharedChange?.(e.value);
+								}
checked
value || false
label
Allow event to be shared across application domains
dataQa
"event[shared]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => onChange(e.value)
checked
value || false
disabled
sharedSchema
label
Allow schema to be shared across application domains
dataQa
"schema[shared]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+										onChange(e.value);
+										handleSharedChanged(e.value);
+									}
checked
value || false
label
Allow event to be shared across application domains
dataQa
"event[shared]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+										if (eventFlowError) {
+											setEventFlowError(null);
+										}
+
+										onChange(e.value);
+									}
checked
value || false
dataQa
subscribeToEvent
label
Subscribe to Event
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
onChange
(e) => {
+											if (eventFlowError) {
+												setEventFlowError(null);
+											}
+
+											onChange(e.value);
+										}
checked
value || false
dataQa
publishEvent
label
Publish Event
hasErrors
!!eventFlowError
helperText
eventFlowError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
filter.value
name
filter.name
checked
filtersMap[application?.id]?.[filter.value]
label
filter.name
onChange
() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])
dataQa
`environment-filters-${filter.value}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"doNotShowAgain"
label
"Do not show this warning again"
onChange
handleCloseInfoMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
props.name
label
props.label
onChange
(e) => props.onChange(e.value)
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
checked
props.value
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
checked
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_mc_manager", message: "Rotate Mission Control Manager permissions" })
name
mc_manager
checked
usernames.includes("manager")
onChange
handleManagerChange
dataQa
checkbox_mc_manager
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_mc_editor", message: "Rotate Mission Control Editor permissions" })
name
mc_editor
checked
usernames.includes("admin")
onChange
handleEditorChange
dataQa
checkbox_mc_editor
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_mc_viewer", message: "Rotate Mission Control Viewer permissions" })
name
mc_viewer
checked
usernames.includes("viewer")
onChange
handleViewerChange
dataQa
checkbox_mc_viewer
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showMyServices
name
showMyServices
dataQa
services-show-mine
label
t({ id: "id_only_my_services", message: "Only show my services" })
checked
userOnly
onChange
handleSetUserOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showDiffs
name
showDiffs
label
t({ id: "id_show_differences", message: "Show only differences" })
checked
showDiffs
onChange
handleShowDiffs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
mateLinkEncryption
name
mateLinkEncryption
dataQa
mateLinkEncryption
label
t({ id: "id_mate_link_label", message: "Enable mate-link encryption" })
boldLabel
true
subTextProps
{
+						label: t({ id: "id_mate_link_text", message: "This will encrypt the communication between the primary and backup brokers in a HA setup." }),
+						light: true
+					}
checked
value
readOnly
isCloning
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
cloneCertificateAuthorities
dataQa
cloneCertificateAuthorities
name
cloneCertificateAuthorities
label
t({ id: "id_clone_cert_auth", message: "Duplicate all Client and Domain Certificate Authorities" })
boldLabel
true
subTextProps
{
+					label: This will copy all certificates existing on the source event broker service to the new event broker service.,
+					light: true
+				}
checked
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
nameCheck
name
nameCheck
dataQa
nameCheck
label

+							{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: "id_port_label", message: `Enable ${meta.label}, use port:` })}
+						
boldLabel
true
checked
!disabled
readOnly
checkboxDisabled || !isPortDisablingEnabled
onChange
handleProtocolToggle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
confirmDeleteCheckbox
label
en.environments.labels.confirmDeleteEnvironment
name
confirmDeleteCheckbox
onChange
handleConfirmDelete
checked
confirmDelete
dataQa
confirmDeleteCheckbox
disabled
isDeleting
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceCreationCheckbox
label
en.environments.labels.confirmASEnvironment
name
serviceCreationCheckbox
onChange
handleCheckboxChange
checked
isServiceCreationAllowed
dataQa
serviceCreationCheckbox
disabled
isError || dialogState.updating
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
templateType
name
templateType
dataQa
`${templateType}Checkbox`
label

+							{environments.configurationTemplates[templateType].label}
+						
onChange
updateTemplateTypeEnforcement
checked
templateStatus.isEnforced
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scOutage"].email : false
id
scOutageEmail
name
scOutageEmail
dataQa
scOutageEmail
onChange
(value) => updateNotifyPreferences("scOutage", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scOutage"].console : false
id
scOutageConsole
name
scOutageConsole
dataQa
scOutageConsole
onChange
(value) => updateNotifyPreferences("scOutage", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scMaintenance"].email : false
id
scMaintenanceEmail
name
scMaintenanceEmail
dataQa
scMaintenanceEmail
onChange
(value) => updateNotifyPreferences("scMaintenance", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scMaintenance"].console : false
id
scMaintenanceConsole
name
scMaintenanceConsole
dataQa
scMaintenanceConsole
onChange
(value) => updateNotifyPreferences("scMaintenance", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceOutage"].email : false
id
serviceOutageEmail
name
serviceOutageEmail
dataQa
serviceOutageEmail
onChange
(value) => updateNotifyPreferences("serviceOutage", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceOutage"].console : false
id
serviceOutageConsole
name
serviceOutageConsole
dataQa
serviceOutageConsole
onChange
(value) => updateNotifyPreferences("serviceOutage", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceMaintenance"].email : false
id
serviceMaintenanceEmail
name
serviceMaintenanceEmail
dataQa
serviceMaintenanceEmail
onChange
(value) => updateNotifyPreferences("serviceMaintenance", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["serviceMaintenance"].console : false
id
serviceMaintenanceConsole
name
serviceMaintenanceConsole
dataQa
serviceMaintenanceConsole
onChange
(value) => updateNotifyPreferences("serviceMaintenance", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessApprover"].email : false
id
scEpEventAccessApproverEmail
name
scEpEventAccessApproverEmail
dataQa
scEpEventAccessApproverEmail
onChange
(value) => updateNotifyPreferences("scEpEventAccessApprover", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessApprover"].console : false
id
scEpEventAccessApproverConsole
name
scEpEventAccessApproverConsole
dataQa
scEpEventAccessApproverConsole
onChange
(value) => updateNotifyPreferences("scEpEventAccessApprover", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessRequestor"].email : false
id
scEpEventAccessRequestorEmail
name
scEpEventAccessRequestorEmail
dataQa
scEpEventAccessRequestorEmail
onChange
(value) => updateNotifyPreferences("scEpEventAccessRequestor", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings["scEpEventAccessRequestor"].console : false
id
scEpEventAccessRequestorConsole
name
scEpEventAccessRequestorConsole
dataQa
scEpEventAccessRequestorConsole
onChange
(value) => updateNotifyPreferences("scEpEventAccessRequestor", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings?.["scInfo"].email : false
id
scInfoEmail
name
scInfoEmail
dataQa
scInfoEmail
onChange
(value) => updateNotifyPreferences("scInfo", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings?.["scInfo"].console : false
id
scInfoConsole
name
scInfoConsole
dataQa
scInfoConsole
onChange
(value) => updateNotifyPreferences("scInfo", "console", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
savedSettings ? savedSettings?.["marketing"]?.email : false
id
marketingEmail
name
marketingEmail
dataQa
marketingEmail
onChange
(value) => updateNotifyPreferences("marketing", "email", value.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
jitProvisionCheckboxId
label

+						{userGroupManagement.jitProvisionMainText}
+						{userGroupManagement.jitProvisionSubText}
+					
name
jitProvisionCheckboxId
onChange
(e) => setIsJitProvisioningChecked(e.value)
subTextProps
{
+					label: (
+						
+							
+						
+					)
+				}
checked
isJitProvisioningChecked
title
Enable Just-in-Time provisioning
dataQa
jitProvisionCheckboxId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
customizeDefaultUserGroupCheckboxId
id
customizeDefaultUserGroupCheckboxId
label

+						{userGroupManagement.customizeGroupMainText}
+						{userGroupManagement.customizeGroupSubText}
+					
name
customizeDefaultUserGroupCheckboxId
checked
isCustomizeUserGroupChecked
onChange
(e) => customizeDefaultUserGroupCheck(e.value)
subTextProps
{
+					label: (
+						
+							{isCustomizeUserGroupChecked ? (
+								 {
+										return SolaceSelectAutocompleteItem({
+											name: item.name,
+											subText: item.roles?.join(", "),
+											value: item.name
+										});
+									}}
+									itemMappingCallback={(option) => option}
+									optionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}
+									onChange={handleUserGroupSelectChange}
+									fetchOptionsCallback={handleFetchProtocolOptionsCallback}
+									isOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}
+									width="30rem"
+								/>
+							) : null}
+						
+					)
+				}
title
Customize Default UserGroup
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventMeshCheckbox
dataQa
eventMeshCheckbox
label
en.overview.banner.eventMesh
name
eventMeshCheckbox
onChange
(e) => setIsEventMeshFeatureChecked(e.value)
title
en.overview.banner.eventMesh
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventPortalCheckbox
dataQa
eventPortalCheckbox
label
en.overview.banner.eventPortal
name
eventPortalCheckbox
onChange
(e) => setIsEventPortalFeatureChecked(e.value)
title
en.overview.banner.eventPortal
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(readPermissions)
name
`${categoryName}-read`
checked
readChecked
indeterminate
!readChecked && readIndeterminate
readOnly
!!readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(writePermissions)
name
`${categoryName}-write`
checked
writeChecked
indeterminate
!writeChecked && writeIndeterminate
readOnly
!!readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onPermissionCheckboxChange(permission.id)
name
permission.id
checked
!!isPermissionSelected[permission.id]
readOnly
!!readOnly
dataQa
permission.id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(readPermissions)
name
`${categoryName}-read`
checked
readChecked
indeterminate
!readChecked && readIndeterminate
readOnly
!!readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onChange
onBulkPermissionCheckboxChange(writePermissions)
name
`${categoryName}-write`
checked
writeChecked
indeterminate
!writeChecked && writeIndeterminate
readOnly
!!readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
hideUnusedLimitsRows
onChange
() => setHideUnusedLimitsRows((state) => !state)
name
customers.orgLimitsCard.hideUnusedLimit
title
customers.orgLimitsCard.hideUnusedLimit
data-qa
hideUnusedLimitsCheckboxQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
field.value
onChange
() => field.onChange(!field.value)
name
field.name
title
Datadog Monitoring Enabled Checkbox
boldLabel
true
label
Datadog Monitoring Enabled
subTextProps
{
+									label: "Default for Datadog Monitoring Agent (Enabled/Disabled) when creating new services"
+								}
dataQa
monitoringEnabledCheckbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
field.value
onChange
() => field.onChange(!field.value)
name
field.name
title
Datadog Monitoring Proxy Enabled Checkbox
boldLabel
true
label
Datadog Monitoring Proxy Enabled
subTextProps
{
+									label: "Default for Datadog Monitoring Proxy server (Enabled/Disabled) for services"
+								}
dataQa
monitoringProxyEnabledCheckbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
field.value
onChange
(e) => {
+									setValue("PullDatadogAgentImage", e.value);
+									field.onChange(e.value);
+								}
name
field.name
title
Pull Datadog Agent Image
boldLabel
true
label
Pull Datadog Agent Image
subTextProps
{
+									label: "Forces docker to pull latest datadog-agent image"
+								}
dataQa
PullDatadogAgentImageCheckbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
checked
onChange
() => {
+					row[propertyName] = !row[propertyName];
+				}
name
propertyName
readOnly
readOnly
indeterminate
indeterminate
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
field.value
onChange
() => {
+										field.onChange(!field.value);
+										// update button should only show if there is a change in rmms status
+										setShowRMMSUpdateButton(
+											ddOrgData?.apiKey !== undefined && getValues("rmmsManaged") !== monitoringOrgData?.isRMMS
+										);
+									}
name
field.name
title
Managed by RMMS Checkbox
largeLabel
true
label
Managed by RMMS
dataQa
rmmsManaged
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
Automated Upgrades
label
Automated Upgrades
checked
autoChecked
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
Customer Upgrades
label
Customer Upgrades
checked
customerChecked
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
hideCompletedRuns
checked
hideCompletedRuns
dataQa
hide-completed-runs
onChange
() => handleToggleHideCompletedRuns()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
all
label
searchStr.searchArea.types.all
checked
infra && orgs && services && users
onChange
searchIndicesChangeHandler
dataQa
search-all-checkbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
infrastructure
label
searchStr.searchArea.types.infra
checked
infra
onChange
searchIndicesChangeHandler
dataQa
search-infra-checkbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
organization
label
searchStr.searchArea.types.orgs
checked
orgs
onChange
searchIndicesChangeHandler
dataQa
search-orgs-checkbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
service
label
searchStr.searchArea.types.services
checked
services
onChange
searchIndicesChangeHandler
dataQa
search-services-checkbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
user
label
searchStr.searchArea.types.users
checked
users
onChange
searchIndicesChangeHandler
dataQa
search-users-checkbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
useGlobalSearch
label
searchStr.searchArea.useGlobalSearch
checked
globalSearchEnabled
onChange
() => {
+								onGlobalSearchChange(!globalSearchEnabled);
+								setGlobalSearchEnabled(!globalSearchEnabled);
+							}
dataQa
enable-global-search-checkbox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
requestCheckbox
label
createBizOrganization.requests.checkBoxLabel
name
requestCheckbox
data-qa
requestCheckboxQa
onChange
({ value }) => setIsAdvancedInsightsChecked(value)
subTextProps
{
+						label: `${createBizOrganization.requests.productCode}`,
+						light: true
+					}
title
createBizOrganization.requests.checkBoxTitle
disabled
isFieldReadOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
isAdvancedInsightSelected ? true : false
readOnly
true
label
{createBizOrganization.requests.checkBoxLabel}
name
advInsights
title
Advanced Insights Checkbox
+
+ +
+
+ +
+
+
+ SolaceAccordion + 86 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui52
intgmaas-ui4
mcmaas-ui12
saasmaas-ui7
maas-ops-reactmaas-ops-ui11
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
summary86
details86
expanded86
onChange86
dataQa52
border39
key27
backgroundColor11
hover8
indicatorVariant6
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (86)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
getEntityDetailsTitle
details
getEntityDetailsPanel
dataQa
`${entityType}DetailsAccordion`
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
summary
getSummary(group, item, messages.preview.noChange, null, null)
details
getDetails(item, group)
expanded
accordionOpenStatus[key]
onChange
() => handleChangeAccordion(key)
border
false
dataQa
key
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
applicationsToDelete
expanded
applicationsExpanded
onChange
handleApplicationClick
summary
renderEntitySummary("Application Domains", appDomains.length)
details
renderEntityDetails(appDomains)
dataQa
applicationsToDelete
border
false
disablePadding
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
memsToDelete
expanded
memsExpanded
onChange
handleMEMClick
summary
renderEntitySummary("Modeled Event Meshes", mems.length)
details
renderEntityDetails(mems)
dataQa
memsToDelete
border
false
disablePadding
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
environmentsToDelete
expanded
environmentsExpanded
onChange
handleEnvironmentClick
summary
renderEntitySummary("Environments", environments.length)
details
renderEntityDetails(environments)
dataQa
environmentsToDelete
border
false
disablePadding
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEventVersionDetails
summary
getEventDetailsTitle
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.background.default
onChange
() => toggleAccordion()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
entityType ? `customAttributes-${entityType}-accordion` : null
hover
true
expanded
expanded
onChange
() => setExpanded(!expanded)
summary

+						{`Custom Attributes (${count})`}
+						
+							
+								
+							
+						
+					
details
<>
+						{" "}
+						{errorMsg && (
+							
+								
+								{errorMsg}
+							
+						)}
+						{!errorMsg && <>{customAttributeValueList}}
+					
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
Appearance
details

+							{formMethods && (
+								
+							)}
+							
+						
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
entityAppearance
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
summary
details
details
expanded
isErrorDetailsExpanded
onChange
(event, expanded) => errorDetailsMessageExpandHandler(expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
summary
details
details
expanded
isErrorDetailsExpanded
onChange
(event, expanded) => errorDetailsMessageExpandHandler(expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
renderAccordionSummary()
details
renderAccordionDetails(associatedEnvironmentList)
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
eventApiProductVersion.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
renderAccordionDetail()
dataQa
dataQa ?? `eap-${eventApiProductVersion.id}`
hover
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
item.environmentId
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
renderAccordionDetail()
dataQa
dataQa ?? `messagingService-${item.environmentId}`
indicatorVariant
environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? "error" : undefined
hover
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
item.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
accordionDetails
indicatorVariant
indicatorVariant ?? null
dataQa
dataQa ?? null
hover
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+						{title}
+						
+ handleDownloadFile(evt, details, emaType, downloadButtonId)} + > + + + handleCopyFile(evt, details, emaType, copyButtonId)} + > + + +
+
details
{details}
onChange
() => onToggle()
expanded
expanded
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+							Connection File Details
+							
+ handleDownloadFile(evt)}> + Download + + + Copy + +
+
details
{confFileContent}
onChange
() => handleChange("confFile")
expanded
isExpanded
dataQa
connectionFileDownloadDialog
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.background.default
border
false
dataQa
EmaPreflightCheckListAccordion
details
renderSummary(emaMode)
expanded
isOpen
onChange
toggle
summary
renderSideInfoBlurbSummary()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
messagingService[Accordion]
summary

+						
+							 onTitleLinkClick(messagingService)}
+								dataQa="messagingService[Accordion][Title]"
+							/>
+							
+								{isCloudBased && } {!messagingService?.eventMeshId && }
+							
+						
+
+						
+							
+								{brokerTypeLabel[messagingService.messagingServiceType] ?? "Solace"}
+							
+							{messagingService.eventManagementAgentId && (
+								,
+										title: "More Actions"
+									}}
+									items={menuItems}
+								/>
+							)}
+							{!messagingService.eventManagementAgentId && (
+								 removeMessagingService(messagingService)} title="Remove" dataQa="removeMessagingService">
+									
+								
+							)}
+						
+					
details
+ Connected Modeled Event Mesh + {eventMesh ? ( + + {eventMesh?.name}{" "} + + + ) : ( + None + )} +
onChange
handleChange
expanded
isExpanded
indicatorVariant
hasIndicator ? "info" : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
demoAccordionList
expanded
serviceAccordionControl[item.id]
onChange
() => handleServiceAccordionControl(item.id)
details
renderAccordionDetail(item)
summary

+										{item.name}
+										{item?.solaceCloudMessagingServiceId && }
+										{isScanInProgress && Discovery Scan in progress}
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
existingMessagingServiceList
summary
renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)
details
renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)
dataQa
existingMessagingServiceList
expanded
expanded
onChange
handleRuntimeAgentExpanded
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dataQa
summary
summaryElement
details
details
expanded
expanded
onChange
onChange
border
false
dataQa
dataQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
dataQa ?? "importPreviewAccordion"
summary
renderSummary()
details
renderDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
applicationVersion.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
renderDetails()
indicatorVariant
isSelected ? "success" : null
dataQa
dataQa ?? null
hover
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
summary
summary
{summary}
details
details
expanded
expanded
border
false
onChange
onChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEnumVersionDetails
summary
getEnumDetailsTitle
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEventApiProductVersionDetails
summary
getEventApiProductDetailsTitle(selectedEventApiProduct)
details
eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)
expanded
expanded
backgroundColor
theme.palette.ux.background.w20
onChange
onAccordionChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogSchemaVersionDetails
summary
getSchemaDetailsTitle
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogApplicationVersionDetails
summary
getApplicationDetailsTitle()
details
getDetailsPanel(true)
expanded
accordionExpanded
backgroundColor
theme.palette.ux.background.w20
onChange
() => toggleAccordion()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
catalogEventApiVersionDetails
summary
getEventApiDetailsTitle(selectedEventApi)
details
eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)
expanded
expanded
backgroundColor
theme.palette.ux.background.w20
onChange
onAccordionChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
expanded
onChange
handleChange
summary
renderAccordionSummary()
details
disablePadding
true
dataQa
dataQa
backgroundColor
theme.palette.ux.background.w10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
renderAccordionSummary()
details
renderAccordionDetails()
expanded
isExpanded
onChange
handleAccordionClick
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${configurationName}-${type}-${index}-requestHeader`
summary
getRequestHeaderSummary(header, type, index)
details
getRequestHeaderDetails(header, type, index)
expanded
expandedHeaders[expandKey]
onChange
() => {
+					setExpandedHeaders((prev) => {
+						prev[expandKey] = !prev[expandKey];
+
+						return { ...prev };
+					});
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
queueBindingSummary
details
queueBindingDetails
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
queueBindingSummary
details
getQueueBindingDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`restDeliveryPointAccordion`
summary
accordionSummary
details
restConsumers
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
getDomainAccordionSummary(domain)
details
getDomainAccordionDetails(domain)
dataQa
`domainAccordion-${domain.id}`
expanded
expandedDomainMap[domain.id] === true
onChange
() => onAccordionChange(domain.id, expandedDomainMap)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"importDomainValidationAccordion"
dataQa
importDomainValidationAccordion
summary
customAttributeValidations?.validationMessage
details
customAttributeValidations?.validations
expanded
expanded
onChange
() => setExpanded(!expanded)
backgroundColor
theme.palette.ux.background.w20
border
false
square
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`newNodeAccordion-${brokerType.value}`
key
brokerType.value
border
false
expanded
dragNDropPanelExpansions[brokerType.value]
onChange
() =>
+						setDragNDropPanelExpansions((prev) => {
+							const newState = { ...prev };
+
+							newState[brokerType.value] = !prev[brokerType.value];
+
+							return newState;
+						})
summary
{`${brokerType.label} Objects`}
details

+							
+								 {
+										onNodeClick(e, DraggableNewNodeId[brokerType.value].application);
+									}}
+								>
+									
+									New Application
+								
+							
+							
+								 {
+										onNodeClick(e, DraggableNewNodeId[brokerType.value].event);
+									}}
+								>
+									
+									New Event
+								
+							
+							
+								 {
+										onNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);
+									}}
+								>
+									
+									Shared Event
+								
+							
+							
+								{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (
+									
+										
+									
+								)}
+								{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (
+									
+										
+									
+								)}
+								{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (
+									
+										
+									
+								)}
+							
+						
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
Conflicting Objects
details
conflictingObjects
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
renderAccordionSummary()
details
renderAccordionDetails()
expanded
expanded
onChange
() => handleExpandClick()
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${consumer.name}-consumerAccordion`
summary
renderAccordionSummary()
details
renderAccordionDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
getAccordionSummary()
details
getAccordionDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
`${topicDomain.length} affected Topic Domains`
details

+							{topicDomain.map((topicDomainEntry) => (
+								
+ + + + {duplicate && ( + + Used in + {topicDomainEntry?.applicationDomains?.map(({ name }) => ( + +
+ +
+
+ ))} + {renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)} +
+ )} +
+ ))} +
expanded
accordionExpanded
onChange
() => toggleAccordion()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"topicAddressHelp"
details
summary

+									Tips and Tricks for Topic Addresses
+									
+										
+									
+								
expanded
expandTopicAddressHelp
onChange
() => setExpandTopicAddressHelp(!expandTopicAddressHelp)
backgroundColor
theme.palette.background.default
square
false
border
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
border
true
expanded
expanded
onChange
handleAccordianClick
summary
renderAccordionSummary()
details
renderAccordionDetail()
hover
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
request.id
expanded
expanded
onChange
handleItemClick
summary
renderAccordionSummary()
details
accordionDetails
indicatorVariant
indicatorVariant ?? null
dataQa
dataQa ?? null
hover
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${application.applicationName}-events`
summary
{"Published Events"}
details
getDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
application.applicationName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${application.applicationName}-subscriptions`
summary
{"Subscribed Events"}
details
getDetails()
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
application.applicationName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
applicationDomainName
summary

+						{messages.applicationDomain.label}
+						{applicationDomainName}
+					
details
getDetails(applications)
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
applicationDomainName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
connectorTypeDetails?.name ?? ""
border
false
details
{renderVendorConfigurationDetails()}
expanded
showSourceDetails
onChange
() => setShowSourceDetails(!showSourceDetails)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
"Solace"
border
false
details

+						
+							
+								{en.connectors.labels.eventBrokerService}
+							
+							{(serviceDetails?.name && (
+								
+									{serviceDetails.name}
+								
+							)) || {"-"}}
+						
+						
+							
+								{en.connectors.labels.bindingDestination}
+							
+							{getConnectorSummaryValue(solaceDestination)}
+						
+					
expanded
showTargetDetails
onChange
() => setShowTargetDetails(!showTargetDetails)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
en.connectors.labels.advancedAuthenticationProperties
dataQa
advancedAuthenticationPropsAccordion
border
false
expanded
expanded
onChange
() => setExpanded(!expanded)
details

+						 {
+								setOauthValues({
+									...oauthValues,
+									scopes: scopes
+								});
+							}}
+						/>
+						 {
+								setOauthValues({
+									...oauthValues,
+									clientName: clientName
+								});
+							}}
+						/>
+					
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
en.connectors.labels.advancedAuthenticationProperties
dataQa
advancedAuthenticationPropsAccordion
border
false
expanded
expanded
onChange
() => setExpanded(!expanded)
details

+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType
+								});
+							}}
+							value={clientCertValues.sslKeyStoreFormat}
+							readOnly={readOnly}
+						>
+							{sslKeyStoreFormatTypes.map((option, index) => {
+								return (
+									
+										{option}
+									
+								);
+							})}
+						
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslKeyStorePassword: sslKeyStorePassword
+								});
+							}}
+							type={showSslKeyStorePassword ? "text" : "password"}
+							endAdornment={[
+								 setShowSslKeyStorePassword(!showSslKeyStorePassword)}
+								>
+									{showSslKeyStorePassword ?  : }
+								
+							]}
+						/>
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyAliasName: sslPrivateKeyAliasName
+								});
+							}}
+						/>
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									sslPrivateKeyPassword: sslPrivateKeyPassword
+								});
+							}}
+							type={showSslPrivateKeyPassword ? "text" : "password"}
+							endAdornment={[
+								 setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}
+								>
+									{showSslPrivateKeyPassword ?  : }
+								
+							]}
+						/>
+						 {
+								setClientCertValues({
+									...clientCertValues,
+									clientUsername: clientUsername
+								});
+							}}
+							onBlur={() => {
+								if (isEmpty(clientCertValues.clientUsername)) {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(
+											en.connectors.labels.clientUsername
+										)
+									});
+								} else {
+									setSolaceValidationErrors({
+										...solaceValidationErrors,
+										clientCertUsername: ""
+									});
+								}
+							}}
+							hasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}
+							helperText={
+								!readOnly
+									? solaceValidationErrors.clientCertUsername && validationEnabled
+										? solaceValidationErrors.clientCertUsername
+										: en.connectors.helperText.clientUsername
+									: undefined
+							}
+						/>
+					
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
t({ id: "id_spool_resource_calc", message: "Expanded Spool Size Billing" })
expanded
showCalculations
onChange
handleShowCalculations
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
expanded
expanded[id]
summary
onChange
handleExpanded
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
border
true
square
false
dataQa
client-profile-advanced-settings
summary
t({ id: "id_advanced_settings", message: "Advanced Settings" })
details
expanded
advancedSettings
onChange
(_, expanded) => setAdvancedSettings(expanded)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${endpoint.id}Accordion`
key
endpoint.id
border
false
summary

+										
+											
+												{endpoint.name}
+												{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }
+											
+										
+										{i18n._(accessTypes[endpoint.accessType])}
+										{endpoint.description}
+										
+											,
+													title: t({ id: "id_actions", message: "Actions" }),
+													variant: "icon"
+												}}
+												dataQa="actions"
+												id={`public_actions`}
+												items={[
+													{
+														name: t({ id: "id_edit", message: "Edit" }),
+														disabled: !allowServiceQueries,
+														onMenuItemClick: () => handleEditEndpoint(index)
+													},
+													{
+														name: t({ id: "id_delete", message: "Delete" }),
+														disabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,
+														onMenuItemClick: () => setShowDeleteDialog(endpoint)
+													}
+												]}
+											/>
+										
+									
details
+
+ + Protocols + Status + Port + + +
+ + {protocols.map((port) => { + const value = ports.get(port.protocol); + return ( + + {port.label} + {value?.port ? "Enabled" : "Disabled"} + {value?.port ? value.port : "-"} + + + ); + })} + +
expanded
expandPublicEndpoint[index]
onChange
(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
t({ id: "id_used_by_n_services", message: plural(cluster?.serviceNames.length ?? 0, { one: "Used by # service", other: "Used by # services" }) })
expanded
expanded
onChange
() => setExpanded(!expanded)
border
false
dataQa
cluster-name-services
details
<>
+								{cluster.serviceNames.map((serviceName) => (
+									
{serviceName}
+ ))} +
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+								
+									
+										Step 1: Configuration on the Event Broker
+									
+								
+							
details
+ + You must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{" "} + + Open Broker Manager's Telemetry + + +
border
false
dataQa
step-1-accordion
expanded
expandStep1
onChange
handleExpandStep1Click
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+								
+									
+										Step 2: Trace Collection
+									
+									
+								
+								
+									
+										Check Status
+									
+									
+										{isConfigured ? Update Configuration : Deploy Configuration}
+									
+								
+							
details
+ {distributedTracingStatus === "notConfigured" || distributedTracingStatus === "pending" || !telemetryProfileName ? ( + <> + {distributedTracingStatus === "pending" ? ( + + ) : ( +
+ Data Collection is not configured. +
+ )} + + ) : ( + + {collectorRunningStatus === "success" && } + {collectorRunningStatus === "error" && } + {collectorRunningStatus === "pending" && ( + + )} + {brokerConnectionStatus === "success" && ( + + )} + {brokerConnectionStatus === "error" && } + {brokerConnectionStatus === "pending" && ( + + )} + + + + + + + + + + + )} +
border
false
dataQa
step-2-accordion
expanded
expandStep2
onChange
handleExpandStep2Click
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
section.label
expanded
expanded[index]
summary
section.label
onChange
() => handleSection(index)
details
{renderProperties(section.data, section.properties)}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+						Advanced Connection Options
+					
dataQa
advanced_connection_options
expanded
showAdvancedProps
onChange
handleShowAdvancedProps
border
false
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary

+						Clone Options
+					
dataQa
clone_options
expanded
showCloneProps
onChange
handleShowCloneProps
border
false
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
expanded
showEndpoints
onChange
handleShowEndpoint
square
false
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
summary
expanded
expanded
onChange
handleExpanded
border
false
indicatorVariant
state.showError ? "error" : state.showWarning ? "warn" : undefined
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
brokerSSONestedAccordion
onChange
() => toggleBrokerAccordion()
summary
en.brokerSSOConfig.instructionsText
expanded
isBrokerAccordionExpanded
details

+							
+								1. Click Manage Brokers, then select which event broker services to
+								enable to use Broker SSO. 
+ 2. Click Enable SSO. +
+ 3. Click Copy Broker URIs.
+ 4. Add the URIs you've copied to your identity provider. +
+ 5. After you complete these steps for your event broker services, you can use SSO to access them. +
+
+ + Troubleshooting tip +

+ If a broker has more than one URI, the URIs are copied as comma-separated list. If your identity + provider does not support this format, manually enter each URI separately. +

+
+
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
summary
expanded
expanded[index]
onChange
() => handleExpanded(index)
border
true
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
usersAccordion
onChange
handleChange
summary
renderUserSummary(0)
details

+									
+										
+											{usersList.map((user, index) => {
+												return (
+													
+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}
+																	
+																	
+																		{user.firstName ? `${user.firstName} ${user.lastName}` : "-"}
+																	
+																
+																
+																	
+																		{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}
+																	
+																	{user.email}
+																
+															
+														}
+														placement="bottom"
+													>
+														
+ +
+
+ ); + })} +
+
+ {isLoading && ( + + + + )} + {hasMore && !showMore && !isLoading && ( + + + {userGroups.viewDetailsDialog.usersDropdown.showMore} + + + )} + {showMore && ( + + + {userGroups.viewDetailsDialog.usersDropdown.showLess} + + + )} +
expanded
isExpanded
border
false
disablePadding
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
openAuditFilterOptionsSection
details

+						
+							 handleFilterChange(e)}
+								title="Time Range"
+								value={filters.timeRange.value}
+							>
+								{timeRangeLabels?.map(({ label, value }, index) => (
+									
+										{label}
+									
+								))}
+							
+							 handleFilterChange(e)}
+								title="Status"
+								value={filters.status.value}
+							>
+								{statusLabels?.map(({ label, value }, index) => (
+									
+										{label}
+									
+								))}
+							
+							 handleFilterChange(e)}
+								title="Category"
+								value={filters.category.value}
+								id="categoryFilter"
+							>
+								{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (
+									
+										{item.category}
+									
+								))}
+							
+							{autoCompleteField()}
+							 handleFilterChange(e)}
+								title="Event"
+								value={filters.event.value}
+								helperText={!filters.category.value ? en.auditLogs.selectCategory : ""}
+								id="eventFilter"
+							>
+								{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (
+									
+										{item.description}
+									
+								))}
+							
+						
+					
onChange
() => setShowFilterOptions((state) => !state)
expanded
showFilterOptions
summary

+						
+							{en.auditLogs.filters}
+							
+								{selectedFilters?.map((filter, index) => (
+									 deleteFilter(filter.key)}
+									/>
+								))}
+								{selectedFilters.length > 0 ? (
+									
+										{en.auditLogs.clearAll}
+									
+								) : null}
+							
+						
+					
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
token.id
expanded
expanded
onChange
onChange
summary
renderAccordionSummary()
details
renderAccordionDetails()
square
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
isExpanded
onChange
onChange
summary
`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`
details
<>{renderDetails(false)}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
isExpanded
onChange
handleChange
summary
renderAccordionSummary()
details
renderAccordionDetails()
dataQa
tokenDetailsAccordion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
result.role
dataQa
agentStatus
details
summary

+											{result.role}
+										
onChange
() => handleExpandChange(result.role)
expanded
expandStates[result.role]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
border
false
dataQa
datadogIntegrationsAccordion
summary
"Datadog Integrations"
details

+										 {}}
+											selectionType={SELECTION_TYPE.NONE}
+											minHeight="fit-content"
+										/>
+									
expanded
datadogIntegrationsExpand
onChange
() => setDatadogIntegrationsExpand(!datadogIntegrationsExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
manuallyConfigureLogFacetsAccordion
expanded
manuallyConfigureLogExpand
onChange
() => setManuallyConfigureLogExpand(!manuallyConfigureLogExpand)
summary

+										Manually configure Log Facets in{" "}
+										
+											Datadog
+										
+									
details
<>
+										Facets List to create in Datadog:
+										
+											 {}}
+												selectionType={SELECTION_TYPE.NONE}
+												minHeight="fit-content"
+											/>
+										
+									
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hover
true
disabled
loading
expanded
isExpanded
onChange
handleAccordionChange
details
summary

+						Upgrade Run Details
+					
dataQa
upgrade-run-details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
sidekickDeploymentInfoExpand
summary
+ Connector Deployment Info + event.stopPropagation()}> + handleSidekickDeploymentDetailsRefresh()} + isDisabled={refreshDetailsInProgress} + > + {refreshDetailsInProgress ? ( + + ) : ( + + )} + + +
details
onChange
() => setSidekickDeploymentInfoExpand(!sidekickDeploymentInfoExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
sidekickDeploymentStatusExpand
summary
+ Connector Deployment Status + event.stopPropagation()}> + handleSidekickDeploymentStatusRefresh()} + isDisabled={refreshStatusInProgress} + > + {refreshStatusInProgress ? ( + + ) : ( + + )} + + +
details
onChange
() => setSidekickDeploymentStatusExpand(!sidekickDeploymentStatusExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
serviceInfoExpand
summary
Associated Service
details
onChange
() => setServiceInfoExpand(!serviceInfoExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
sidekickDeploymentDetailsExpand
summary
Connector Deployment Details
details
onChange
() => setSidekickDeploymentDetailsExpand(!sidekickDeploymentDetailsExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
collectorInfoExpand
summary
+ Collector Info + event.stopPropagation()}> + + {refreshInProgress ? ( + + ) : ( + + )} + + +
details
onChange
() => setCollectorInfoExpand(!collectorInfoExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
serviceInfoExpand
summary
Associated Service
details
onChange
() => setServiceInfoExpand(!serviceInfoExpand)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
expanded
collectorConfigExpand
summary
Collector Configuration
details
 getCollectorConfig({ infrastructureId: service?.infrastructureId as string })}
+							/>
onChange
() => setCollectorConfigExpand(!collectorConfigExpand)
+
+ +
+
+ +
+
+
+ SolaceMenu + 68 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui42
intgmaas-ui2
mcmaas-ui13
saasmaas-ui8
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
buttonProps68
items68
anchorOrigin38
transformOrigin38
dataQa27
id23
key12
closeOnSelect5
numOfMenuItemDisplayed2
maxWidth1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (68)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+												variant: "text",
+												children: "Add Protocol"
+											}
items
solaceAddProtocolMenuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							variant: "outline",
+							endIcon: ,
+							children: "Actions",
+							isDisabled: isEmpty(selectedRowIds),
+							dataQa: "selectedEntityActions"
+						}
items
menuItems
anchorOrigin
{
+							vertical: "bottom",
+							horizontal: "right"
+						}
transformOrigin
{
+							vertical: "top",
+							horizontal: "right"
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					title: messages.updateButton,
+					variant: "outline",
+					children: messages.updateButton,
+					isDisabled: isDisabled,
+					dataQa: "addUserAccess"
+				}
items
[
+					{
+						name: messages.addUserGroup,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),
+						dataQa: "addUserGroup"
+					},
+					{
+						name: messages.addUser,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.user),
+						dataQa: "addUser"
+					}
+				]
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								variant: "icon",
+								dataQa: "versionDetailMoreAction",
+								children: ,
+								title: en.eventPortalResources.labels.deleteSample.actionMenuTitle
+							}
items
getMenuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				variant: "icon",
+				dataQa: "versionMoreAction",
+				children: ,
+				title: "More Actions"
+			}
items
wrappedMenuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								dataQa: "eventDetailModalMoreAction",
+								variant: "icon",
+								children: ,
+								title: "More Actions"
+							}
items
menuItems
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								variant: "icon",
+								dataQa: "moreActionMenuButton",
+								children: ,
+								title: "More Actions"
+							}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+													variant: "icon",
+													dataQa: "versionDetailMoreAction",
+													children: ,
+													title: "More Actions"
+												}
items
getMenuItemsForEntityDetail()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${dataQa ? dataQa + "-" : ""}graphSettings`
buttonProps
{
+								variant: "icon",
+								children: ,
+								title: "Settings",
+								dataQa: `${dataQa ? dataQa + "-" : ""}graphSettings-button`
+							}
items
settingsMenuItemsProps
closeOnSelect
true
anchorOrigin
{
+								vertical: "bottom",
+								horizontal: "left"
+							}
transformOrigin
{
+								vertical: "top",
+								horizontal: "left"
+							}
dataQa
`${dataQa ? dataQa + "-" : ""}graphSettings-menu`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${dataQa ? dataQa + "-" : ""}graphSettings`
buttonProps
{
+								variant: "icon",
+								children: ,
+								title: "Settings",
+								isDisabled: graphEmpty,
+								dataQa: `${dataQa ? dataQa + "-" : ""}graphSettings-button`
+							}
items
settingsMenuItemsProps
closeOnSelect
true
anchorOrigin
{
+								vertical: "bottom",
+								horizontal: "left"
+							}
transformOrigin
{
+								vertical: "top",
+								horizontal: "left"
+							}
dataQa
`${dataQa ? dataQa + "-" : ""}graphSettings-menu`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
buttonProps
{
+				variant: "text",
+				children: "Add Filters"
+			}
items
filterMenuItems
closeOnSelect
false
numOfMenuItemDisplayed
9
dataQa
dataQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								dataQa: actionMenuDataQa ?? "accordionMoreAction",
+								variant: "icon",
+								children: ,
+								title: "More Actions"
+							}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							dataQa: "accordionMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					dataQa: actionMenuDataQa ?? "accordionMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							dataQa: actionMenuDataQa ?? "accordionMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							dataQa: actionMenuDataQa ?? "accordionMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createEventManagementAgent
buttonProps
{
+					variant: "call-to-action",
+					children: "Set Up Event Management Agent"
+				}
items
CREATE_MENU_ITEMS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+										dataQa: "accordionMoreAction",
+										variant: "icon",
+										children: ,
+										title: "More Actions"
+									}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
getRunDiscoveryScanOptionsItems()
buttonProps
{
+						variant: variant,
+						children: "Run Discovery Scan",
+						dataQa: "runDiscoveryScan",
+						isDisabled:
+							hasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&
+							hasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "left" }
transformOrigin
{ vertical: "top", horizontal: "left" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+					dataQa: "messagingServicesDetailsMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
messagingServicesDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`messagingService_${entity.id}-moreActions`
buttonProps
{
+						dataQa: "memMessagingServiceDetailsMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
getMoreOptionsItemsForMessagingService(entity, true)
dataQa
memMessagingServiceDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
items
buttonProps
{
+					title: "More Actions",
+					variant: "icon",
+					children: ,
+					dataQa: "messagingServiceMoreActionsButton"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
[
+						{
+							name: "View Event Management Agent",
+							onMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),
+							dataQa: "viewRuntimeAgentActionMenu"
+						}
+					]
buttonProps
{
+						title: "More Actions",
+						variant: "icon",
+						children: ,
+						dataQa: "runtimeAgentMoreActionsButton"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
createEventManagementAgent
buttonProps
{
+													variant: "call-to-action",
+													children: "Connect to an Event Management Agent"
+												}
items
CREATE_MENU_ITEMS
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
buttonProps
{
+					variant: "icon",
+					children: ,
+					title: "Settings",
+					dataQa: dataQa + "-button"
+				}
items
getMenuItemsProps()
closeOnSelect
false
anchorOrigin
{
+					vertical: "bottom",
+					horizontal: "right"
+				}
transformOrigin
{
+					vertical: "top",
+					horizontal: "right"
+				}
dataQa
`${dataQa}-menu`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: "memEntityVersionDetailsMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
actionMenuItems
dataQa
memEntityVersionDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"custom-solace-menu"
dataQa
actionMenuForEntityVersionList
buttonProps
{
+					variant: "outline",
+					isDisabled: numberOfSelection === 0,
+					endIcon: (
+						
+							
+						
+					),
+					children: "Actions"
+				}
items
menuItems
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+						dataQa: "memMoreActions",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+					dataQa: "memDetailsMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
memDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+							dataQa: "memDetailsMoreAction",
+							variant: "icon",
+							children: ,
+							title: "More Actions"
+						}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
memDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"moreActions"
buttonProps
{
+					dataQa: "memDetailsMoreAction",
+					variant: "icon",
+					children: ,
+					title: "More Actions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
menuItems
dataQa
memDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							variant: buttonVariant || "outline",
+							children: buttonText || "Import",
+							isDisabled: disabled,
+							dataQa: "chooseImportOptionButton"
+						}
items
menuItems
maxWidth
readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined
dataQa
dataQa ?? "auditImportMenu"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				dataQa: "designerMoreAction",
+				variant: "icon",
+				children: ,
+				title: "More Actions"
+			}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						variant: "outline",
+						endIcon: ,
+						children: "Actions",
+						isDisabled: !isChecked,
+						dataQa: "selectedDomainsActions"
+					}
items
[
+						{
+							name: "Export",
+							onMenuItemClick: () => onExport(selectedDomainIds),
+							dataQa: "selectedDomainsExport"
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				variant: "icon",
+				children: ,
+				dataQa: "domainMoreAction",
+				title: "More Actions"
+			}
dataQa
domainMoreActionMenu
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								dataQa: `${selectedNode?.type ?? ""}NodeSidePanelMoreAction`,
+								variant: "icon",
+								children: ,
+								title: "More Actions"
+							}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
actionMenuItems
dataQa
`${selectedNode?.type ?? ""}NodeSidePanelMoreActionMenu`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: "appDomainEntityVersionDetailsMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
actionMenuItems
dataQa
appDomainEntityVersionDetailsMoreActionMenu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
[
+						{
+							name: en.eventApiProduct.buttons.openEventApiProduct,
+							onMenuItemClick: (e) => handleViewVersionDetail(e, item, false)
+						}
+					]
buttonProps
{
+						title: en.common.button.moreActions,
+						variant: "icon",
+						children: ,
+						dataQa: "memListMoreAction"
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
"createApplication-menu"
buttonProps
{
+						children: createLabel,
+						variant: "outline",
+						endIcon: ,
+						dataQa: "createApplication-button"
+					}
items
[
+						{
+							name: en.application.applicationType.standard,
+							onMenuItemClick: handleCreate,
+							dataQa: "createStandardApplication"
+						},
+						{
+							name: en.application.applicationType.restDeliveryPoint,
+							onMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),
+							dataQa: "createRestDeliveryPointApplication"
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+											variant: "icon",
+											dataQa: "moreActionsButton",
+											children: ,
+											title: "More Actions"
+										}
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+												dataQa: `${eventBroker.id}-moreOptionMenuButton`,
+												variant: "icon",
+												children: ,
+												title: common.button.moreActions
+											}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
items
moreOptions
dataQa
`${eventBroker.id}-moreOptionMenu`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: "accordionMoreAction",
+						variant: "icon",
+						children: ,
+						title: "More Actions"
+					}
items
getVersionDetailMenuItem(version, mode)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+									children: ,
+									title: "Actions",
+									variant: "icon",
+									dataQa: "connectors_additional_actions"
+								}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
"connectors_additional_actions"
items
menuItems
dataQa
connectors_additional_actions_menu
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
actionitems
buttonProps
{
+								children: ,
+								title: "Actions",
+								variant: "icon",
+								dataQa: "connectors_additional_actions"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
"connectors_additional_actions"
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/utils/RenderActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
dataQa
dataQa
buttonProps
{
+					variant: "outline",
+					isDisabled: selectedCount < minimalCount,
+					endIcon: (
+						
+							
+						
+					),
+					children: t({ id: "id_actions", message: "Actions" })
+				}
items
items
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					title: messages.updateButton,
+					variant: "outline",
+					children: messages.updateButton,
+					isDisabled: isDisabled,
+					dataQa: "addUserAccess"
+				}
items
[
+					{
+						name: messages.addUserGroup,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),
+						dataQa: "addUserGroup"
+					},
+					{
+						name: messages.addUser,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.user),
+						dataQa: "addUser"
+					}
+				]
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							title: t({ id: "id_actions", message: "Actions" }),
+							variant: "icon"
+						}
dataQa
actions
id
`${eventMesh.id}_actions`
items
[
+							{
+								name: t({ id: "id_event_mesh_details", message: "Event Mesh Details" }),
+								onMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),
+								divider: true
+							},
+							{
+								name: t({ id: "id_delete", message: "Delete" }),
+								disabled: !hasWriteAccess
+							}
+						]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: t({ id: "id_download", message: "Download" }),
+							endIcon: ,
+							variant: "text",
+							dataQa: "download"
+						}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
download
items
links.download.map((dw) => ({
+							name: dw.name,
+							onMenuItemClick: () => openLink(dw.url)
+						}))
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								children: ,
+								title: t({ id: "id_actions", message: "Actions" }),
+								variant: "icon",
+								dataQa: "actions"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`${id}-actions-menu`
items
[
+								{
+									name: t({ id: "id_edit", message: "Edit" }),
+									dataQa: "ldap-groups-menu-edit",
+									onMenuItemClick: handleEdit(idx)
+								},
+								{
+									name: t({ id: "id_delete", message: "Delete" }),
+									dataQa: "ldap-groups-menu-delete",
+									onMenuItemClick: handleDelete(idx)
+								}
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						children: ,
+						title: t({ id: "id_actions", message: "Actions" }),
+						variant: "icon",
+						dataQa: `actions[${index}]`
+					}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`cp_${index}-actions-menu`
items
canConfigure
+							? [
+									{
+										name: t({ id: "id_set_as_default", message: "Set as Default" }),
+										dataQa: "hostnames-menu-set-default",
+										disabled: !item.canSetAsDefault || !!isInProgress,
+										onMenuItemClick: () => {
+											changeHostnameDefaultMutation.mutate(item.name);
+										}
+									},
+									{
+										name: t({ id: "id_move", message: "Move" }),
+										dataQa: "hostnames-menu-move",
+										disabled: item.isLocked || item.isDefault || !!isInProgress,
+										onMenuItemClick: () => {
+											setResetFields();
+											setShowMoveDialog(item);
+										}
+									},
+									{
+										name: t({ id: "id_copy_clipboard", message: "Copy to Clipboard" }),
+										dataQa: "hostnames-menu-copy-cliboard",
+										onMenuItemClick: () => {
+											copy(item.name).then((isSuccess) => {
+												if (isSuccess) {
+													addToast(t({ id: "id_copied", message: "Copied" }));
+												}
+											});
+										}
+									},
+									{
+										name: t({ id: "id_delete", message: "Delete" }),
+										dataQa: "hostnames-menu-delete",
+										disabled: item.isLocked || item.isDefault || !!isInProgress,
+										onMenuItemClick: () => {
+											setShowDeleteDialog(item);
+										}
+									}
+							  ]
+							: [
+									{
+										name: t({ id: "id_move", message: "Copy to Clipboard" }),
+										dataQa: "hostnames-menu-copy-cliboard",
+										onMenuItemClick: () => {
+											copy(item.name).then((isSuccess) => {
+												if (isSuccess) {
+													addToast(t({ id: "id_copied", message: "Copied" }));
+												}
+											});
+										}
+									}
+							  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+													children: ,
+													title: t({ id: "id_actions", message: "Actions" }),
+													variant: "icon"
+												}
dataQa
actions
id
`public_actions`
items
[
+													{
+														name: t({ id: "id_edit", message: "Edit" }),
+														disabled: !allowServiceQueries,
+														onMenuItemClick: () => handleEditEndpoint(index)
+													},
+													{
+														name: t({ id: "id_delete", message: "Delete" }),
+														disabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,
+														onMenuItemClick: () => setShowDeleteDialog(endpoint)
+													}
+												]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						children: ,
+						title: t({ id: "id_actions", message: "Actions" }),
+						variant: "icon",
+						dataQa: `actions[${index}]`
+					}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`cp_${index}-actions-menu`
items
canConfigure
+							? [
+									{
+										name: t({ id: "id_edit", message: "Edit" }),
+										dataQa: "syslog-config-menu-edit",
+										onMenuItemClick: () => {
+											setResetFields(item);
+											setShowDialogIndex(index);
+										}
+									},
+									{
+										name: t({ id: "id_delete", message: "Delete" }),
+										dataQa: "syslog-config-menu-delete",
+										onMenuItemClick: () => setDeleteIndex(index)
+									}
+							  ]
+							: [
+									{
+										name: t({ id: "id_view", message: "View" }),
+										dataQa: "syslog-config-menu-view",
+										onMenuItemClick: () => {
+											setResetFields(item);
+											setShowDialogIndex(index);
+										}
+									}
+							  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							title: t({ id: "id_actions", message: "Actions" }),
+							variant: "icon",
+							dataQa: `actions[${index}]`
+						}
anchorOrigin
{ horizontal: "left", vertical: "bottom" }
transformOrigin
{ horizontal: "left", vertical: "top" }
id
`cp_${index}-actions-menu`
items
certType === "client"
+								? [
+										{
+											name: canConfigure ? t({ id: "id_edit", message: "Edit" }) : t({ id: "id_view", message: "View" }),
+											dataQa: "client-profile-menu-edit",
+											onMenuItemClick: () => {
+												setResetFields();
+												setFetchName(item.name);
+												setAddMode(false);
+												setShowDialogIndex(index);
+											}
+										},
+										{
+											name: t({ id: "id_delete", message: "Delete" }),
+											dataQa: "client-profile-menu-delete",
+											disabled: !canConfigure,
+											onMenuItemClick: () => setDeleteIndex(index)
+										}
+								  ]
+								: [
+										{
+											name: t({ id: "id_delete", message: "Delete" }),
+											dataQa: "client-profile-menu-delete",
+											onMenuItemClick: () => setDeleteIndex(index),
+											disabled: index === 0 || !canConfigure
+										}
+								  ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						children: ,
+						title: t({ id: "id_actions", message: "Actions" }),
+						variant: "icon",
+						dataQa: `actions[${index}]`
+					}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`cp_${index}-actions-menu`
items
[
+						{
+							name: canConfigure ? t({ id: "id_edit", message: "Edit" }) : t({ id: "id_view", message: "View" }),
+							dataQa: "client-profile-menu-edit",
+							onMenuItemClick: () => {
+								setResetFields();
+								setFetchName(item.name);
+								setShowDialogIndex(index);
+							}
+						},
+						{
+							name: t({ id: "id_delete", message: "Delete" }),
+							dataQa: "client-profile-menu-delete",
+							disabled: item.id === DEFAULT_PROFILE || !canConfigure,
+							onMenuItemClick: () => setDeleteIndex(index)
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				children: ,
+				title: t({ id: "id_actions", message: "Actions" }),
+				variant: "icon",
+				dataQa: "actions",
+				onClick: handleMenuClick
+			}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
`${service.id}_actions`
items
menuItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				children: ,
+				title: t({ id: "id_sort", message: "Sort" }),
+				variant: "icon"
+			}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
sort
id
sort
items
items
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+				children: ,
+				title: t({ id: "id_sort", message: "Sort" }),
+				variant: "icon"
+			}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
sort
id
sort
items
items
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+					title: messages.updateButton,
+					variant: "outline",
+					children: messages.updateButton,
+					isDisabled: isDisabled,
+					dataQa: "addUserAccess"
+				}
items
[
+					{
+						name: messages.addUserGroup,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),
+						dataQa: "addUserGroup"
+					},
+					{
+						name: messages.addUser,
+						onMenuItemClick: () => onAddResourceAssignment(UserType.user),
+						dataQa: "addUser"
+					}
+				]
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
buttonProps
{
+								variant: "call-to-action",
+								endIcon: ,
+								children: "Actions",
+								isDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === "unsupported"
+							}
items
actionItems
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								children: ,
+								variant: "icon"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
msg-spool-menu
id
msg-spool-menu
items
[
+								{
+									name: en.serviceLimits.buttons.viewDetails,
+									onMenuItemClick: () => {
+										setViewLimitsRow(row);
+									}
+								},
+								{
+									name: en.serviceLimits.buttons.requestLimitChange,
+									onMenuItemClick: () => {
+										setNewServiceLimit(row.limit ?? 0);
+										setEditLimitsRow(row);
+									}
+								}
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+								children: ,
+								variant: "icon"
+							}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
dataQa
msg-spool-menu
id
msg-spool-menu
items
[
+								{
+									name: en.serviceLimits.buttons.viewDetails,
+									onMenuItemClick: () => {
+										setViewLimitsRow(row);
+									}
+								}
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
items
buttonProps
{
+					title: `${environmentsStr.environmentList.moreActionLabel}`,
+					variant: "icon",
+					children: ,
+					dataQa: "environmentMoreActions"
+				}
anchorOrigin
{ vertical: "bottom", horizontal: "right" }
transformOrigin
{ vertical: "top", horizontal: "right" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							variant: "icon"
+						}
dataQa
claimMappingActions
dataTags
claimMappingActions
id
claimMappingActions
items
[
+							{
+								name: userGroupManagement.edit,
+								onMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),
+								disabled: groupMappingState
+							},
+							{
+								name: userGroupManagement.remove,
+								onMenuItemClick: () => removeClaimMappingHandler(rowData.id)
+							}
+						]
numOfMenuItemDisplayed
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+						dataQa: `${token.name}-menu`,
+						variant: "icon",
+						children: ,
+						title: "More"
+					}
items
[
+						{
+							name: `View Token`,
+							onMenuItemClick: onViewToken,
+							dataQa: `${token.name}-view`
+						},
+						{
+							name: `Regenerate Token`,
+							onMenuItemClick: onRegenerateToken,
+							dataQa: `${token.name}-regenerate`
+						},
+						{
+							name: `Delete Token`,
+							onMenuItemClick: onDeleteToken,
+							dataQa: `${token.name}-delete`
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`${item.serviceId}-menu`
items
[
+					{
+						name: (
+							
+								
+									Service Details
+								
+							
+						),
+						onMenuItemClick: () => window.open(`/services/${item.serviceId}`, "_blank")?.focus()
+					}
+				]
buttonProps
{
+					title: "More Actions",
+					variant: "icon",
+					children: 
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
actionMenuItems()
buttonProps
{
+                                variant: "icon",
+                                title: "Actions",
+                                dataQa: "clusterDetailsActionMenuButton",
+                                children: ,
+                            }
key
cloudProviderLink
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
filterMenu
buttonProps
{ variant: "icon", children: , dataQa: "filter" }
closeOnSelect
false
items
[
+								{
+									categoryHeading: "Channel",
+									name: filters.includes(Filter.PREVIEW) ? Preview : "Preview",
+									dataQa: "preview",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.PREVIEW)
+								},
+								{
+									categoryHeading: "Channel",
+									name: filters.includes(Filter.PRODUCTION) ? Production : "Production",
+									dataQa: "production",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.PRODUCTION)
+								},
+								{
+									categoryHeading: "Channel",
+									name: filters.includes(Filter.LTS) ? LTS : "LTS",
+									dataQa: "lts",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.LTS)
+								},
+								{
+									categoryHeading: "Channel",
+									name: filters.includes(Filter.ROLLING) ? Rolling : "Rolling",
+									dataQa: "rolling",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.ROLLING)
+								},
+								{
+									categoryHeading: "Channel",
+									name: filters.includes(Filter.DECLINED) ? Declined : "Declined",
+									dataQa: "declined",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.DECLINED),
+									divider: true
+								},
+								{
+									categoryHeading: "Status",
+									name: filters.includes(Filter.RELEASED) ? Released : "Released",
+									dataQa: "released",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.RELEASED)
+								},
+								{
+									categoryHeading: "Status",
+									name: filters.includes(Filter.NOT_RELEASED) ? (
+										Not Released
+									) : (
+										"Not Released"
+									),
+									divider: true,
+									dataQa: "notReleased",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.NOT_RELEASED)
+								},
+								{
+									categoryHeading: "Views",
+									name:
+										filters.includes(Filter.PRODUCTION) &&
+										filters.includes(Filter.RELEASED) &&
+										filters.includes(Filter.PREVIEW) &&
+										filters.includes(Filter.LTS) ? (
+											Active
+										) : (
+											"Active"
+										),
+									dataQa: "active",
+									onMenuItemClick: () => modifyFilters().addFilter(Filter.ACTIVE)
+								}
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
buttonProps
{
+							children: ,
+							title: "Actions",
+							variant: "icon",
+							dataQa: "connectors_additional_actions"
+						}
anchorOrigin
{ horizontal: "right", vertical: "bottom" }
transformOrigin
{ horizontal: "right", vertical: "top" }
id
"connectors_additional_actions"
items
menuItems
dataQa
connectors_additional_actions_menu
+
+ +
+
+ +
+
+
+ SolaceTable + 67 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui19
intgmaas-ui3
saasmaas-ui9
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui34
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
rows67
columns67
selectionType67
sortCallback67
renderCustomRowCells38
selectionChangedCallback35
loading24
hasColumnHiding23
showEmptyState20
renderCustomRowActionItem19
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (67)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SELECTION_TYPE.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
renderCustomRowActionItem
renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No ${entityTypeToLabelLowercase(entityType)}s have been created`
expandableRowOptions
expandableRowOptions
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI
independentRowHighlight
true
highlightedRowId
highlightedRowId
rowHighlightChangedCallback
handleRowHighlight
disabledRowIds
disabledRowIds
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
selectionType ?? SolaceTableSelectionType.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
expandableRowOptions
expandableRowOptions
renderCustomEmptyState
renderCustomEmptyState ?? defaultEmptyState
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event-flow-discrepancy-preview-table
selectionType
SELECTION_TYPE.NONE
sortCallback
handleSort
rows
paginatedRows
columns
columns
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SolaceTableSelectionType.MULTI
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
expandableRowOptions
expandableRowOptions
renderCustomEmptyState
renderCustomEmptyState ?? defaultEmptyState
showEmptyState
tableDataAvailable
independentRowHighlight
true
highlightedRowId
highlightedRowId
rowHighlightChangedCallback
handleRowHighlight
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SELECTION_TYPE.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
hasColumnHiding ?? true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItems
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
renderCustomEmptyState
customEmptyState
expandableRowOptions
expandableRowOptions
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"metricsDashboardTable"
rows
handleProcessEntities(entities)
columns
columns
selectionType
SolaceTableSelectionType.NONE
hasColumnHiding
false
rowActionMenuItems
null
renderCustomRowCells
(row: SolaceTableRow) => {
+				return renderRowCells(row);
+			}
renderCustomEmptyState
customEmptyState
showEmptyState
!entities || entities.length === 0
sortCallback
null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowCells
renderCustomRowCells
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
renderCustomRowCells
renderRowCells
columns
columns
selectionType
SolaceTableSelectionType.NONE
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
columns
id
remTable
renderCustomRowCells
renderCustomRow
maxHeight
`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`
renderCustomRowActionItem
actions
rows
remEntities
selectedRowIds
[selectedMem?.id]
selectionChangedCallback
handleRowSelection
selectionType
SELECTION_TYPE.SINGLE
sortedColumn
sortedColumn
sortCallback
handleSort
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
loading
isLoading
id
`${entityType}Table`
rows
tableData
columns
columns
selectionType
SELECTION_TYPE.MULTI
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
independentRowHighlight
true
highlightedRowId
highlightedRowId
rowHighlightChangedCallback
handleRowHighlight
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
true
rowActionMenuItems
rowActionMenuItems?.length > 0 ? rowActionMenuItems : null
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
customRowCellRenderer
+							? (row: SolaceTableRow) => {
+									return customRowCellRenderer(row, columnsHiddenInfo);
+							  }
+							: undefined
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No ${entityTypeToLabelLowercase(entityType)}s have been created`
expandableRowOptions
expandableRowOptions
renderCustomEmptyState
renderCustomEmptyState
showEmptyState
tableDataAvailable
customContentDefinitions
customContentDefinitions
displayedCustomContent
displayedCustomContent
customContentDisplayChangeCallback
customContentDisplayChangeCallback
customMenuActions
customMenuActions
crossPageRowSelectionSupported
auditEntityType === null ? false : true
totalObjectCount
entityCount
deselectedRowIds
deselectedRowIds
allPagesSelectedByDefault
allPagesSelectedByDefault
crossPageSelectionChangedCallback
handleCrossPageRowSelectionsChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => null
rows
getFilteredRows()
renderCustomRowCells
renderRowCells
columns
TEMPLATE_TYPES[type].tableColumns
selectionType
SolaceTableSelectionType.SINGLE
emptyStateMessage
messages[type].emptyTableMessage
showEmptyState
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentEventsTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
null
hasColumnHiding
false
renderCustomRowCells
renderRowCells
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
disabledRowIds
existingSharedEventIds
emptyStateMessage
`No matching events have been found`
expandableRowOptions
{
+				allowToggle: false,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentEventsTable`
rows
tableData
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
true
renderCustomRowCells
(row: SolaceTableRow) => {
+						return renderRowCells(row, columnsHiddenInfo);
+					}
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
en.eventApi.labels.emptyState
expandableRowOptions
{
+						allowToggle: true,
+						renderChildren: renderExpandedRowContent,
+						expandedRowIds: expandedRowIds,
+						setExpandedRowIds: setExpandedRowIds,
+						selectRowWhenClickOnChildren: false
+					}
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`eventAccessRequestTable`
rows
tableData
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelections
sortedColumn
sortedColumn
sortCallback
handleSort
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
renderCustomEmptyState
renderEmptyState
showEmptyState
tableDataAvailable && !loading
independentRowHighlight
true
highlightedRowId
highlightedRow?.id
rowHighlightChangedCallback
handleRowHighlight
expandableRowOptions
{
+						allowToggle: false,
+						renderChildren: (row) => renderExpandedRowContent(row),
+						expandedRowIds: [],
+						setExpandedRowIds: () => {
+							void 0;
+						}
+					}
loading
loading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortedColumn
sortedColumn
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowCells
renderCustomRowCells
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentSchemasTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
null
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No matching schemas have been found`
renderCustomEmptyState
hasFilter && clearFilterEmptyState
expandableRowOptions
{
+				allowToggle: true,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentEventsTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
null
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No matching events have been found`
renderCustomEmptyState
hasFilter && clearFilterEmptyState
expandableRowOptions
{
+				allowToggle: true,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`parentApplicationsTable`
rows
displayedRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
null
hasColumnHiding
true
renderCustomRowCells
renderRowCells
displayedColumns
displayedColumns
displayedColumnsChangedCallback
handleDisplayedColumnsChanged
emptyStateMessage
`No matching applications have been found`
renderCustomEmptyState
hasFilter && clearFilterEmptyState
expandableRowOptions
{
+				allowToggle: true,
+				renderChildren: renderExpandedRow,
+				expandedRowIds: expandedRowIds,
+				setExpandedRowIds: setExpandedRowIds
+			}
showEmptyState
tableDataAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connector-flow-list-table
id
connector-flow-list-table
rows
allConnectors
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
(column: SolaceTableColumn | undefined) => {
+					setConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);
+				}
sortedColumn
columns.find((column) => column.field === connectorSort.split(":")[0])
renderCustomRowCells
(row: SolaceTableRow) => {
+					return renderRowCells(row);
+				}
renderCustomRowActionItem
customRowActionMenuItems
selectionChangedCallback
handleRowSelections
selectedRowIds
selectedRowIds
renderCustomEmptyState
() => (
+					
+						
+					
+				)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
agent-list-table
id
agent-list-table
rows
allAgents
columns
columns
sortCallback
(column: SolaceTableColumn | undefined) => {
+					setAgentSort(`sort=${column?.field}`);
+				}
sortedColumn
columns.find((column) => column.field === agentSort)
selectionType
SolaceTableSelectionType.SINGLE
renderCustomRowCells
(row: SolaceTableRow) => {
+					return renderRowCells(row);
+				}
selectionChangedCallback
handleRowSelections
selectedRowIds
selectedRowIds
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
connector-flow-list-table
id
connector-flow-list-table
rows
connectorErrorLogs ?? []
columns
columns
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
function (): void {
+							return;
+						}
renderCustomRowCells
(row: SolaceTableRow) => {
+							return renderRowCells(row);
+						}
loading
logsFetching
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rowData
columns
columns
sortCallback
sortFunc
selectedRowIds
selectedRowIds
selectionChangedCallback
onRowSelected
selectionType
SolaceTableSelectionType.SINGLE
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
() => undefined
rows
tableRows
columns
userManagementColumns
selectionType
SolaceTableSelectionType.NONE
loading
false
showEmptyState
tableRows.length < 1
minHeight
476px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
showEmptyState ? [] : tableRows
columns
columns
sortedColumn
sortedColumn
sortCallback
(columm) => handleSort(columm, drawdownData)
selectionType
SolaceTableSelectionType.NONE
dataQa
drawdownUsageTable
renderCustomEmptyState
() => (
+						}
+							title={drawdownUsage.noDrawdownUsage.noDrawdownUsage}
+						/>
+					)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
tableRows
columns
columns
sortCallback
handleSort
selectionType
SolaceTableSelectionType.SINGLE
rowActionMenuItems
rowActionMenuItems
dataQa
userGroupsTableQA
customMenuActions
resultsPerPageActions
hasColumnHiding
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectedRowIds
selectedRowIds
selectionChangedCallback
handleRowSelectionsChange
sortCallback
() => null
rows
auditLogsRows
columns
AuditLogsTableColumns
selectionType
SolaceTableSelectionType.SINGLE
renderCustomEmptyState
emptyState
showEmptyState
true
loadingMessage
en.auditLogs.loadingMessage
loading
loading
maxHeight
40rem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
sortClaimValuesDirection
rows
groupMappingState ? [addMappingRow, ...tableRows] : tableRows
columns
columns(groupMappingState)
selectionType
SolaceTableSelectionType.NONE
loading
false
showEmptyState
rows.length < 1
minHeight
476px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
notificationsTable
loading
isLoading || isFetchingNotifications || deletingNotification
loadingMessage
en.notifications[deletingNotification ? "deletingNotifications" : "fetchingNotifications"]
emptyStateMessage
en.notifications.emptyStateMessage(showUnreadNotifications)
columns
NOTIFICATION_TABLE_COLUMNS
displayedColumns
NOTIFICATION_TABLE_COLUMNS
customContentDisplayChangeCallback
() => null
displayedCustomContent
[]
renderCustomRowActionItem
getRowActionMenuItem
expandableRowOptions
{
+								allowToggle: true,
+								expandedRowIds: expandedRowIds,
+								renderChildren: (data) => {
+									return (
+										
+											
+										
+									);
+								},
+								setExpandedRowIds: expandRowHandler
+							}
rows
notifications ?? []
sortCallback
() => null
selectionType
SELECTION_TYPE.NONE
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => undefined
rows
distributedTracingLimits ?? []
columns
limitColumn
selectionType
SolaceTableSelectionType.NONE
renderCustomEmptyState
() => {tracingLimits.emptyStateMessage}
selectionChangedCallback
() => undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => undefined
rows
tracingProfiles ?? []
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowActionItem
customRowActionMenuItems
renderCustomEmptyState
() => {tracingProfile.emptyStateMessage}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
ClusterListTableColumns
rows
tableData
selectionType
SELECTION_TYPE.NONE
sortCallback
handleSort
hasColumnHiding
true
loading
isLoading
emptyStateMessage
No clusters found
minHeight
theme.spacing(54)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
ServiceListTableColumns
rows
tableData
selectionType
SELECTION_TYPE.NONE
sortCallback
() => void 0
hasColumnHiding
true
loading
isPending
emptyStateMessage
No services found
minHeight
theme.spacing(72)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
processOrganizationsList
columns
hasSAPAccount ? columnsWithTenantIds : columns
sortCallback
sortFunc
selectionChangedCallback
onRowSelected
selectionType
SolaceTableSelectionType.NONE
minHeight
CUSTOMER_DETAILS_TABLE_MIN_HEIGHT
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
datacCentersRowData
columns
dataCenterTableColumns
sortCallback
()=>""
selectionChangedCallback
()=>""
selectionType
SolaceTableSelectionType.NONE
minHeight
CUSTOMER_DETAILS_TABLE_MIN_HEIGHT
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rowData
selectionType
SolaceTableSelectionType.NONE
sortCallback
handleSort
selectionChangedCallback
() => undefined
columns
columns
rowActionMenuItems
rowActionMenuItems
minHeight
CUSTOMER_DETAILS_TABLE_MIN_HEIGHT
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rowData
columns
columns
sortCallback
sortFunc
selectionChangedCallback
() => undefined
selectionType
SolaceTableSelectionType.NONE
minHeight
CUSTOMER_DETAILS_TABLE_MIN_HEIGHT
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rowData
columns
columns
sortCallback
sortFunc
selectionChangedCallback
() => undefined
selectionType
SolaceTableSelectionType.NONE
minHeight
CUSTOMER_DETAILS_TABLE_MIN_HEIGHT
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rowData
selectionType
SolaceTableSelectionType.NONE
sortCallback
() => undefined
selectionChangedCallback
() => undefined
columns
columns
rowActionMenuItems
rowActionMenuItems
minHeight
CUSTOMER_DETAILS_TABLE_MIN_HEIGHT
emptyStateMessage
orgLimitsLoading ? "Loading data..." : "No data to show"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
displayedColumns
rows
tableData
selectionType
SELECTION_TYPE.NONE
sortCallback
handleSort
hasColumnHiding
true
displayedColumns
displayedColumns
displayedColumnsChangedCallback
columnSelectionHandler
renderCustomEmptyState
() => (
+						
+							{organizationStrings.table.emptyState.noResults}
+							{organizationStrings.table.emptyState.checkFilters}
+							 setClearFiltersFlag(true)}>{organizationStrings.table.emptyState.clearFilters}
+						
+					)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
serviceColumns
rows
serviceRows
selectedRowIds
[]
selectionChangedCallback
() => undefined
selectionType
SolaceTableSelectionType.NONE
sortCallback
handleSort
hasColumnHiding
true
renderCustomRowActionItem
renderSchemaRowActions
renderCustomRowCells
renderSchemaRowCells
displayedColumnsChangedCallback
displayedColumnsChanged
dataQa
ServiceMonitoringSettingsTable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
ddIntegrationColumns
rows
ddIntegrationRows
sortCallback
() => {}
selectionType
SELECTION_TYPE.NONE
minHeight
fit-content
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
facetsListColumns
rows
facetsListRows
sortCallback
() => {}
selectionType
SELECTION_TYPE.NONE
minHeight
fit-content
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sortCallback
() => {}
rows
jobs
loading
jobsLoading
renderCustomRowCells
renderSchemaRowCells
renderCustomRowActionItem
renderSchemaRowActions
columns
memoizedColumns
hasColumnHiding
true
displayedColumnsChangedCallback
displayedColumnsChanged
selectionType
SolaceTableSelectionType.NONE
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
tableRows
columns
tableCols
loading
plansLoading
selectedRowIds
[rowId]
sortCallback
() => void 0
renderCustomRowCells
renderSchemaRowCells
selectionType
SolaceTableSelectionType.SINGLE
renderCustomRowActionItem
renderSchemaRowActions
selectionChangedCallback
(rows) => setRowId(rows.map((row) => row.id)[0])
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
() => void 0
emptyStateMessage
No services returned.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
() => void 0
renderCustomRowCells
renderSchemaRowCells
emptyStateMessage
An error has occurred triggering the Post-Upgrade Checks. Contact @sc-launch-pad for support.
loading
loading
loadingMessage
Loading Post-Upgrade Check results...
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
() => void 0
renderCustomRowCells
renderSchemaRowCells
emptyStateMessage
An error has occurred triggering the Pre-Upgrade Checks. Contact @sc-launch-pad for support.
loading
loading
loadingMessage
Loading Pre-Upgrade Check results...
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
rows
columns
columns
selectionType
SolaceTableSelectionType.NONE
sortCallback
() => void 0
renderCustomRowCells
renderRowCells
emptyStateMessage
An error has occurred retrieving the upgrade logs. Contact @sc-launch-pad for support.
loading
loading && rows.length === 0
loadingMessage
Loading upgrade logs...
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
tableRows
maxHeight
75vh
loading
loading && !services
hasColumnHiding
true
columns
tableCols
sortCallback
handleSort
renderCustomRowCells
renderSchemaRowCells
selectionType
SolaceTableSelectionType.NONE
renderCustomRowActionItem
renderSchemaRowActions
displayedColumnsChangedCallback
displayedColumnsChanged
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
rows
tableRows
maxHeight
75vh
columns
tableCols
loading
runsLoading
sortCallback
handleSort
renderCustomRowCells
renderSchemaRowCells
selectionType
SolaceTableSelectionType.SINGLE
renderCustomRowActionItem
renderSchemaRowActions
showEmptyState
tableRows.length === 0 && !runsLoading
selectionChangedCallback
(run) => history.push(`/automatic-upgrades/run/${run[0].id}`)
renderCustomEmptyState
() => (
+							
+								}
+									title="No scheduled upgrade runs"
+									details="No upgrade runs returned. Open the create modal to schedule based off an existing Plan."
+									actions={[{ children: "Schedule Upgrade Run", variant: "outline", onClick: setCreateOpen }]}
+								/>
+							
+						)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
COLUMNS
rows
rows
selectionType
SolaceTableSelectionType.NONE
sortCallback
handleSort
renderCustomRowCells
renderRowCells
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showEmptyState
showEmptyState
rows
showEmptyState ? [] : tableRows
columns
columns
sortedColumn
sortedColumn
sortCallback
(columm) => handleSort(columm, drawdownData)
selectionChangedCallback
() => undefined
selectionType
SolaceTableSelectionType.SINGLE
dataQa
drawdownUsageTable
renderCustomEmptyState
() => (
+						}
+							title={drawdownUsage.noDrawdownUsage}
+						/>
+					)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
tableCols
independentRowHighlight
true
rows
emas?.data ?? []
renderCustomRowCells
(row) => renderRowCells(row, evmrId)
selectionType
SELECTION_TYPE.SINGLE
sortCallback
() => undefined
loading
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
columns
disabledRowIds
disabledRowIds
independentRowHighlight
true
loading
managementAgentsIsLoading
renderCustomRowCells
(rows) => renderRowCells(rows, latestImageTag, evmrId, cloudManagedType)
rows
rows ?? []
selectedRowIds
selectedRows
selectionType
SolaceTableSelectionType.SINGLE
sortCallback
() => undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
getColumns()
rows
tableData
selectionType
SELECTION_TYPE.NONE
sortCallback
noop
loadingMessage
customErrorMessage
emptyStateMessage
customErrorMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasColumnHiding
true
selectionType
SolaceTableSelectionType.NONE
sortedColumn
sortedColumn
sortCallback
handleSort
rows
paginatedRows
columns
columnsDef
renderCustomRowActionItem
renderSchemaRowActions
renderCustomRowCells
renderSchemaRowCells
displayedColumnsChangedCallback
displayedColumnsChanged
loading
loadingServicePackages
maxHeight
calc(100vh - 17.25rem)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
columns
rows
filteredProds
selectionType
readOnlyProducts ? SELECTION_TYPE.NONE : SELECTION_TYPE.MULTI
selectionChangedCallback
handleRowSelections
selectedRowIds
selectedRowIds
sortCallback
handleSort
renderCustomEmptyState
customEmptyStateView
data-qa
`subscription-products-table`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
toggleOverrideColumns
rows
toggleOverridesResponse.data.map((override) => ({
+											...override,
+											id: override.orgId // Use orgId as the id property
+										}))
renderCustomRowCells
renderToggleOverrideRowCells
loading
isLoadingOverrides
selectionType
SELECTION_TYPE.NONE
sortCallback
() => undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
columns
columns
rows
tableData
selectionType
SolaceTableSelectionType.SINGLE
selectionChangedCallback
handleRowSelection
sortCallback
sortFn
selectedRowIds
selectedRowId ? [selectedRowId] : []
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
() =>
+								sort == SolaceTableSortDirection.DCS
+									? setSort(SolaceTableSortDirection.ASC)
+									: setSort(SolaceTableSortDirection.DCS)
rows
orgDetails
columns
columns as any
selectionType
SolaceTableSelectionType.NONE
rowActionMenuItems
rowActionMenuItems
renderCustomRowCells
renderSchemaRowCells
loading
loadingOrgs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
() =>
+								sort == SolaceTableSortDirection.DCS
+									? setSort(SolaceTableSortDirection.ASC)
+									: setSort(SolaceTableSortDirection.DCS)
rows
monitoringJobs
columns
columns as any
selectionType
SolaceTableSelectionType.NONE
renderCustomRowActionItem
renderCustomRowActionItem
renderCustomRowCells
renderSchemaRowCells
loading
loadingJobs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
(sort) => {
+							setConnectorQuery(
+								queryBuilder({ orgId, pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })
+							);
+						}
rows
connectors
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowActionItem
renderSchemaRowActions
renderCustomRowCells
renderSchemaRowCells
hasColumnHiding
true
displayedColumnsChangedCallback
displayedColumnsChanged
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
handleSelectionChangedCallback
sortCallback
handleSort
rows
tableRows
columns
columnsDef
selectionType
SolaceTableSelectionType.SINGLE
renderCustomRowActionItem
renderSchemaRowActions
renderCustomRowCells
renderSchemaRowCells
hasColumnHiding
true
displayedColumnsChangedCallback
displayedColumnsChanged
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
(sort) => {
+								setBrokerQuery(
+									queryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })
+								);
+							}
rows
brokerCompatibility?.data ?? []
columns
brokerCompatibilityColumns as any
selectionType
SolaceTableSelectionType.NONE
rowActionMenuItems
brokerCompatibilityActionMenuItems
loading
brokerCompatibilityIsLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
(sort) => {
+								setHelmChartQuery(
+									queryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })
+								);
+							}
rows
helmChartCompatibility?.data ?? []
columns
helmChartCompatibilityColumns as any
selectionType
SolaceTableSelectionType.NONE
rowActionMenuItems
helmChartCompatibilityActionMenuItems
loading
helmChartCompatibilityIsLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selectionChangedCallback
() => undefined
sortCallback
handleSort
rows
tableRows
columns
columns
selectionType
SolaceTableSelectionType.NONE
renderCustomRowActionItem
renderSchemaRowActions
renderCustomRowCells
renderSchemaRowCells
hasColumnHiding
true
displayedColumnsChangedCallback
displayedColumnsChanged
+
+ +
+
+ +
+
+
+ SolaceAttributeBadge + 64 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui36
intgmaas-ui2
mcmaas-ui8
saasmaas-ui4
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui13
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label62
size24
fillColor24
labelColor21
boldLabel20
dataQa14
height13
variant10
...10
compressed9
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (64)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Unavailable"
size
"xs"
height
"sm"
compressed
false
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
tagName
labelColor
tagTextColor
fillColor
tagBgColor
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.ERROR_RED_LABEL
fillColor
CHIP_COLORS.ERROR_BG_RED
boldLabel
true
label
CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.DARK_GREY
fillColor
CHIP_COLORS.SMOKE_GREY
boldLabel
true
label
CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Update Required"
variant
CHIP_VARIANT.FILLED
fillColor
CHIP_COLORS.INFO_LIGHT_BG_BLUE
labelColor
CHIP_COLORS.INFO_BLUE_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
messages.selectDialog.default
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
pubSubStatus
variant
"filled"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${caKey}-toDelete`
size
sm
height
md
label
"To Be Deleted"
fillColor
CHIP_COLORS.warnBgYellow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
StateChipStyleProps[stateName]
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Current
variant
filled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
To Be Removed
fillColor
CHIP_COLORS.warnBgYellow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Unavailable"
size
"xs"
height
"sm"
compressed
false
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
badgePropsForStatus
label
status
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
boldLabel
true
label
status
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
labelColor
CHIP_COLORS.DARK_BLUE
fillColor
CHIP_COLORS.SMOKE_GREY
boldLabel
true
label
status
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
size
xs
label
New
labelColor
CHIP_COLORS.INFO_BLUE_LABEL
fillColor
CHIP_COLORS.INFO_LIGHT_BG_BLUE
boldLabel
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
eventMesh.environmentName
variant
filled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"filled"
label
"Recommended"
boldLabel
true
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
dataQa ?? "overriddenBadge"
variant
CHIP_VARIANT.FILLED
fillColor
CHIP_COLORS.INFO_LIGHT_BG_BLUE
labelColor
CHIP_COLORS.INFO_BLUE_LABEL
label
en.application.configuration.overridden
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isSub ? "filled" : "outlined"
height
"sm"
label
en.eventApiProduct.labels.sub
size
"xs"
disabled
!isSub
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isPub ? "filled" : "outlined"
height
"sm"
label
en.eventApiProduct.labels.pub
size
"xs"
disabled
!isPub
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
label
`${
+								expandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0
+									? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length
+									: 0
+							} Added`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
state
fillColor
getColor(state).fillColor ?? undefined
labelColor
getColor(state).labelColor ?? undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
{eventMesh.environmentName}
size
"sm"
height
"sm"
maxWidth
"100px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label

+											{`${schemaVersionSelectedMap[row.id].length} Added`}
+										
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label

+											{"Selected"}
+										
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Sub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Pub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Source"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
label
"Destination"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fillColor
CHIP_COLORS.ERROR_BG_RED
label
"Declined"
labelColor
CHIP_COLORS.ERROR_RED_LABEL
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isSub ? "filled" : "outlined"
label
"Sub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
disabled
!isSub
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
boldLabel
true
variant
isPub ? "filled" : "outlined"
label
"Pub"
size
"xs"
height
"sm"
compressed
true
borderRadius
"sm"
disabled
!isPub
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
t({ id: "id_default", message: "Default" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
label
ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]
dataQa
dataQa ?? "connector_status_badge"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
t({ id: "id_default", message: "Default" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
i18n._(getEventMeshState(eventMesh))
fillColor
getEventMeshStateFillColor(eventMesh)
labelColor
getEventMeshStateLabelColor(eventMesh)
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_expired", message: "Expired" })
fillColor
CHIP_COLORS.ERROR_BG_RED
labelColor
CHIP_COLORS.ERROR_RED_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_expires_soon", message: "Expires Soon" })
fillColor
CHIP_COLORS.warnBgYellow
labelColor
CHIP_COLORS.warnYellow
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
fillColor
fillColor
labelColor
labelColor
label
label
dataQa
statusChip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
hasSsoError ? t({ id: "id_service_outofsync_short", message: "SSO out-of-sync" }) : i18n._(getServiceState(service))
fillColor
getServiceStateFillColor(service, hasSsoError)
labelColor
getServiceStateLabelColor(service, hasSsoError)
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
t({ id: "id_event_mesh", message: "Event Mesh" })
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
environmentsStr.labels.defaultEnvironment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
active
label
Active
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
inactive
label
Inactive
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
environmentsStr.labels.defaultEnvironment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
clustersListStatus
label
state
fillColor
fillColor
labelColor
labelColor
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
chipInfo.chipLabel
fillColor
chipInfo.fillColor
labelColor
chipInfo.labelColor
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
formatStatus(row[key])
labelColor
getLabelColor(row[key])
fillColor
getFillColor(row[key])
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
formatStatus(runState)
labelColor
getLabelColor(runState)
fillColor
getFillColor(runState)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
default-env
label
Default
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
production-env
label
Production
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
generateStatusChipProps("default")
size
xxs
label
TLS Disabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
generateStatusChipProps("warning")
size
xxs
label
Not Latest
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
generateStatusChipProps("warning")
label
Not Latest
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
EMA_STATUS_LABELS.success
...
generateStatusChipProps(POLLING_STATUS.success)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
EMA_STATUS_LABELS.error
...
generateStatusChipProps(POLLING_STATUS.error)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
EMA_STATUS_LABELS.inProgress
...
generateStatusChipProps(POLLING_STATUS.inProgress)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Latest
fillColor
CHIP_COLORS.infoBgBlue
labelColor
CHIP_COLORS.infoBlue
+
+ +
+
+ +
+
+
+ SolaceSelectAutocompleteItem + 58 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui35
intgmaas-ui4
mcmaas-ui5
saasmaas-ui9
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui4
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
...10
name9
value9
supplementalText6
subText4
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (58)

+ + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
RESOURCE_LABEL_BY_ROLE[role]
value
role
subText
RESOURCE_DESCRIPTION_BY_ROLE[role]
+
+ + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
EMA_MODES_LABELS.scanWithEventPortal
value
EMA_MODES.scanFromEventPortal
subText
Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
EMA_MODES_LABELS.uploadScanFile
value
EMA_MODES.uploadScanFile
subText
Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode.
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
version
supplementalText
isSecondVersionOptions && selectedVersionId === version.id ? "No Difference" : ""
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
messages.credentials.solaceClientUsername.label
value
CONFIGURATION_TYPES.solaceClientUsername
supplementalText
isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
messages.credentials.solaceAuthorizationGroup.label
value
CONFIGURATION_TYPES.solaceAuthorizationGroup
supplementalText
isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : ""
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingProfile.tracingType[TracingType.Insights]
value
TracingType.Insights
supplementalText
isInsights ? "Default" : "Not Available"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]
value
TlsConnectionType.SecureSkipValidation
subText
Skips certificate authority validation
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
createBizOrganization.orgDetails.EnterpriseAcc
supplementalText
createBizOrganization.orgDetails.defaultAcc
value
enterprise
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
item.id ?? ""
supplementalText
Current Version
value
connectorVersion ?? ""
+
+ +
+
+ +
+
+
+ SolaceCard + 56 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui35
intgmaas-ui6
mcmaas-ui5
saasmaas-ui10
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
backgroundColor32
showCloseButton25
onClose22
title20
dataQa18
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (56)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
title
What is an Event Management Agent?
onClose
handleCloseInfoBlurb
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title

{brandableTextValueConverter("Environments in PubSub+ Cloud", "string")}

onClose
handleCloseInfoMessage
backgroundColor
theme.palette.ux.learning.w10
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
handleDismissEducationalCard
backgroundColor
theme.palette.ux.learning.w10
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
Want to subscribe to specific values?
onClose
() => setShowInfoBlurb(false)
dataQa
addSubscriptionInfoBlurb
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.background.w20
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.background.w20
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
getCardTitle(selectedAudit.auditEntityType)
onClose
handleCloseInfoMessage
backgroundColor
theme.palette.ux.learning.w10
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.warning.w10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInstructionMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInstructionMessage
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
onClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
handleDismissReuseIndexInfoCard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
() => setShowRDPInfo(false)
dataQa
restDeliveryPointInformation
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.warning.w10
dataQa
dataQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Upload From JSON File"
showCloseButton
true
onClose
handleCloseEnumVauesHelp
backgroundColor
theme.palette.background.default
dataQa
"enumValuesHelp"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title

+					
+					Referenced Schema Names Require Manual Updates
+				
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
title
reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? "Conflicting Topic Address" : "Conflicting Objects"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
attractedEventsNoResults
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Defining Topic Domains
showCloseButton
true
onClose
closeInfoBox
backgroundColor
theme.palette.ux.learning.w10
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
topicAddressResources
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
topicAddressResourcesMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Tips and Tricks for Topic Addresses"
showCloseButton
true
onClose
handleCloseTopicAddressHelp
backgroundColor
theme.palette.ux.learning.w10
dataQa
"topicAddressHelp"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
handleCloseInfoMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBrokers-noBrokers
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
dataQa
eventBrokers-noMatchingBrokers
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
messages.projectDefinition.help
dataQa
projectDefinitionHelp
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
backgroundColor
theme.palette.ux.learning.w10
onClose
() => setTranformationBlurbDismissedAtom(true)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
popover ? "popoverInfo" : "infoCard"
showCloseButton
!popover
onClose
() => (popover ? undefined : onClose && onClose)
title
Setting Values for Target Headers
backgroundColor
popover ? "inherit" : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
onClose
() => handleCloseDisplayMessage()
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
title
title
onClose
() => {
+						setShowEducationBlurb(false);
+					}
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
What is an Automated Upgrade?
backgroundColor
theme.palette.ux.learning.w10
showCloseButton
true
onClose
() => setNeedHelp(false)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
What is an Automated Upgrade?
backgroundColor
theme.palette.background.paper
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
#ffffff
dataQa
brokerSSOCard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
rgba(236, 240, 252, 1)
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
environmentsStr.messages.firstOpenBottomInfoTitle
dataQa
environmentFirstUseCardBottom
backgroundColor
#E6F2FF
onClose
handleCloseBottomMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
drawdownUsage.messages.title
dataQa
drawdownUsageFormulaCard
backgroundColor
#E6F2FF
onClose
handleCloseDisplayMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.primary.contrastText
dataQa
drawdownCard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
rgba(236, 240, 252, 1)
showCloseButton
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
+ + Message Service Alerts & Notification + + +
backgroundColor
#fff
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Logs Retention
backgroundColor
#fff
dataQa
logsRetentionCard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Who Can Receive Notifications?
dataQa
notificationAd
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.background.paper
+
+ +
+
+ +
+
+
+ SolaceSelectAutocomplete + 48 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui28
intgmaas-ui4
mcmaas-ui5
saasmaas-ui7
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name48
onChange48
dataQa47
options47
itemComponent47
itemMappingCallback47
optionsLabelCallback47
fetchOptionsCallback47
value46
isOptionEqualToValueCallback43
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (48)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
modeledEventMesh[select]
name
modeledEventMesh[select]
dataQa
modeledEventMesh[select]
label
Modeled Event Mesh
required
true
disabled
!selectedEnvironmentId
hasErrors
!!validationError.eventMeshError
helperText
validationError.eventMeshError
multiple
false
value
selectedEventMeshes[0]
options
matchingEventMeshes
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleEventMeshSelectChange
fetchOptionsCallback
handleFetchEventMeshOptionsCallback
getOptionDisabledCallback
handleOptionDisabled
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingService[select]
name
messagingService[select]
dataQa
messagingService[select]
label
"Event Broker"
required
true
disabled
selectedEventMeshes.length === 0
hasErrors
!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError
helperText
selectQueryError.messagingServiceError ?? validationError.messagingServiceError
multiple
false
value
selectedMessagingServices[0]
options
matchingMessagingServices
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleMessagingServiceSelectChange
fetchOptionsCallback
handleFetchMessagingServiceOptionsCallback
getOptionDisabledCallback
handleOptionDisabled
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
memAssociation[protocols]
name
memAssociation[protocols]
dataQa
memAssociation[protocols]
label
en.eventApiProduct.labels.supportedProtocols
required
true
hasErrors
!!validationError.protocolsError
helperText
validationError.protocolsError
multiple
true
disabled
!selectedMessagingServiceId
value
selectedProtocols
options
matchingProtocols
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleProtocolSelectChange
fetchOptionsCallback
handleFetchProtocolOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eapAssociation[protocols]
name
eapAssociation[protocols]
dataQa
eapAssociation[protocols]
label
en.eventApiProduct.labels.supportedProtocols
required
true
hasErrors
!!validationError.protocolsError
helperText
validationError.protocolsError
multiple
true
disabled
!selectedEventApiProductVersionId
value
selectedProtocols
options
matchingProtocols
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleProtocolSelectChange
fetchOptionsCallback
handleFetchProtocolOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingService
name
messagingServiceAutocomplete
dataQa
messagingService
label
Event Broker Context (optional)
helperText
selectQueryError.messagingServiceError ?? validationError.messagingServiceError
hasErrors
!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError
value
selectedMessagingService
options
matchingMessagingServices
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleMessagingServiceSelectChange
fetchOptionsCallback
handleFetchMessagingServiceOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getOptionDisabledCallback
handleOptionDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userAccessSelect-search
dataQa
`userAccessSelect-${resourceAssignment.userId}`
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
(option, value) => option?.value === value?.value
itemMappingCallback
(option) => option ?? { name: "", value: "" }
fetchOptionsCallback
(searchTerm) => setSearchTerm(searchTerm)
getOptionDisabledCallback
(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]
options
userOptions
value
selectedOption
onChange
handleOnChange
hasErrors
!!resourceAssignment.error
helperText
resourceAssignment.error
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
multiple
true
value
values
options
matchingValues
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getOptionDisabledCallback
handleOptionDisabledCallback
onChange
handleChange
fetchOptionsCallback
debouncedFetchOptionsCallback
shouldClearSearchOnSelectCallback
shouldClearSearchOnSelectCallback
maxHeight
400px
validateInputCallback
validateInputValue
hasErrors
hasErrors
helperText
helperText
dataQa
dataQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
enumeration
dataQa
enumerationName
label
Enumeration
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
searchLocalEnums
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingEnumOptions
onChange
handleEnumChange
value
selectedEnumOption
getOptionDisabledCallback
sharedSearchCriteria ? handleOptionDisabled : undefined
groupByCallback
getSolaceSelectAutocompleteGroupBy
showGroupDivider
true
helperText
sharedSearchCriteria ? "You can associate only shared enumerations with shared events." : null
width
65%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationDomainSelect-search
label
title ? title : "Application Domain"
inlineLabel
inlineLabel
multiple
false
onChange
handleApplicationDomainChange
value
selectedApplicationDomain
options
matchingApplicationDomains
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
handleFetchApplicationDomainOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
required
required
readOnly
!!readOnly
disabled
false
hasErrors
!!selectQueryError
helperText
showHelperText
maxHeight
370px
dataQa
applicationDomainSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationVersionSelect-search
label
title ?? "Application Version"
multiple
true
onChange
handleApplicationVersionChange
value
selectedApplicationVersions
options
applicationVersionOptions
itemComponent
getApplicationVersionSelectAutocompleteItem
itemMappingCallback
(option) => option
renderTags
() =>
+				selectedApplicationVersions?.[0] && (
+					{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}
+				)
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
handleFetchApplicationVersionOptionsCallback
isOptionEqualToValueCallback
isApplicationVersionSelectAutocompleteOptionEqual
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
groupByCallback
applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined
showGroupDivider
applicationVersionOptions.some((option) => option.divider) ? true : false
disableCloseOnSelect
false
required
true
disabled
disabled
hasErrors
!!selectQueryError
helperText
selectQueryError || helperText || ""
dataQa
applicationVersionSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
FilterTypeLabel[filterType]
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+						<>
+							{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+								
+							)}
+						
+					)
openOnFocus
true
inputRef
(input) => {
+						filterInputRefs.current[filterType] = input;
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${FilterType.eventMesh}Select`
name
`${FilterType.eventMesh}Select`
dataQa
`${FilterType.eventMesh}Select`
label
FilterTypeLabel.eventMesh
placeholder
selectedEventMeshes?.length ? "" : "No Filters"
multiple
true
value
selectedEventMeshes
options
matchingEventMeshes
itemComponent
getEventMeshSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getEventMeshSelectAutocompleteOptionLabel
onChange
handleChangeEventMeshes
fetchOptionsCallback
handleFetchEventMeshOptionsCallback
isOptionEqualToValueCallback
isEventMeshSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${customAttributeFilterType}Select`
name
`${customAttributeFilterType}Select`
dataQa
`${customAttributeFilterType}Select`
label
placeholder
selectedOptions.length > 0 ? "" : "No Filters"
multiple
true
value
selectedOptions
options
matchingOptions
itemComponent
CustomAttributeValueAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getCustomAttributeValueOptionLabel
getShowOptionDividerCallback
getShowCustomAttributeValueOptionDivider
onChange
handleChangeCustomAttributeValues
fetchOptionsCallback
handleFetchCustomAttributeValueOptionsCallback
isOptionEqualToValueCallback
isCustomAttributeValueOptionEqual
renderTags
() =>
+						debouncedSelectedOptions &&
+						debouncedSelectedOptions.length > 0 && (
+							
+						)
openOnFocus
true
inputRef
(input) => {
+						filterInputRefs.current[customAttributeFilterType] = input;
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
FilterTypeLabel[filterType]
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
filterLabel
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
templateEnvironmentAssociation
name
templateEnvironmentAssociation
dataQa
templateEnvironmentAssociation
placeholder
displayedEnvironments?.length ? "" : "Select environments"
required
!!isRequired
readOnly
!!isReadOnly
multiple
true
value
displayedEnvironments
options
matchingEnvironments
onChange
handleChangeEnvironments
itemComponent
EnvironmentMultiSelectOption
itemMappingCallback
(option) => {
+					return {
+						...option,
+						environmentOption: getEnvironmentChipObject(environmentOptions, option.id)
+					};
+				}
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
handleFetchEnvironmentsOptionsCallback
isOptionEqualToValueCallback
isEnvironmentSelectAutocompleteOptionEqual
hasErrors
!!hasErrors
helperText
helperText
inputRef
(input) => {
+					autocompleteRef.current = input;
+				}
renderTags
() =>
+					displayedEnvironments?.length > 0 && (
+						 {
+								return {
+									id: env.id,
+									content: (
+										 handleDeleteTag(env.id)}
+										/>
+									)
+								};
+							})}
+							columnGap={8}
+							showAll={false}
+							containerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}
+						/>
+					)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
shareFilterSelect
name
shareFilterSelect
dataQa
shareFilterSelect
label
en.kpiMetricsDashboard.sharedFilter
value
selectedSharedType
options
filteredSharedTypeOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleShareFilterChange
fetchOptionsCallback
filterSharedTypeOptions
openOnFocus
true
minWidth
175px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
brokerFilterSelect
name
brokerFilterSelect
dataQa
brokerFilterSelect
label
en.kpiMetricsDashboard.brokerTypeFilter
value
selectedBrokerType
options
filteredBrokerTypeOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleBrokerTypeFilterChange
fetchOptionsCallback
filterBrokerTypeOptions
openOnFocus
true
minWidth
175px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
FormNameTemplate
id
name
name
name
dataQa
name
value
templateOptionSelected
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
fetchOptionsCallback
updateTemplateOptions
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
templateOptions
onChange
(e) => {
+											onChange(e.value);
+
+											if (e.value?.value) {
+												selectTemplate(templates.find((template) => template.id === e.value.value));
+												// template changed - keep queue name, clear other properties
+												updateUserConfigValues({ queueName: queueName }, true);
+											} else {
+												resetTemplate();
+											}
+										}
helperText
error ? error.message : ""
hasErrors
!!error
disabled
isTemplateSelectionDisabled(templates, templateOutOfSync)
required
true
multiple
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
FormNameClientProfileName
id
name
name
name
dataQa
name
value
templateOptionSelected
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
fetchOptionsCallback
updateTemplateOptions
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
templateOptions
onChange
(e) => {
+											onChange(e.value);
+
+											if (e.value?.value) {
+												// template selected
+												const template = templates.find((template) => template.id === e.value?.value);
+												const clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);
+
+												setTemplateOptionSelected({
+													name: template.name,
+													value: template.id,
+													description: template.description,
+													clientProfileName: clientProfileName
+												});
+												setObservedConfiguration(clientProfileName);
+											} else {
+												// template cleared
+												reset(true);
+											}
+										}
helperText
error ? error.message : ""
hasErrors
!!error
disabled
templates.length === 0
required
true
multiple
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
placeholder
All Domains
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
fullWidth
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
multiple
true
options
getAutoCompleteOptions(level)
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
filterValues
onChange
(e) => onChange(e.value)
value
getAutoCompleteValue(value, level, name)
fullWidth
true
minWidth
622px
limitTags
2
dataQa
name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
dataQa
domainsSearch
multiple
true
label
en.eventApiProduct.labels.messagingService
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchMems
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingOptions
onChange
(e) => {
+								onChange(e.value);
+							}
hasErrors
!!error
helperText
error ? en.eventApi.error.requiredGatewayMessagingService : null
value
value
width
621px
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
requestorSelect
name
requestorSelect
dataQa
requestorSelect
label
Requestor
placeholder
selectedRequestors?.length ? "" : "No Filters"
multiple
true
value
selectedRequestors
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
(option) => option.name
onChange
handleRequestorChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
(option, value) => option.value === value.value
openOnFocus
true
inputRef
(input) => {
+												requestorInputRef.current = input;
+											}
renderTags
() => (
+												<>
+													{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (
+														
+													)}
+												
+											)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
placeholder
All Domains
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
searchLocalDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainsSearch
name
domainsSearch
dataQa
domainsSearch
placeholder
All Domains
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchDomains
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
matchingDomainOptions
onChange
onDomainSelectChange
value
selectedDomain
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventMeshSearch
name
eventMeshSearch
dataQa
eventMeshSearch
placeholder
selectedEventMeshes?.length ? "" : "No Filters"
multiple
true
value
selectedEventMeshes
options
matchingEventMeshes
itemComponent
getEventMeshSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getEventMeshSelectAutocompleteOptionLabel
onChange
handleChangeEventMeshes
fetchOptionsCallback
handleFetchEventMeshOptionsCallback
isOptionEqualToValueCallback
isEventMeshSelectAutocompleteOptionEqual
renderTags
() => (
+								<>
+									{selectedEventMeshes?.length > 0 && (
+										
+									)}
+								
+							)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${filterType}Select`
name
`${filterType}Select`
dataQa
`${filterType}Select`
label
label
placeholder
selectedItemValues?.length ? "" : "No Filters"
multiple
true
value
selectedItemValues
options
matchingOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleChange
fetchOptionsCallback
handleFetchOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
renderTags
() => (
+					<>
+						{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (
+							
+						)}
+					
+				)
openOnFocus
true
inputRef
(input) => {
+					filterInputRef.current = input;
+				}
maxHeight
22rem
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
serviceSearch
id
serviceSearch
dataQa
serviceSearch
label
en.connectors.labels.eventBrokerService
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
fetchOptionsCallback
fetchServices
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
options
showMIEnvironmentsFlag ? getOptionsForEnv : getOptions
onChange
onServiceSelectChange
value
selectedService
hasErrors
validationEnabled && !!solaceValidationErrors.eventBrokerService
helperText
validationEnabled && solaceValidationErrors.eventBrokerService
+									? solaceValidationErrors.eventBrokerService
+									: en.connectors.helperText.serviceName
getOptionDisabledCallback
(option) => option.value === "no_services"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
80%
fullWidth
true
name
`transformationAutocomplete_${nodeId}`
id
`transformationAutocomplete_${nodeId}`
dataQa
`transformationAutocomplete_${nodeId}`
label
en.connectors.labels.transformation
required
true
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
multiple
false
value
selectedTransformationFunction || undefined
options
matchingTransformationFunctions
onChange
handleTransformationFunctionChange
fetchOptionsCallback
handleFetchOptions
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`autocomplete-${id}`
id
`autocomplete-${id}`
dataQa
`autocomplete-${id}`
label
typeof data.label === "string"
+								? data.label
+								: data.type === "input"
+								? (en.transformations.labels.sourceItem as string)
+								: (en.transformations.labels.targetItem as string)
required
true
value
selectedField || undefined
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
itemMappingCallback
(option) => option
multiple
false
options
matchingData
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
onChange
handleChange
fetchOptionsCallback
handleFetchOptions
groupByCallback
getSolaceSelectAutocompleteGroupBy
showGroupDivider
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userAccessSelect-search
dataQa
`userAccessSelect-${resourceAssignment.userId}`
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
(option, value) => option?.value === value?.value
itemMappingCallback
(option) => option ?? { name: "", value: "" }
fetchOptionsCallback
(searchTerm) => setSearchTerm(searchTerm)
getOptionDisabledCallback
(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]
options
userOptions
value
selectedOption
onChange
handleOnChange
hasErrors
!!resourceAssignment.error
helperText
resourceAssignment.error
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
value
version
maxHeight
30vh
name
targetVersion
label
Target Version
hasErrors
!!formError
options
filterOptions
itemMappingCallback
(option) => option
helperText
formError ? formError : ""
getOptionDisabledCallback
(option) => option.value === currentVersion
fetchOptionsCallback
useDebouncedCallback(fetchOptionsCallback, 150)
onChange
(event) => {
+						setFormError("");
+						setVersion(event.value as SolaceSelectAutocompleteItemProps);
+					}
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
region
name
region
dataQa
region
value
value
onChange
handleChange
hasErrors
hasErrors
helperText
errorText
disabled
regionDisabled
placeholder
getPlaceholder()
fetchOptionsCallback
fetchOptions
isOptionEqualToValueCallback
isOptionEqual
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
regionToString
itemMappingCallback
itemToRegion
groupByCallback
getGroupBy
getOptionDisabledCallback
isOptionDisabled
options
matchingRegions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clusterName
name
clusterName
dataQa
clusterName
readOnly
isCloning
required
!!edit
disabled
disabled
fetchOptionsCallback
fetchOptions
isOptionEqualToValueCallback
isOptionEqual
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
clusterNameToString
itemMappingCallback
itemMappingCallback
helperText
errorText ? errorText : t({ id: "id_cluster_name_info", message: "Type a new cluster name or select an existing one." })
options
matchingClusterNames
value
value
hasErrors
hasErrors
maxHeight
theme.spacing(30)
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
userAccessSelect-search
dataQa
`userAccessSelect-${resourceAssignment.userId}`
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
isOptionEqualToValueCallback
(option, value) => option?.value === value?.value
itemMappingCallback
(option) => option ?? { name: "", value: "" }
fetchOptionsCallback
(searchTerm) => setSearchTerm(searchTerm)
getOptionDisabledCallback
(option) =>
+				!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]
options
userOptions
value
selectedOption
onChange
handleOnChange
hasErrors
!!resourceAssignment.error
helperText
resourceAssignment.error
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
transferServicesDropdownSelect
name
transferServicesDropdownSelect
dataQa
transferServicesDropdownSelect
fetchOptionsCallback
fetchOptionsCallback
required
true
multiple
false
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleOnChange
options
usersDropdownList
title
Select a user to transfer services to
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
id
userGroupRoleDropdownId
name
userGroupRoleDropdown
width
800px
label
userGroups.ugDialog.roles
dataQa
userGroupRoleDropdownQa
multiple
true
onChange
handleUserGroupRoleChange
value
dialogState.roleValue ? dialogState.roleValue : currentFilters
options
filterOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFiltersCallback
getOptionDisabledCallback
handleRolesDisabled
hasErrors
hasRoleError
helperText
hasRoleError ? userGroups.ugDialog.ugRoleError : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.auditLogs.username
id
usernameSelectFilter
name
usernameSelectFilter
dataQa
usernameSelectFilter
onChange
(e) => handleEmailSelection(e.value as IEmailOption)
value
filters.email.value ? selectedEmail : undefined
options
emailSearchTerm ? matchingEmails : getEmails(usersDetails)
itemComponent
(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {
+					return SolaceSelectAutocompleteItem({
+						name: item.name,
+						value: item.name
+					});
+				}
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFetchProtocolOptionsCallback
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
userGroupManagement.defaultUserGroupLabel
hasErrors
true
id
customizeUserGroup
name
customizeUserGroup
dataQa
customizeUserGroup
required
true
helperText
!selectedUserGroup ? userGroupManagement.selectDefaultGroup : ""
placeholder
selectedUserGroup?.name
options
userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)
itemComponent
(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {
+										return SolaceSelectAutocompleteItem({
+											name: item.name,
+											subText: item.roles?.join(", "),
+											value: item.name
+										});
+									}
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
onChange
handleUserGroupSelectChange
fetchOptionsCallback
handleFetchProtocolOptionsCallback
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
width
30rem
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
true
id
claimMappingUserGroups
name
claimMappingUserGroups
dataQa
claimMappingUserGroups
multiple
true
onChange
(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])
value
selectedUserGroups
options
userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)
itemComponent
(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {
+					return SolaceSelectAutocompleteItem({
+						name: item.name,
+						subText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(", "),
+						value: item.name
+					});
+				}
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFetchProtocolOptionsCallback
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
servicesDropdownId
name
servicesDropdown
dataQa
supportPageService
onChange
handleServiceDropdown
fetchOptionsCallback
handleServiceCallback
itemMappingCallback
(option) => option
options
services
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
itemComponent
SolaceSelectAutocompleteItem
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
value
dropdownValueFromParam
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
multiple
true
name
cloudProvider
label
Cloud Provider
dataQa
cloudProviderSelect
width
300px
options
filteredCloudProviderOptions
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
filterCloudProviderOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(item: { value: string; name: string; }) => item
value
filteredCloudProviders
onChange
handleCloudProviderChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
multiple
true
name
k8sVersion
label
Kubernetes Version
dataQa
k8sVersionSelect
width
300px
options
filteredK8sVersionOptions
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
fetchOptionsCallback
filterK8sVersionOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(item: { value: string; name: string; }) => item
value
filteredK8sVersions
onChange
handleK8sVersionChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
dataQa
filterBy
name
filterBy
label
Filter By
width
500px
multiple
true
onChange
(event) => {
+							setPageNumber(1);
+							setCurrentFilters(event.value as { name: string; value: string }[]);
+						}
value
currentFilters
options
filterOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
groupByCallback
getSolaceSelectAutocompleteGroupBy
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFiltersCallback
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inlineLabel
true
dataQa
filterBy
name
filterBy
label
Filter By
width
500px
multiple
true
onChange
(event) => {
+							setPageNumber(1);
+							setCurrentFilters(event.value as Filter[]);
+						}
value
currentFilters
options
filterOptions
itemComponent
SolaceSelectAutocompleteItem
itemMappingCallback
(option) => option
optionsLabelCallback
getSolaceSelectAutocompleteOptionLabel
getShowOptionDividerCallback
getShowSolaceSelectAutocompleteOptionDivider
groupByCallback
getSolaceSelectAutocompleteGroupBy
isOptionEqualToValueCallback
isSolaceSelectAutocompleteOptionEqual
fetchOptionsCallback
handleFiltersCallback
+
+ +
+
+ +
+
+
+ SolaceTruncatableLink + 48 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui46
intgmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id48
text48
onClick31
dataQa8
href2
key1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (48)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventBrokerNameValue
text
selectedEventBroker.name
onClick
() => {
+								window.open(
+									`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`
+								);
+							}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationNameValue
text
selectedApplication.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
authenticationTypeValue
text
getCredentialsLabel(credentials)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
authenticationTypeAValue
text
getCredentialsFieldValue(credentials, "inputA")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
authenticationTypeBValue
text
getCredentialsFieldValue(credentials, "inputB")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfile
text
selectedClientProfileName ?? "default"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
restDeliveryPointNameValue
text
rdpName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
clientProfileValue
text
selectedClientProfileName ?? "default"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityType}NameValue`
text
entity.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
version.id
text
<>
+													{`${version.parentName} `}
+													{version.display || version.semver}
+												
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
version.id
text
onVersionNameClick ? version.display || version.semver : {version.display || version.semver}
onClick
onVersionNameClick ? () => onVersionNameClick(version) : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
event.id
text
event.name
onClick
() => eventSelectionCallback(event)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationVersion.id
text
{`${applicationVersion.parent.name} `}
onClick
(event) => {
+									event.stopPropagation();
+									onVersionClick({
+										entityId: applicationVersion.parent.id,
+										entityVersionId: applicationVersion.id,
+										entityType: EntityType.application,
+										nodeId: null
+									});
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationVersion.id
text
{applicationVersion.displayName || applicationVersion.version}
onClick
(event) => {
+									event.stopPropagation();
+									onVersionClick({
+										entityId: applicationVersion.parent.id,
+										entityVersionId: applicationVersion.id,
+										entityType: EntityType.application,
+										nodeId: null
+									});
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
eventApiProductVersion.id
text
eventApiProductName
onClick
(e) => {
+									e.stopPropagation();
+									onNameClick(eventApiProductVersion);
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
item.id
text
itemName
onClick
(e) => {
+							e.stopPropagation();
+							onNameClick(item);
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
href
`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingService.id
text
messagingService.name
onClick
() => onTitleLinkClick(messagingService)
dataQa
messagingService[Accordion][Title]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${entityVersion.parent.id}-${entityVersion.id}`
text
entityVersion.parent.name
onClick
handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))
+						? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)
+						: null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id + "_name"
text
row.eventMeshName
onClick
hasAccess ? () => handleViewDetail(row) : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${associatedEvents?.[0]?.id}`
text
associatedEvents?.[0]?.name ?? ""
onClick
() => handleDetailDialogOpen(associatedEvents?.[0])
dataQa
`${associatedEvents?.[0]?.name}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`appVersionSummaryPopoverText=${applicationVersion.id}`
text
applicationVersion.displayName || applicationVersion.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`appVersionName-${applicationVersion.id}`
text
applicationVersion.displayName || applicationVersion.version
onClick
() => openApplicationDetails(applicationVersion.parent, applicationVersion)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`appName-${application.id}`
text
application.name
onClick
() => openApplicationDetails(application)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
id
event?.name
text
event?.name ?? ""
onClick
() => handleDetailDialogOpen(event)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
associatedEventParents?.[0]?.name
text
associatedEventParents?.[0]?.name ?? ""
onClick
() => handleDetailDialogOpen(associatedEventParents?.[0])
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaDetail?.name}`
text
schemaDetail?.name ?? ""
onClick
() => handleDetailDialogOpen(null)
dataQa
`${schemaDetail?.name}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${applicationDetail?.parent?.name}-${applicationDetail?.version}`
text
applicationDetail?.parent?.name ?? ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${eventDetail?.parent?.name}-${eventDetail?.version}`
text
eventDetail?.parent?.name ?? ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${versionNumber}`
text
`Version ${versionNumber}`
onClick
() => handleVersionLinkClick(relation)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${row.id}-templateLink`
onClick
() => handleSelectTemplate(row.id)
id
row.id
text
row.templateName
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"contextSelector-title"
text
`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : ""}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
item.id
text
item.name
onClick
canOpen ? () => onOpen(item) : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
node.versionId
text
node.name
onClick
handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.eventId
text
row.eventName
onClick
(e) => {
+						e.stopPropagation();
+						handleRowHighlight(row);
+						onEventClick(row.event);
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.applicationId
text
row.application?.name ?? "-"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
request.applicationId
text
request.application.name
onClick
applicationDomainLocked ? null : () => onApplicationClick(request.application)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
onClick
() => handleEdit(row)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion.id}-link`
text
schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version
onClick
() => onViewSchemaVersionDetails(schema, schemaVersion)
dataQa
`${schemaVersion.id}-viewDetails`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClick
environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined
id
eventBroker.id
text
eventBroker.name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${applicationVersion.id}-applicationVersion-link`
href
`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`
id
applicationVersion.id
text
applicationVersion.displayName || applicationVersion.version
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
limitString(row.name, 35)
dataQa
`${camelCase(row.name)}_button`
onClick
() =>
+									startTransition(() => {
+										history.push(`/micro-integrations/${row.id}`);
+									})
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
row.id
text
row.name
dataQa
`row.name_button`
+
+ +
+
+ +
+
+
+ SolacePagination + 46 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui17
intgmaas-ui2
mcmaas-ui4
saasmaas-ui6
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui15
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
totalResults46
pageSize46
activePage46
onPageSelection46
loading12
displayText5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (46)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
tableRows.length
pageSize
PAGE_SIZE
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
applicationVersionsCount
pageSize
20
activePage
applicationCurrentPage
onPageSelection
setApplicationCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
eventVersionsCount
pageSize
20
activePage
eventCurrentPage
onPageSelection
setEventCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
schemaVersionsCount
pageSize
20
activePage
schemaCurrentPage
onPageSelection
setSchemaCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
eventApiProductVersionsCount
pageSize
20
activePage
eapCurrentPage
onPageSelection
setEapCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityVersionsCount
pageSize
pageSize
activePage
currentPageNumber
onPageSelection
setCurrentPageNumber
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityVersionsCount
pageSize
pageSize
activePage
currentPageNumber
onPageSelection
setCurrentPageNumber
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityVersionsCount
pageSize
pageSize
activePage
currentPageNumber
onPageSelection
setCurrentPageNumber
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
pagination?.pageNumber
onPageSelection
setCurrentPage
pageSize
pagination?.pageSize
totalResults
pagination?.count
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
20
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
entityCount
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
requests.length
pageSize
pageSize
activePage
currentPage
onPageSelection
setCurrentPage
displayText
""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
meta.pagination.count ?? 0
pageSize
meta.pagination.pageSize
activePage
meta.pagination.pageNumber
onPageSelection
handlePageSelection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
meta.pagination.count ?? 0
pageSize
meta.pagination.pageSize
activePage
meta.pagination.pageNumber
onPageSelection
handlePageSelection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
pagination.pageNumber + 1
pageSize
pagination.pageSize
totalResults
totalResults
onPageSelection
() => 1
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
1
pageSize
100
totalResults
totalResults
onPageSelection
handlePageSelection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
pagination.pageNumber
pageSize
pagination.pageSize
totalResults
totalResults
onPageSelection
handlePageSelection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
displayText
t({ id: "id_pagination", message: "Showing {0}-{1} of {2} results", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })
activePage
pagination.pageNumber
pageSize
pagination.pageSize
totalResults
totalResults
onPageSelection
handlePageSelection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
getMetadata().count
pageSize
getMetadata().pageSize
activePage
selectedPage
onPageSelection
onSelectPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
userTablePage
pageSize
USER_LIST_DATA_PER_PAGE
totalResults
pageCount || 0
onPageSelection
(page) => setUserTablePage(page)
loading
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
getMetadata().count
pageSize
getMetadata().pageSize
activePage
selectedPage
onPageSelection
onSelectPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
meta?.pagination.pageNumber + 1
onPageSelection
(page) => fetchNewPage(page)
totalResults
meta?.pagination.totalHitCount
pageSize
meta?.pagination.pageSize
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
1
pageSize
10
totalResults
rows.length
onPageSelection
() => undefined
loading
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
notificationsResponse?.meta?.pageNumber + 1
onPageSelection
(page) => {
+									setPageNumber(page);
+								}
totalResults
notificationsResponse?.meta?.count
pageSize
notificationsResponse?.meta?.pageSize
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
totalClusterLength
activePage
pageNumber
pageSize
pageSize
onPageSelection
handlePageChange
loading
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
totalCount
activePage
currentPage
pageSize
pageSize
loading
isPending
onPageSelection
handlePageChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
getMetadata().count
pageSize
getMetadata().pageSize
activePage
selectedPage
onPageSelection
onSelectPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
getMetadata().count
pageSize
getMetadata().pageSize
activePage
selectedPage
onPageSelection
onSelectPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
paginationData.total
activePage
paginationData.currentPage
pageSize
paginationData.pageSize
onPageSelection
onSelectDifferentPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
(adminServiceResponse?.meta?.pageNumber ?? -1) + 1
pageSize
adminServiceResponse?.meta?.pageSize ?? 20
totalResults
adminServiceResponse?.meta?.count ?? 0
loading
adminServiceResponseIsLoading
onPageSelection
(selectedPage) => {
+						setPageNumber(selectedPage - 1);
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pageSize
pageSize
activePage
pageNumber
totalResults
jobsCount
onPageSelection
(page) => setPageNumber(page)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
activePage
onPageSelection
setActivePage
pageSize
pagination?.pageSize
totalResults
pagination?.count
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
activePage
loading
managementAgentsIsLoading
onPageSelection
setActivePage
pageSize
pagination.pageSize
totalResults
pagination.count
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
paginationData?.count
activePage
paginationData?.pageNumber
pageSize
paginationData?.pageSize
onPageSelection
setPage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
pageSize
pageSize
activePage
page
totalResults
tableRows.length
loading
loadingServicePackages
onPageSelection
handlePageSelection
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
totalResults
paginationData.total
activePage
paginationData.currentPage
pageSize
paginationData.pageSize
onPageSelection
handlePageChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
pageNumber
pageSize
pageSize
totalResults
totalResults
onPageSelection
(selectedPage) => setPageNumber(selectedPage)
loading
loadingOrgs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
pageNumber
pageSize
pageSize
totalResults
totalResults
onPageSelection
(selectedPage) => setPageNumber(selectedPage)
loading
loadingJobs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
pageNumber
pageSize
pageSize
totalResults
connectorCount
onPageSelection
(selectedPage) => {
+							setPageNumber(selectedPage);
+							setConnectorQuery(queryBuilder({ orgId, pageSize, pageNumber: selectedPage }));
+						}
loading
isLoading && isLoadingMicroIntegrations && isLoadingAgents
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
brokerCompatibility?.meta?.pageNumber ?? 0
pageSize
pageSize
totalResults
brokerCompatibility?.meta?.count ?? 0
onPageSelection
(selectedPage) => {
+								setPageNumber(selectedPage);
+								setBrokerQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));
+							}
loading
brokerCompatibilityIsLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activePage
helmChartCompatibility?.meta?.pageNumber ?? 0
pageSize
pageSize
totalResults
helmChartCompatibility?.meta?.count ?? 0
onPageSelection
(selectedPage) => {
+								setPageNumber(selectedPage);
+								setHelmChartQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));
+							}
loading
brokerCompatibilityIsLoading
+
+ +
+
+ +
+
+
+ SolaceChip + 42 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui20
intgmaas-ui1
saasmaas-ui6
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui13
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label42
key13
variant11
maxWidth10
onDelete9
dataQa7
fillColor7
clickable6
size6
labelColor5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (42)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
variant
CHIP_VARIANT.OUTLINED
state
selected ? STATES.ACTIVE : STATES.NOT_SELECTED
clickable
true
borderRadius
"sm"
boldLabel
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
selectedEventMesh.name
variant
CHIP_VARIANT.FILLED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
disabled
disabled
onDelete
onDelete
dataQa
`filterChip-${filterType}`
clickable
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
protocolName.name
variant
CHIP_VARIANT.FILLED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
messages.configuration.enabled
variant
CHIP_VARIANT.FILLED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
messagingService.eventMeshId
label
messagingService.eventMeshName
variant
CHIP_VARIANT.FILLED
maxWidth
200px
disabled
toBeRemoved
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`
variant
CHIP_VARIANT.FILLED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
applicationDomainName
maxWidth
isSidePanel ? 100 : 150
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
label

+								{applicationDomainName}
+								{isAppDomainLocked && }
+							
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
disabled
disabled
onDelete
onDelete
dataQa
`filterChip-${filterType}`
clickable
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
tag.id
label
tag.name
variant
CHIP_VARIANT.FILLED
borderRadius
"sm"
boldLabel
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label

+											 {AUDIT_TAGS_LABELS.Hide}
+										
variant
CHIP_VARIANT.FILLED
borderRadius
"sm"
boldLabel
false
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
applicationDomainName
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
domainInfoMap[item.id].name
maxWidth
150
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
name
maxWidth
200
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
messages.configuration.enabled
variant
CHIP_VARIANT.FILLED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
eventMesh.name
variant
CHIP_VARIANT.FILLED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
 1 ? "s" : ""}: ${consumersCount}`}>
+						{`Consumer${consumersCount > 1 ? "s" : ""}: ${consumersCount}`}
+					
maxWidth
110
dataQa
`consumerChip-${eventVersionId}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
disabled
disabled
onDelete
onDelete
dataQa
`filterChip-${filterType}`
clickable
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
CHIP_VARIANT.FILLED
labelColor
chipProps.labelColor
fillColor
chipProps.fillColor
height
md
label
{chipProps.label}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dialogState.user?.email
label
dialogState.user?.email
maxWidth
"fit-content"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
dialogState.user?.email
label
dialogState.user?.email
maxWidth
"fit-content"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
group.id
label
group.name
maxWidth
"fit-content"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
user.email
maxWidth
"fit-content"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
index
label
filter.name + " : " + filter.value
onDelete
() => deleteFilter(filter.key)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/CommonAppBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
BETA
size
xs
fillColor
CHIP_COLORS.LIGHT_GREY
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
clickable
true
label
`${label}: ${value}`
onDelete
onDeleteFunc
dataQa
dataQaId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
BETA
size
xs
fillColor
CHIP_COLORS.LIGHT_GREY
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
clickable
true
label
label
onDelete
() => onDeleteFunc()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
label
value
onDelete
() => setFilters({ ...filters, [key]: "" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
size
sm
maxWidth
fit-content
label
item
...
setChipArray ? { onDelete: () => setChipArray(item) } : {}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${value}-chip`
label
capitalCase(value)
onDelete
() => modifyFilters().removeFilter(value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
email + index
label
email
labelColor
CHIP_COLORS.DARK_GREY
fillColor
CHIP_COLORS.LIGHT_GREY
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
email + index
label
email
labelColor
CHIP_COLORS.DARK_GREY
fillColor
CHIP_COLORS.LIGHT_GREY
onDelete
() => removeEmail(email)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
feature
label
feature
size
sm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
more
label
integrationStrings.organizations.table.moreFeatures(features.length - 1)
size
sm
dataQa
more-features
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
feature
label
feature
size
sm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`visible-${index}-${email}`
label
email
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Up to Date
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
Out of Date
labelColor
CHIP_COLORS.warnYellow
fillColor
CHIP_COLORS.warnBgYellow
+
+ +
+
+ +
+
+
+ SolaceTabs + 38 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui22
intgmaas-ui4
mcmaas-ui3
saasmaas-ui2
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
tabs36
activeTabValue36
onTabClick29
size15
variant10
...2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (38)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
size
sm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
size
sm
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
size
md
variant
fullWidth
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => setActiveTab(tab)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabArray
activeTabValue
activeTab
size
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeEntityType
size
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
selectedTab
onTabClick
handleTabClick
tabs
[
+										{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: "mostUsed" },
+										{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: "leastused" }
+									]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => handleTabClick(tab)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
brokerTypeOptions
activeTabValue
addObjectsActiveTab
onTabClick
handleAddObjectTabClick
size
sm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
size
md
variant
fullWidth
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
size
md
variant
fullWidth
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tabValue) => setActiveTab(tabValue)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
actionTabs
activeTabValue
activeTab
onTabClick
handleActionTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeEntityType
size
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs(setActiveTab, showMiTransformation, showGaMiTransformation)
activeTabValue
activeTab
variant
scrollable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
activeStep
onTabClick
setActiveStep
tabs
[
+					{ value: "1", label: t({ id: "id_get_api", message: "1. Get API" }) },
+					{ value: "2", label: t({ id: "id_connect_service", message: "2. Connect to Service" }) },
+					{ value: "3", label: t({ id: "id_learn_more", message: "3. Learn with Tutorials" }) }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
certType
onTabClick
setCertType
tabs
[
+									{ value: "client", label: t({ id: "id_client_cert_auths", message: "Client Certificate Authorities" }) },
+									{ value: "domain", label: t({ id: "id_domain_cert_auths", message: "Domain Certificate Authorities" }) }
+								]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
tab
tabs
[
+							{ label: t({ id: "id_status", message: "Status" }), value: "status" },
+							{ label: t({ id: "id_connect", message: "Connect" }), value: "connect", disabled: areTabsDisabled },
+							{ label: t({ id: "id_manage", message: "Manage" }), value: "manage", disabled: areTabsDisabled },
+							{ label: t({ id: "id_monitoring", message: "Monitoring" }), value: "monitoring", disabled: areTabsDisabled },
+							{ label: t({ id: "id_configuration", message: "Configuration" }), value: "configuration", disabled: isInProgress },
+							{ label: t({ id: "id_tryme", message: "Try Me!" }), value: "tryme", disabled: areTabsDisabled }
+						]
onTabClick
(value) => {
+							if (value === "manage") {
+								if (missionControl?.manageUI) {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: "security" }));
+								} else {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));
+								}
+							} else {
+								history.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));
+							}
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
activeTab
variant
scrollable
tabs
TABS
size
md
onTabClick
handleTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
activeTab
variant
scrollable
tabs
TABS
size
md
onTabClick
handleTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
activeTabValue
tab
tabs
[
+                            { label: "Datacenters", value: "datacenters" },
+                            { label: "Preupgrade Validation", value: "preupgrade-validation" },
+                            { label: "System Components", value: "system-components" },
+                            { label: "Network", value: "network" },
+                            { label: "Services", value: "services" },
+                        ]
onTabClick
(tab) => history.push(`/clusters/${clusterId}/${tab}`)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(value) => setActiveTab(value as EMA_TYPES)
size
lg
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
handleTabChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => setActiveTab(tab as MonitoringTabs)
size
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => setActiveTab(tab)
size
md
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
wanTuningFeaturesTabs
activeTabValue
activeTabFeature
onTabClick
(tab) => setActiveTabFeature(tab as WanTuningFeatures)
variant
fullWidth
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
tabs
tabs
activeTabValue
activeTab
onTabClick
(tab) => setActiveTab(tab)
size
md
+
+ +
+
+ +
+
+
+ SolaceCircularProgress + 37 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui7
intgmaas-ui3
mcmaas-ui11
saasmaas-ui6
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui9
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
size23
variant13
message5
dataQa1
disableShrink1
data-qa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (37)

+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
testId
variant
indeterminate
size
size
disableShrink
disableShrink
message
message
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
Retrieving event broker service details...
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
Deploying license to broker...
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
Removing Distributed Tracing license from broker...
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
sm
message
configuringMessage
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
size
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
size
xs
+
+ + + + + + + + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
size
sm
data-qa
loading-spinner
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
size
sm
variant
loadingVariant
+
+ +
+
+ +
+
+
+ SolaceToggle + 35 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui25
intgmaas-ui2
mcmaas-ui3
saasmaas-ui2
maas-ops-reactmaas-ops-ui3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name35
onChange35
isOn34
id24
label22
dataQa20
helperText6
disabled4
...3
title2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (35)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges"
name
"shouldGroupEdges"
dataQa
`${dataQa ? dataQa + "-" : ""}shouldGroupEdges`
onChange
(event) => setShouldGroupEdges?.(event.value)
isOn
shouldGroupEdges
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings"
name
"showWarnings"
dataQa
`${dataQa ? dataQa + "-" : ""}showWarnings`
onChange
(event) => setShowWarnings?.(event.value)
isOn
showWarnings
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullName"
name
"showFullName"
dataQa
`${dataQa ? dataQa + "-" : ""}showFullName`
onChange
(event) => setShowFullNames?.(event.value)
isOn
showFullNames
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"shouldGroupEdges"
name
"shouldGroupEdges"
dataQa
`${dataQa ? dataQa + "-" : ""}shouldGroupEdges`
onChange
(event) => setShouldGroupEdges?.(event.value)
isOn
shouldGroupEdges
disabled
disableActionToChangeGraph
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings"
name
"showWarnings"
dataQa
`${dataQa ? dataQa + "-" : ""}showWarnings`
onChange
(event) => setShowWarnings?.(event.value)
isOn
showWarnings
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullName"
name
"showFullName"
dataQa
`${dataQa ? dataQa + "-" : ""}showFullName`
onChange
(event) => setShowFullNames?.(event.value)
isOn
showFullNames
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showNewEventVersionIndicator"
name
"showNewEventVersionIndicator"
dataQa
`${dataQa ? dataQa + "-" : ""}showNewEventVersionIndicator`
onChange
(event) => setShowNewEventVersionIndicator?.(event.value)
isOn
showNewEventVersionIndicator
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"snapNodeToGrid"
name
"snapNodeToGrid"
dataQa
`${dataQa ? dataQa + "-" : ""}snapNodeToGrid`
onChange
(event) => setSnapNodeToGrid?.(event.value)
isOn
snapNodeToGrid
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showWarnings
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showWarnings
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
showWarnings
name
showWarnings
label
"Show Warnings"
isOn
showWarnings
onChange
(event) => handleShowWarningsChange(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
disableMultiSelect
label
"Disable Multi Select"
isOn
disableMultiSelect
onChange
(event) => setDisableMultiSelect(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
disableMoveNodes
label
"Disable Move Nodes"
isOn
disableMoveNodes
onChange
(event) => setDisableMoveNodes(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showWarnings"
name
"showWarnings"
dataQa
"showWarnings"
onChange
(event) => setShowWarnings?.(event.value)
isOn
showWarnings
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showFullNames"
name
"showFullNames"
dataQa
"showFullNames"
onChange
(event) => setShowFullNames?.(event.value)
isOn
showFullNames
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showSchema"
name
"showSchema"
dataQa
"showSchema"
onChange
(event) => setShowSchema?.(event.value)
isOn
showSchema
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all_resources
isOn
selectedEnvironment?.showAllResources
onChange
({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)
name
show_all_envs
label
messages.header.showAllResources
helperText
messages.header.helperText
dataQa
REMHeaderShowAllResources
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOn
hideMatches
name
hide-match
label
Hide Matches
onChange
handleHideMatch
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isOn
hideSubRelationshipsMatches
name
hide-match
label
Hide Matches
onChange
handleSubjectRelationshipHideMatch
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
showPropertyNames
label
application.configuration.showPropertyNames
isOn
showPropertyNames
onChange
() => setShowPropertyNames(!showPropertyNames)
dataQa
showPropertyNamesToggle
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showAdvancedProperties"
name
"showAdvancedProperties"
label
"Show Advanced Properties"
dataQa
"showAdvancedPropertiesToggle"
onChange
() => setShowAdvancedProperties((prevValue) => !prevValue)
isOn
showAdvancedProperties
disabled
!restDeliveryPoint?.restConsumerConfiguration
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"showAdvancedProperties"
name
"showAdvancedProperties"
label
en.application.configuration.restDeliveryPoint.showAdvancedProperties
dataQa
`showAdvancedProperties`
onChange
() => setShowAdvancedProperties((prevValue) => !prevValue)
isOn
showAdvancedProperties
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all
isOn
selectedEnvironment.showAllResources
onChange
handleShowAllEnvs
name
show_all_envs
label
t({ id: "id_show_all_environments", message: "Show resources in all environments" })
helperText
t({
+														id: "id_show_all_environments_help",
+														message: "Enable to manage resources across environments"
+													})
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all
isOn
selectedEnvironment.showAllResources
onChange
handleShowAllEnvs
name
show_all_envs
label
t({ id: "id_show_all_environments", message: "Show resources in all environments" })
helperText
t({
+												id: "id_show_all_environments_help",
+												message: "Enable to manage resources across environments"
+											})
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomToggle.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
isOn
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
delete_protection
name
delete_protection
dataQa
delete-protection
isOn
isLocked
disabled
!canConfigure
onChange
handleDeleteProtection
stateText
true
label
t({ id: "id_delete_protection", message: "Delete Protection" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
show_all
isOn
selectedEnvironment.showAllResources
onChange
handleShowAllEnvs
name
show_all_envs
label
t({ id: "id_show_all_environments", message: "Show resources in all environments" })
helperText
t({ id: "id_show_all_environments_help", message: "Enable to manage resources across environments" })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
securitySettingsPreAuth
label
brandableTextValueConverter("PubSub+", "string") + " " + en.accountSettings.preAuthText
name
securitySettingsPreAuth
onChange
(value) => togglePreAuth(value.value)
title
Security Settings Pre Auth
isOn
!preOrgConfigResponse?.data.useAuthWebUILinks
disabled
preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig
dataQa
preAuthText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
helperText
en.notifications[showUnreadNotifications ? "showingUnreadNotifications" : "showingAllNotifications"]
id
showUnreadNotifications
dataQa
showUnreadNotifications
label
en.notifications.showUnreadNotifications
name
showUnreadNotifications
onChange
(e) => setShowUnreadNotifications(e.value)
title
en.notifications.showUnreadNotifications
isOn
showUnreadNotifications
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
profileToggle
isOn
resource.enabled
onChange
() => handleResourceToggle(resource.profile)
dataQa
`${resource.profile}_toggle`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
rest
isOn
rest.value
name
datacenterVisibility
onChange
(event) => rest.onChange(event.value)
label
Visible
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
rest
name
datacenterAvailability
onChange
(event) => rest.onChange(event.value)
label
Available
+
+ +
+
+ +
+
+
+ SolaceDetailMessage + 33 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui13
intgmaas-ui5
mcmaas-ui1
saasmaas-ui4
maas-ops-reactmaas-ops-ui10
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
details28
title27
msgImg26
actions20
...1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (33)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions[0] ?? null
details
details[0] ?? null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions[1] ?? null
details
details[1] ?? null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions[0] ?? null
details
details[0] ?? null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions[1] ?? null
details
details[1] ?? null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
messages[configType].emptyConfigurationTitle
actions

+						{messages[configType].emptyLinkToDocumentation}
+					
details
{messages[configType].emptyConfigurationDetail}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
msgImg
title
title
actions
actions[0] ?? null
details
details[0] ?? null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions
actions[1] ?? null
details
details[1] ?? null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
title
actions

+							{en.connectors.buttons.clearFilters}
+						
details
details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
actions

+									{secondSectionActionString}
+								
details
secondSectionDetails
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping
details
readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription
actions
[
+					{
+						id: "learn-about-mapping-btn",
+						variant: "link",
+						dataQa: "learn-about-mapping-btn",
+						children: en.connectors.buttons.learnMapping,
+						href: "https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.labels.noConnectorFlows
msgImg
details
en.connectors.labels.tableEmptyDescription
actions
[
+					{
+						id: "create-connector-flow-btn",
+						variant: "call-to-action",
+						dataQa: "create-connector-flow-btn",
+						children: en.connectors.create,
+						onClick: onCreateConnectorFlow
+					},
+					{
+						id: "view-all-connector-btn",
+						variant: "text",
+						dataQa: "view-all-connector-btn",
+						children: en.connectors.buttons.viewAllTypes,
+						onClick: OnViewAllConnectorType
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/EmptyPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
illustration ?? 
title
title ?? "Nothing to see here!"
details
details ?? "Please try returning to main page."
actions
!hideEscapeRoute
+							? [
+									{
+										id: "empty-panel-btn",
+										variant: variant ?? "call-to-action",
+										dataQa: dataQa ?? "back-integration",
+										children: buttonLabel ?? "Go to Integration",
+										onClick
+									}
+							  ]
+							: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/EmptyPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
illustration ?? 
title
title ?? t({ id: "id_nothing_here", message: "Nothing to see here!" })
details
details ?? t({ id: "id_return_home", message: "Please try returning to main page." })
actions
!hideEscapeRoute
+							? [
+									{
+										id: "empty-panel-btn",
+										variant: variant ?? "call-to-action",
+										dataQa: dataQa ?? "back-mission-control",
+										children: buttonLabel ?? t({ id: "id_goto_mc", message: "Go to Mission Control" }),
+										onClick
+									}
+							  ]
+							: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details
drawdownUsage.noDrawdownUsage.noDrawdownUsageSub
msgImg
title
drawdownUsage.noDrawdownUsage.noDrawdownUsage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details

+						
+							{drawdownUsage.noDrawdownUsage.subTitle}
+							{drawdownUsage.noDrawdownUsage.message}
+						
+					
msgImg
title
drawdownUsage.noDrawdownUsage.title
actions
[
+					{
+						children: drawdownUsage.noDrawdownUsage.contactUs,
+						id: "contactUs-btn",
+						onClick: () => toggleContactUsModalOpenState(),
+						variant: "call-to-action"
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details

+							
+								{supportPage.freeTrialDescription}
+								
+									{supportPage.freeTrialDescriptionExt}
+									
+									{supportPage.freeTrialDescriptionExt2}
+								
+							
+						
msgImg
title
supportPage.freeTrialTitle
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
upgradeMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
No plan selected
details
Create or select a listed plan to view its details.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
Failed to fetch upgrade run
details
Run data could not be retrieved. It may have been deleted or does not exist.
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
No scheduled upgrade runs
details
No upgrade runs returned. Open the create modal to schedule based off an existing Plan.
actions
[{ children: "Schedule Upgrade Run", variant: "outline", onClick: setCreateOpen }]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details
drawdownUsage.drawdownUsageNotAvailable_subtext1
msgImg
title
drawdownUsage.drawdownUsageNotAvailable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
details
drawdownUsage.noDrawdownUsageSub
msgImg
title
drawdownUsage.noDrawdownUsage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
integrationStrings.sidebar.noSelection.title
details
integrationStrings.sidebar.noSelection.details
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
You do not have access to view this tab
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
(serviceError as any)?.data?.message ??
+						(infrastructureError as any)?.data?.message ??
+						"There is no connector deployment for this service!"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
msgImg
title
(serviceError as any)?.data?.message ??
+						(infrastructureError as any)?.data?.message ??
+						"There is no collector for this service!"
+
+ +
+
+ +
+
+
+ SolaceGridList + 30 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui9
intgmaas-ui1
mcmaas-ui7
saasmaas-ui6
inframaas-ops-ui2
maas-ops-reactmaas-ops-ui5
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
items30
rowMapping30
gridTemplate30
dataQa27
headers13
selectedItemId9
onSelection9
virtualizedListOption4
numOfGridListItemDisplayed4
indicatorVariantIdentifier3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (30)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
sortedMessagingServiceList
rowMapping
getMessagingServiceRow
selectedItemId
selectedMessagingService?.id
onSelection
handleSelectMessagingService
gridTemplate
"minmax(10ch,auto) 1fr"
dataQa
messagingServiceListOfSelectedMEM
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
listItems
indicatorVariantIdentifier
"variant"
emphasizedIdentifier
"emphasized"
rowMapping
renderSchemaVersionRow
selectedItemId
highlightedEntityVersionId
onSelection
handleEntityVersionHighlight
gridTemplate
"minmax(auto, auto) minmax(auto, auto) 16px"
dataQa
schemaListDataQa
virtualizedListOption
{
+							height: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height
+							itemHeight: 52,
+							overscanCount: 20
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
listItems
indicatorVariantIdentifier
"variant"
emphasizedIdentifier
"emphasized"
rowMapping
renderEventVersionRow
selectedItemId
highlightedEntityVersionId
onSelection
handleEntityVersionHighlight
gridTemplate
"minmax(auto, auto) minmax(auto, auto) 16px"
dataQa
eventListDataQa
virtualizedListOption
{
+							height: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height
+							itemHeight: 74,
+							overscanCount: 20
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
listItems
indicatorVariantIdentifier
"variant"
emphasizedIdentifier
"emphasized"
rowMapping
renderAppVersionRow
selectedItemId
highlightedEntityVersionId
onSelection
handleEntityVersionHighlight
gridTemplate
"minmax(auto, auto) minmax(auto, auto) 16px"
dataQa
appVersionListDataQa
virtualizedListOption
{
+							height: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,
+							itemHeight: 74,
+							overscanCount: 20
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
entityVersions
rowMapping
mapEntity
selectedItemId
highlightedEntityVersionId
onSelection
processEntityVersionHighlight
gridTemplate
minmax(auto, auto) minmax(auto, auto) 16px
dataQa
"appDomainGraphSearchResultsGrid_" + entityType
virtualizedListOption
{
+						height: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,
+						itemHeight: SEARCH_LIST_ITEM_HEIGHT,
+						overscanCount: 20
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
eventApiProductVersions
rowMapping
getListRow
gridTemplate
auto 0fr
dataQa
eventApiProductList
background
white
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
primitiveSchemaTypeOptions
onSelection
onPrimitiveTypeChange
rowMapping
getPrimitiveTypeRowComponents
selectedItemId
selectedPrimitiveType
gridTemplate
auto
dataQa
primitiveTypes
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
sortedRelationshipVersions
rowMapping
getListRow
gridTemplate
auto 0fr
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
filteredAndSortedVersions
rowMapping
getListRow
gridTemplate
auto 0fr
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
affectedTransformations.map((transformation) => ({
+							source: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,
+							target: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName
+						}))
headers
[en.connectors.labels.source, en.connectors.labels.target]
rowMapping
(item, index) => [
+							
+								
+									{item.source}
+								
+							,
+							
+								
+									{item.target}
+								
+							
+						]
gridTemplate
"1fr 1fr"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
meshes
items
meshes
headers
headers
rowMapping
rowMapping
gridTemplate
gridTemplate
dataQa
event-meshes
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
libraries
dataQa
libraries
gridTemplate
90px 1fr 1fr 120px
items
librarySummaries
selectedItemId
selectedId
onSelection
handleSelection
headers
[
+				t({ id: "id_technology", message: "Technology" }),
+				t({ id: "id_library", message: "Library" }),
+				view === "language" ? t({ id: "id_protocol", message: "Protocol" }) : t({ id: "id_language", message: "Language" }),
+				""
+			]
rowMapping
(item) => [
+				
+					{item.name}
+				,
+				 handleSelection(item)}>
+					{item.name}
+				,
+				 handleSelection(item)}>
+					{view === "language" ? item.protocol : item.languages}
+				,
+				
+					 handleSelection(item)}>
+						Get Started
+					
+				
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`ldap-groups-${id}`
gridTemplate
1fr
items
items
rowMapping
renderRow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
hostnames
dataQa
hostnames
gridTemplate
gridTemplate
items
hostnames
rowMapping
renderRow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
syslog-forwarding
gridTemplate
gridTemplate
items
syslogs
rowMapping
renderRow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`client-profiles`
gridTemplate
gridTemplate
items
clientCertAuths
rowMapping
renderRow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`client-profiles`
gridTemplate
gridTemplate
items
profiles
rowMapping
renderRow
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
getServiceLimits() as LimitsData[]
headers
columnHeaders
rowMapping
rowMapping(false)
gridTemplate
gridTemplate
dataQa
serviceLimitsList
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
convertMsgSpoolLimits()
headers
columnHeaders
rowMapping
rowMapping(true)
gridTemplate
gridTemplate
dataQa
msgSpoolLimitsList
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
sapAddonLimitsData
headers
columnHeaders
rowMapping
rowMapping(false)
gridTemplate
gridTemplate
dataQa
erpLimitsList
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
convertConnectorLimits()
headers
columnHeaders
rowMapping
rowMapping(false)
gridTemplate
gridTemplate
dataQa
connectorsLimitsList
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
environments ? environments : []
headers
columnHeaders
onSelection
handleRowSelection
rowMapping
withActionColumnMapping
selectedItemId
isSidePanelOpen ? selectedId : 0
gridTemplate
minmax(350px, 2fr) 200px 200px 200px 24px
dataQa
environmentGridList
numOfGridListItemDisplayed
gridRowMaxVisible()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
_.concat(outOfSyncServices, syncedServices)
rowMapping
rowMapping
gridTemplate
minmax(350px, 2fr) 120px 24px
numOfGridListItemDisplayed
10
dataQa
out-of-sync-collectors
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
headers
headers
gridTemplate
gridTemplate
items
datacenterQueries.data
rowMapping
renderRow
dataQa
datacenter-list
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
headers
subnetHeaders
gridTemplate
subnetGridTemplate
items
cluster.virtualNetwork.subnets
rowMapping
renderRow
dataQa
subnet-list
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
headers
headers
items
items
rowMapping
rowMapping
gridTemplate
250px 1fr 100px 50px
dataQa
platform-notification-contacts-list
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
dcTuningstate
rowMapping
rowMapping
items
wanTuningDaemonSetStatus
headers
['Service Tier', 'Version', 'Status(D/C/R/U/A)', 'Up-To-Date Services', 'All Services']
numOfGridListItemDisplayed
4
gridTemplate
minmax(100px, 150px) 100px minmax(50px, 150px) minmax(50px, 150px) minmax(120px, 1fr) 
onSelection
(item) => {
+                        setSelectedItemId(item.serviceTier as ServiceTier)
+                        setActiveTabFeature(WanTuningFeatures.CHECK_DAEMON_SET_POD)
+                        dispatch(clearDaemonSetPodStatus())
+                    }
selectedItemId
selectedItemId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
service-tier-grid-list
items
wanTuningPodStatus
rowMapping
rowMapping
gridTemplate
200px 90px 400px 400px 400px
headers
["Pod Name", "Pod Status", "Attached Node", "Message Broker Pod", "Recent Events"]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
tracingProfile
rowMapping
rowMapping
numOfGridListItemDisplayed
10
dataQa
tracing-destinations-table
gridTemplate
minmax(5px, 15px) minmax(120px, 300px) minmax(120px, 1fr) minmax(120px, 150px) 150px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
noItemsFound
rowMapping
emptyRowMapping
dataQa
empty-tracing-destinations-table
gridTemplate
1fr
+
+ +
+
+ +
+
+
+ SolaceRadio + 28 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui13
intgmaas-ui4
mcmaas-ui5
saasmaas-ui3
maas-ops-reactmaas-ops-ui3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label28
name28
value26
dataQa16
key14
disabled8
id7
subText5
checked4
onChange4
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (28)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Existing Application"
name
existingApplication
value
"false"
dataQa
existingApplication
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"New Application"
name
newApplication
value
"true"
dataQa
newApplication
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.value
name
option.value
value
option.value
label
option.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
disabled
key
`messagingService-${item.id}`
label
 handleServiceAccordionControl(item.id)}
+								details={renderAccordionDetail(item)}
+								summary={
+									
+										{item.name}
+										{item?.solaceCloudMessagingServiceId && }
+										{isScanInProgress && Discovery Scan in progress}
+									
+								}
+							/>
name
item.id
value
item.id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`selectResultTypeOption_${resultType}`
label

+									{auditResultTypeCount}
+									{AUDIT_RESULT_CHIPS[resultType]}
+									{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}
+								
name
resultType
value
resultType
disabled
auditResultTypeCount === 0 || isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
resultPerPage === pageSize
onChange
() => handleResultsPerPageChange(resultPerPage)
key
`resultsPerPage_${resultPerPage}`
name
resultsPerPage
value
`${resultPerPage}`
label
`${resultPerPage}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
key
name
key
value
key
label
brokerTypeLabel[key]
disabled
!allowChangeBrokerType
dataQa
`brokerType[${key}]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.eventApi.labels.json
name
json
value
json
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.eventApi.labels.yaml
name
yaml
value
yaml
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
option.value
name
option.value
value
option.value
label
option.label
subText
option.subText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
value
name
value
value
value
label
value
dataQa
`schemaType[${value}]`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Add to Existing Consumer"
name
existingConsumer
value
"existingConsumer"
dataQa
existingConsumer
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"Create New Consumer"
name
newConsumer
value
"newConsumer"
dataQa
newConsumer
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanTrue
name
constantBooleanTrue
value
"true"
dataQa
constantBooleanTrue
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanFalse
name
constantBooleanFalse
value
"false"
dataQa
constantBooleanFalse
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanTrue
name
constantBooleanTrue
value
"true"
dataQa
constantBooleanTrue
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.connectors.labels.constantBooleanFalse
name
constantBooleanFalse
value
"false"
dataQa
constantBooleanFalse
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
label
i18n._(label)
name
option
checked
checked
onChange
handleMenuClick[index]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
label
i18n._(label)
name
option
checked
checked
onChange
handleMenuClick[index]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
name
endpointsSelector
dataQa
`"endpointsSelector"[${id}]`
label
label
lightSubText
true
value
id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
id
id
id
name
systemType
dataQa
`systemType[${id}]`
label
label
subText
subText
lightSubText
true
value
id
readOnly
readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
id
name
serviceType
dataQa
`serviceType[${id}]`
label
label
subText
subText
lightSubText
true
value
id
readOnly
readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
nonprod
id
nonprod
value
"false"
name
isProduction
label
nonProductionLabel
subText
en.environments.labels.nonProdSubText
disabled
isDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
prod
id
prod
value
"true"
name
isProduction
label
productionLabel
subText
en.environments.labels.prodSubText
disabled
isDisabled
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
checked
resultPerPage === selectedPageSize
onChange
() => handleResultsPerPageChange(resultPerPage)
key
`resultsPerPage_${resultPerPage}`
name
resultsPerPage
value
`${resultPerPage}`
label
`${resultPerPage}`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
isPerformingRequest
label
Upgrade
name
Upgrade
value
CollectorModificationAction.UPGRADE
dataQa
upgrade
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
isPerformingRequest
label
Rollback
name
Rollback
value
CollectorModificationAction.ROLLBACK
dataQa
rollback
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disabled
isPerformingRequest
label
Redeploy
name
Redeploy
value
CollectorModificationAction.REDEPLOY
dataQa
redeploy
+
+ +
+
+ +
+
+
+ SolaceListItem + 25 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui10
intgmaas-ui1
saasmaas-ui5
maas-ops-reactmaas-ops-ui9
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
sx12
divider8
key3
data-qa1
disablePadding1
disableGutters1
secondaryAction1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (25)

+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
entity.id
data-qa
`entityId-${entity.id}`
sx
{ paddingLeft: "48px" }
+
+ + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
disableGutters
true
sx
{ height: theme.spacing(sampleSetup ? 7 : 9) }
secondaryAction
{getSecondaryAction()}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", listStyleType: "disc", marginLeft: "16px", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", listStyleType: "disc", marginLeft: "16px", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", listStyleType: "disc", marginLeft: "16px", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+							borderTop: index === 0 ? 0 : "1px solid",
+							borderColor: theme.palette.grey[300],
+							pl: field?.parentId ? getIndentationLevel(field?.parentId) : 3
+						}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", paddingLeft: 0, marginLeft: theme.spacing(2) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", paddingLeft: 0, marginLeft: theme.spacing(2) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ display: "list-item", paddingLeft: 0, marginLeft: theme.spacing(2) }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ listStyleType: "disc", display: "list-item", pl: 0, pt: 0 }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ listStyleType: "disc", display: "list-item", pl: 0, pt: 0 }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
divider
true
sx
{ display: "flex", alignItems: "flex-start" }
+
+ + + + + + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
divider
true
key
resource.profile
+
+ + + +
+
+ +
+
+
+ SolaceSidePanelLayout + 23 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui18
intgmaas-ui1
mcmaas-ui1
saasmaas-ui1
maas-ops-reactmaas-ops-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
showSidePanel23
sidePanelWidth23
sidePanelContent23
sidePanelPosition1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (23)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
400
sidePanelContent
sidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedMem
sidePanelWidth
400
sidePanelContent
selectedMem ? (
+						 undefined}
+							userMap={entityCreateUpdateUsersMap}
+						/>
+					) : null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
true
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
true
sidePanelWidth
394
sidePanelPosition
SolacePanelPosition.LEFT
sidePanelContent
renderSidePanelContent()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEnum
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEventApiProduct
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedSchema
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedApplication
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEventApi
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedEvent
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedDomain
sidePanelContent
renderSidePanel()
sidePanelWidth
400
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!highlightedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!!selectedRow
sidePanelWidth
427
sidePanelContent
entitySidePanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
!isEmpty(selectedRowIds)
sidePanelWidth
400
sidePanelContent
renderSidePanel()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
showPanel
sidePanelWidth
480
sidePanelContent
selectedLibrary ? (
+					<>
+						
+							{selectedLibrary.displayName}
+							 handleSelectLibrary(null)}>
+								
+							
+						
+						
+							
+							
+							
+								Get Started
+							
+						
+					
+				) : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showSidePanel
panelOpen
sidePanelContent
sidePanelMessage
sidePanelWidth
MAX_WIDTH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sidePanelWidth
500
showSidePanel
true
sidePanelContent
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sidePanelWidth
400
showSidePanel
!!selectedRowId
sidePanelContent
+
+ +
+
+ +
+
+
+ SolacePageHeader + 22 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui4
intgmaas-ui6
mcmaas-ui5
saasmaas-ui2
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui4
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
title20
breadcrumbs16
environment10
borderTop10
actions9
subTitle5
release3
actionMenu3
tabs3
...2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (22)

+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/home/Home.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Event Portal
breadcrumbs
screenPath
dataQa
solace-header
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Event Portal AI Designer
breadcrumbs
[
+					{ title: "Designer", link: "/ep/designer" },
+					{ title: messages.aiWizardButton.action, link: "/ep/designer/wizard", current: true }
+				]
release
EXPERIMENTAL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
environment
environment && (
+						
+					)
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
connectorDetails?.name ?? ""
environment
miEnvironment && (
+							
+						)
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
actions
(connectorDetails?.state === ConnectorState.notdeployed ||
+							connectorDetails?.state === ConnectorState.error) &&
+						hasAdminMiAccess
+							? [
+									
+										{en.connectors.labels.editConnectorFlow}
+									
+							  ]
+							: !hasAdminMiAccess
+							? []
+							: undefined
actionMenu
,
+								title: "Actions",
+								variant: "icon",
+								dataQa: "connectors_additional_actions"
+							}}
+							anchorOrigin={{ horizontal: "right", vertical: "bottom" }}
+							transformOrigin={{ horizontal: "right", vertical: "top" }}
+							id={"connectors_additional_actions"}
+							items={menuItems}
+						/>
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`
breadcrumbs
environment
miEnvironment && (
+								
+							)
borderTop
selectedEnvironment
+								? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)
+								: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.connectors.connectorFlows
environment
selectedEnvironment ? (
+										
+											
+												
+											
+										
+									) : undefined
borderTop
selectedEnvironment
+										? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)
+										: undefined
actions
[
+									hasAdminMiAccess ? (
+										 {
+												history.push("/micro-integrations/availableMicroIntegrations");
+											}}
+											dataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}
+										>
+											{en.connectors.labels.createConnectorFlow}
+										
+									) : (
+										
+									)
+								].filter(Boolean)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
connectorDetails?.name ?? ""
environment
miEnvironment && (
+							
+						)
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.agents.agents
environment
selectedEnvironment ? (
+								
+									
+										
+									
+								
+							) : undefined
borderTop
selectedEnvironment
+								? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)
+								: undefined
actions
[
+							hasAdminMiAccess ? (
+								 {
+										return null;
+									}}
+								>
+									{en.agents.buttons.createAgent}
+								
+							) : (
+								
+							)
+						].filter(Boolean)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_mesh_manager", message: "Mesh Manager" })
subTitle
t({ id: "id_event_meshes", message: "Event Meshes" })
release
t({ id: "id_beta", message: "BETA" })
breadcrumbs
[{ title: t({ id: "id_mesh_manager", message: "Mesh Manager" }), link: "/mc/meshes", current: true }]
actions
hasWriteAccess
+							? [
+									
+										Create Event Mesh
+									
+							  ]
+							: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_service_details", message: "Service Details" })
subTitle
service?.name ?? "..."
environment
environment ?  : undefined
borderTop
environment?.bgColor
breadcrumbs
[
+					{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: ROUTER_SERVICES },
+					{
+						title: t({ id: "id_service_details", message: "Service Details" }),
+						link: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),
+						current: true,
+						progress: hasOngoingOperation,
+						progressTooltip: t({ id: "id_broker_progress", message: "The broker is busy with an update. Please wait." })
+					}
+				]
actionMenu
service && (
+						
+					)
actions
service && [
+						
+							Open Broker Manager
+						
+					]
tabs
 {
+							if (value === "manage") {
+								if (missionControl?.manageUI) {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: "security" }));
+								} else {
+									history.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));
+								}
+							} else {
+								history.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));
+							}
+						}}
+					>
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_cluster_manager", message: "Cluster Manager" })
subTitle
t({ id: "id_services", message: "Services" })
environment
selectedEnvironment ? (
+							
+								
+									
+								
+							
+						) : undefined
borderTop
selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined
breadcrumbs
[{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: ROUTER_SERVICES, current: true }]
actions
hasWriteAccess
+							? [
+									
+										Create Service
+									
+							  ]
+							: undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
t({ id: "id_compare_services", message: "Compare Services" })
release
t({ id: "id_beta", message: "BETA" })
breadcrumbs
[
+					{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: ROUTER_SERVICES },
+					{ title: t({ id: "id_compare_services", message: "Compare Services" }), link: ROUTER_SERVICES_COMPARE, current: true }
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
title
subTitle
subTitle
environment
environment ?  : undefined
borderTop
environment?.bgColor
breadcrumbs
[
+					{ title: t({ id: "id_cluster_manager", message: "Cluster Manager" }), link: servicesPath },
+					{
+						title: title,
+						link: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,
+						current: true
+					}
+				]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Page Title
environment
borderTop
bgColor
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
en.accountDetails.userSettings.settings
tabs
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
"Cluster"
subTitle
isPending ? "..." : cluster?.name
breadcrumbs
[
+                    { title: "Clusters", link: "/clusters" },
+                    { title: "Cluster Details", link: `/clusters/${clusterId}/status`, current: true, progress: isPending },
+                ]
actionMenu
!!actionMenuItems && (
+                        ,
+                            }}
+                            key="cloudProviderLink" >
+                        
+                    )
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Manage Upgrade Plans
breadcrumbs
breadcrumbs
actions
[
+				 handleModal()}>
+					Create Plan
+				
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
`Upgrade Run${runId ? `: ${runId}` : ""}`
breadcrumbs
breadcrumbs
actions
[
+					
+ {renderButton("Resume", () => handleAction(resumeUpgradeRun), "text", status === "PAUSED")} + {renderButton("Pause", () => openModal("pause"), "text", status !== "PAUSED")} + {renderButton("Cancel", () => openModal("cancel"), "outline", true)} +
+ ]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
Upgrades
breadcrumbs
breadcrumbs
actions
[
+				 handlePlanRoute()} variant="text" dataQa="create">
+					Manage Upgrade Plans
+				,
+				
+			]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
integrationStrings.mainPage.pageTitle
breadcrumbs
tabs
+
+ +
+
+ +
+
+
+ SolaceTextArea + 22 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui10
intgmaas-ui1
mcmaas-ui1
saasmaas-ui9
maas-ops-reactmaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name22
value19
onChange19
dataQa19
maxLength14
label14
helperText13
hasErrors12
resizable7
onBlur5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (22)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || (
+													{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}
+												)
minRows
3
maxRows
3
maxLength
complexValueTypeCharLimit
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
resizable
"vertical"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`postRequestTargetValue`
value
queueBindingConfiguration.postRequestTarget
readOnly
true
dataQa
`postRequestTargetValue`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`${prefix}Value`
value
displayedHeaderValue
readOnly
true
dataQa
`${prefix}Value`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.application.configuration.restDeliveryPoint.requestHeaderValue
name
name
value
value || ""
required
true
maxLength
2001
onChange
(e) => {
+									onChange(e.value);
+								}
onBlur
() => {
+									onBlur();
+									value && onChange(value.trim());
+								}
dataQa
configurationNameRequestHeaderValue
hasErrors
!!error
helperText
error ? error.message : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!errorMsgs[index]
helperText
errorMsgs[index] || (
+													{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}
+												)
minRows
3
maxRows
3
maxLength
complexValueTypeCharLimit
onChange
(e) => {
+												const newValue = e.value;
+
+												if (value !== newValue) {
+													onChange(newValue);
+													handleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);
+													setIsDirty(true);
+												}
+											}
onBlur
() => {
+												onBlur();
+												onChange(value.trim());
+												handleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);
+											}
dataQa
`${caKey}-value-input`
resizable
"vertical"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
name
value
value || ""
hasErrors
!!error
helperText
error ? error.message : null
onKeyDown
blockEnterKey
onChange
(e) => {
+									setIsDirty(true);
+									onChange(e.value);
+								}
dataQa
`${entityType}[name]`
autoFocus
!isDuplicateVersion
maxLength
nameMaxLength + 1
minRows
1
maxRows
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
width
550px
name
declineReason
value
declineReason
onChange
handleReasonChange
label
"Reason for Revocation"
hasErrors
!!declineReasonError
helperText
declineReasonError
maxLength
MAX_REASON_LENGTH
dataQa
declineReason
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
declineReason
value
declineReason
onChange
handleReasonChange
label
"Reason for Decline"
hasErrors
!!declineReasonError
helperText
declineReasonError
maxLength
MAX_REASON_LENGTH
disabled
reviewDecision !== ReviewDecision.declined
dataQa
declineReason
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
aria-label
Comment
width
100%
name
comment
value
item?.comments
onChange
(e) => handleOnCommentChange(e, item)
label
"Comment"
maxLength
400
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
description ?? "emptyDescription"
label
label ?? "Description"
value
description
onChange
(e) => {
+				setDescription(e.value ?? "");
+			}
onBlur
() => {
+				setDescription(description.trim());
+			}
dataQa
"description"
maxLength
10000
placeholder
placeholder ?? ""
resizable
resizable
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
props.name
label
props.label
onChange
(e) => onChangeTrigger(props, e)
value
fieldValue
readOnly
props.readonly
required
props.required && !props.readonly
disabled
props.disabled
width
100%
maxLength
props.schema.maxLength
dataQa
`${props.label}-form-textArea`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
props
id
name
name
name
dataQa
name
hasErrors
hasErrors
helperText
errorText || helperText
value
value
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
limitChangeDetails
label
en.serviceLimits.labels.details
onBlur
onDetailsChange
fullWidth
true
dataQa
"limitChangeDetails"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxLength
1500
fullWidth
true
label
en.environments.labels.descripiton
value
dialogState.description
name
environmentDescription
onChange
handleEnvDescriptionChange
helperText
handleDescriptionErrorText()
hasErrors
hasDescError
disabled
isLoading
dataQa
envDescriptionTestId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxLength
3000
label
drawdownUsage.noDrawdownUsage.details
name
contactUsTextField
dataQa
contactUsTextField
fullWidth
true
onChange
({ value }) => setContactUseMessage(value)
hasErrors
!validateText(contactUseMessage) ? false : true
helperText
!validateText(contactUseMessage) ? "" : drawdownUsage.noDrawdownUsage.containsScript
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxLength
255
fullWidth
true
label
userGroups.ugDialog.descripiton
value
dialogState.description
name
userGroupsDescription
onChange
handleUGDescriptionChange
disabled
isLoading
dataQa
userGroupsDescriptionQa
helperText
handleDescriptionCount()
resizable
vertical
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.accountSettings.additionalComments
name
additionalComments
onChange
(e) => setAdditionalCommentsText(e.value)
title
en.accountSettings.additionalComments
value
additionalCommentsText
dataQa
additionalCommentsTextField
hasErrors
additionalCommentsText.length >= 255
helperText
additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
hasErrors
descriptionError
helperText
handleDescriptionError()
name
descriptionField
resizable
vertical
value
descriptionValue
onChange
handleDescriptionFieldValue
maxLength
5000
dataQa
supportPageIssue
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
limitRequestTextArea
name
limitRequestTextArea
onChange
({ value }) => setRequestDetailsTexts(value)
title
en.overview.eventPortalSection.requestDetailsTextArea
value
requestDetailsTexts
label
en.overview.eventPortalSection.requestDetailsTextArea
width
40rem
resizable
vertical
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
en.overview.banner.additionalComments
name
en.overview.banner.additionalComments
onChange
(e) => setAdditionalComments(e.value)
title
en.overview.banner.additionalComments
value
additionalComments
width
30vw
resizable
vertical
dataQa
additionalCommentsId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"sendRequest"
maxLength
1000
fullWidth
true
label
en.privateRegions.labels.newRequestDetails
onChange
(event) => setTicketBody(event.value)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
rest
name
name
dataQa
name
value
value || ""
onChange
(e) => onChange(e.value)
hasErrors
!!error
helperText
error?.message
+
+ +
+
+ +
+
+
+ SolaceCodeEditor + 20 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui12
intgmaas-ui1
maas-ops-reactmaas-ops-ui7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
mode20
value20
readOnly18
dataQa16
id14
expandable8
helperText6
hasErrors6
onChange4
hasWarnings2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (20)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`itemDetail-${item.identifier}`
id
`itemDetail-${item.identifier}`
mode
json
readOnly
true
value
item.value ? JSON.stringify(jsonValue, null, 2) : ""
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`${schemaVersion?.id}-schemaVersion[content]`
value
schemaVersion?.content || ""
mode
schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]
readOnly
true
dataQa
"schemaVersion[content]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`dataCollected[${row.id}]`
value
row.data
mode
"json"
readOnly
true
dataQa
"dataCollected[content]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"auditResultConfig[content]"
value
runtimeAttributes || designerAttributes
mode
json
readOnly
true
dataQa
"auditResultConfig[content]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"auditResultConfig[schemaBody]"
id
"auditResultConfig[schemaBody]"
mode
json
readOnly
true
value
schemaBody
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
"auditResultConfig[schemaReferences]"
id
"auditResultConfig[schemaReferences]"
mode
json
readOnly
true
value
schemaReferences
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
value
observedConfiguration.value
mode
"json"
onChange
(editor, data, value) => setObservedConfiguration({ name, value })
dataQa
configurationName
helperText
error?.message ?? ""
hasErrors
!!error?.message
expandable
true
readOnly
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
dataQa
name
value
observedConfiguration
mode
"json"
onChange
(editor, data, value) => {
+								// onChange will break this because it will compete with the other debounced error flow
+								handleChangeCustomConfiguration(value);
+							}
helperText
error?.message
hasErrors
!!error
expandable
true
readOnly
mode === Mode.template
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"schemaVersion[content]"
value
schemaVersionRefetched.content || ""
mode
schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]
readOnly
true
expandable
!shownInCatalogDetailContainer
dataQa
"schemaVersion[content]"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
value
value || ""
mode
impliedContentType
onChange
(editor, data, value) => {
+										onChange(value);
+										trigger("schemaVersion[content]");
+										validateSchemaSpec(value);
+									}
dataQa
"schemaVersion[content]"
helperText
error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : ""
hasErrors
!!error
hasWarnings
!error && !!editorWarningMsg
expandable
true
readOnly
isImportedSchemaVersion
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`applicationVersion[consumers].${index}.configuration`
value
prettifiedConfiguration
mode
"json"
dataQa
`applicationVersion[consumers].${index}.configuration`
expandable
true
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
value
value || ""
mode
impliedContentType
onChange
(editor, data, value) => {
+											onChange(value);
+											trigger("schemaVersion.content");
+											validateSchemaSpec(value);
+										}
dataQa
"schemaVersion[content]"
helperText
error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : ""
hasErrors
!!error
hasWarnings
!error && !!editorWarningMsg
expandable
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
errorlog-stackTrace
id
errorlog-stackTrace
mode
json
readOnly
true
value
JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
dataQa
codeEditor
mode
json
value
JSON.stringify(servicePackage, null, 2)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
detailsDialog.org.organizationId
value
JSON.stringify(detailsDialog.org, null, 2)
mode
json
readOnly
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
expandable
true
dataQa
codeEditor
mode
json
value
JSON.stringify(details, null, 2)
helperText
hasErrors
details?.isError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
mode
json
value
JSON.stringify(
+								infrastructureRequests[`${deleteConfirmation.infrastructureId}-disable`].error,
+								null,
+								2
+							)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
mode
protobuf
value
currentConfig.config
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
expandable
true
dataQa
codeEditor
mode
json
value
JSON.stringify(configs?.data, null, 2)
helperText
hasErrors
configs?.isError
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
readOnly
true
mode
json
value
JSON.stringify(infrastructureRequests[errorDetails].error, null, 2)
+
+ +
+
+ +
+
+
+ SolaceList + 19 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui7
intgmaas-ui5
saasmaas-ui2
maas-ops-reactmaas-ops-ui5
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
sx12
disablePadding5
key4
dense2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (19)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
disablePadding
true
sx
{ marginTop: "-10px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
disablePadding
true
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+							"&& .Mui-selected": {
+								backgroundColor: theme.palette.ux.background.w20,
+								borderRight: "0"
+							},
+							"&& .Mui-selected:hover": {
+								backgroundColor: theme.palette.ux.background.w20
+							}
+						}
disablePadding
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`payloadSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`constantSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`headerSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`defaultHeaderSection-${direction}`
sx
{ bgcolor: "background.paper", padding: "0px" }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dense
true
sx
{ li: { listStyleType: "disc" } }
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ justifyContent: "space-between" }
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
sx
{ justifyContent: "space-between", display: "flex", flexDirection: "column" }
+
+ + + +
+
+ +
+
+
+ SolaceEnvironmentChip + 19 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui9
intgmaas-ui4
mcmaas-ui5
saasmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label12
...11
bgColor8
fgColor8
icon8
dataQa7
maxWidth4
onDelete1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (19)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
option
dataQa
dataQa
maxWidth
maxWidth
onDelete
onDelete || null
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
item.environmentOption
label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentChipOption
dataQa
headerEnvironmentChip
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
context.environmentOption
label
maxWidth
26px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
contextOption.environmentOption
label
maxWidth
26px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
...
environmentOption
label
maxWidth
26px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
environment.bgColor
fgColor
environment.fgColor
icon
environment.icon
label
environment.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
environment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
environment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
environment.label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
dataQa
environment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
environment.label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
dataQa
environment
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
dialogState.name || "Environment Name"
fgColor
fgColor
bgColor
bgColor
icon
Icons16[dialogState.icon as SolaceEnvironmentIcons]
+
+ +
+
+ +
+
+
+ SolaceEnvironmentLabel + 18 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui3
intgmaas-ui6
mcmaas-ui2
saasmaas-ui6
maas-ops-reactmaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label16
fgColor16
bgColor16
icon16
variant7
...2
dataQa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (18)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/EnvironmentUtils.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
...
item.environmentOption
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
standard
dataQa
eventMesh[environment]
...
environmentOption
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
fgColor
fgColor
bgColor
bgColor
icon
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
environment.bgColor
fgColor
environment.fgColor
icon
environment.icon
label
environment.label
variant
standard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
variant
standard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
""
variant
standard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
variant
standard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bgColor
miEnvironment.bgColor
fgColor
miEnvironment.fgColor
icon
miEnvironment.icon
label
miEnvironment.label
variant
standard
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
fgColor
fgColor
bgColor
bgColor
icon
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
label
fgColor
fgColor
bgColor
bgColor
icon
icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
environment.label
fgColor
environment.fgColor
bgColor
environment.bgColor
icon
environment.icon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
testItem.name
bgColor
testItem.bgColor ?? "#FFFFFF"
fgColor
testItem.fgColor ?? "#000000"
icon
Icons16[(testItem.icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
testItem.name
bgColor
testItem.bgColor ?? "#FFFFFF"
fgColor
testItem.fgColor ?? "#000000"
icon
Icons16[(testItem.icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
""
fgColor
fgColor
bgColor
bgColor
icon
Icons16[dialogState.icon as SolaceEnvironmentIcons]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
title
label
environment.name
bgColor
environment.bgColor
fgColor
environment.fgColor
icon
Icons16[environment.icon as SolaceEnvironmentIcons]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
env.name
fgColor
env.fgColor ?? "#000000"
bgColor
env.bgColor ?? "#FFFFFF"
icon
Icons16[(env.icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
name
fgColor
fgColor ?? "#000000"
bgColor
bgColor ?? "#FFFFFF"
icon
Icons16[(icon ?? "DEPLOYED_CODE") as SolaceEnvironmentIcons]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
envOption.label
fgColor
envOption.fgColor
bgColor
envOption.bgColor
icon
envOption.icon
+
+ +
+
+ +
+
+
+ SolaceBackDrop + 17 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
intgmaas-ui3
saasmaas-ui7
maas-ops-reactmaas-ops-ui7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
open17
data-qa3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (17)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
connectorDetailsLoading || connectorMetricsLoading
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SuspenseLoader.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
true
+
+ + + + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
isTokensListLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
isPageLoading || createTokenIsLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
tokenIsLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
loading
data-qa
loading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
loadingOrgDetails
data-qa
loading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
loadingInfrastructures
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
open
isLoading && isLoadingMicroIntegrations && isLoadingAgents
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
datacenterLoading
data-qa
loading
+
+ + + + + +
+
+ +
+
+
+ SolaceRadioGroup + 16 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui9
intgmaas-ui2
mcmaas-ui3
saasmaas-ui1
maas-ops-reactmaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name16
onChange16
value15
id13
inline9
dataQa4
hasErrors3
helperText3
required3
label2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (16)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
applicationRadioGroup
name
applicationRadioGroup
onChange
(e) => {
+						setIsNewApplication(e.value === "true");
+					}
value
isNewApplication ? "true" : "false"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
radioGroupName ?? "customhookRadioGroup"
dataQa
dataQa ?? ""
label
label
value
value
onChange
handleChange
hasErrors
!!validationErrorMsg
helperText
validationErrorMsg
required
true
inline
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
messagingServiceSelectorRadioGroup
name
messagingServiceRadioGroup
value
selectedMessagingService
onChange
(e) => {
+										setSelectedMessagingService(e.value);
+									}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
selectResultTypeRadioGroup
name
selectResultTypeRadioGroup
onChange
handleAuditResultTypeChange
value
auditResultTypeToImport
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"brokerTypeRadioButtons"
name
"brokerTypeRadioButtons"
value
brokerType
inline
true
onChange
(e) => {
+										setBrokerType(e.value);
+									}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
downloadFormatRadioGroup
label
en.eventApi.labels.format
name
downloadFormatRadioGroup
inline
false
onChange
(e) => {
+				setFormat(e.value as SupportedAsyncApiDownloadFormat);
+
+				if (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);
+			}
stackLabel
true
value
format
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
review
onChange
handleReviewChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"SchemaTypeRadioButtons"
name
"SchemaTypeRadioButtons"
value
schemaInfo?.schemaType
inline
true
onChange
(e) => {
+						setSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);
+					}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
addSubscriptionRadioGroup
name
addSubscriptionRadioGroup
onChange
(e) => {
+							setMode(e.value);
+							resetField("consumerId");
+							resetField("consumerName");
+							resetField("consumerType");
+						}
value
mode
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
constant-radio-group
name
constantValue
hasErrors
!!constantNameError
helperText
constantNameError
onChange
(e) => {
+								setConstantField({ ...constantField, constantValue: e.value });
+							}
value
constantField.constantValue ? "true" : "false"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
inline
true
id
constant-radio-group
name
constantValue
hasErrors
!!constantNameError
helperText
constantNameError
onChange
(e) => {
+								onConstantValueChange(e);
+							}
value
constantValue ? "true" : "false"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
serviceType
name
serviceType
dataQa
serviceType
value
serviceType
onChange
handleServiceTypeChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
endpointsSelector
name
endpointsSelector
dataQa
endpointsSelector
value
endpointsSelector
onChange
handleChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
systemType
name
systemType
dataQa
systemType
value
systemType
onChange
handleSystemTypeChange
readOnly
readOnly
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
isProduction
name
isProduction
required
true
bold
true
value
getIsProductionValue(dialogState.isProduction)
onChange
handleEnvProductionChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
collectorRadioGroup
value
action
onChange
(event) => dispatch(setAction(event.value))
inline
true
required
true
+
+ +
+
+ +
+
+
+ SolaceDrawer + 16 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui15
saasmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
open16
width16
top16
height15
resizable15
maxWidth15
onResizeDone14
minWidth14
anchor3
offset3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (16)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
true
width
DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL
top
"50px"
anchor
left
offset
"0px"
height
`calc(100vh - 100px)`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initSearchPanelWidth
minWidth
minWidth
maxWidth
sidePanelMaxWidth
resizable
resizable
onResizeDone
handleResizeSidePanel
top
`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`
offset
`${leftOffset}px`
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`
anchor
left
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initSearchPanelWidth
minWidth
SEARCH_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`
offset
`${leftOffset}px`
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`
anchor
left
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
true
width
initialSidePanelWidth
onResizeDone
handleResizeSidePanel
minWidth
minWidth
maxWidth
sidePanelMaxWidth
resizable
true
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
resizable
true
onResizeDone
handleResizeSidePanel
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
sidePanelOpen
width
initialSidePanelWidth
resizable
true
onResizeDone
handleResizeSidePanel
minWidth
SIDE_PANEL_MIN_WIDTH
maxWidth
sidePanelMaxWidth
top
DEFAULT_HEADER_HEIGHT
height
`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
!!rowDetails
resizable
true
top
10.65%
width
400
maxWidth
500
+
+ +
+
+ +
+
+
+ SolaceBreadcrumb + 16 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
intgmaas-ui4
mcmaas-ui3
saasmaas-ui2
maas-ops-reactmaas-ops-ui7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
paths16
maxItems8
onRouteClick8
dataQa6
id5
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (16)

+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: "Micro-Integrations", link: CONNECTOR },
+								{
+									title: connectorDetails?.name ?? "",
+									link: `/${id}`,
+									current: true
+								}
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
breadcrumbsPaths2()
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: en.connectors.connectorFlows, link: CONNECTOR },
+								{
+									title: connectorDetails?.name ?? "",
+									link: "editV2",
+									current: true
+								}
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: t({ id: "id_auth_security", message: "Authentication and Security" }), link: linkAuthSecurity },
+								{ title: t({ id: "id_service_authentications", message: "Service Authentications" }), link: "", current: true }
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: t({ id: "id_auth_security", message: "Authentication and Security" }), link: linkAuthSecurity },
+								{ title: t({ id: "id_cert_auths", message: "Certificate Authorities" }), link: "", current: true }
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
paths
[
+								{ title: t({ id: "id_auth_security", message: "Authentication and Security" }), link: linkAuthSecurity },
+								{ title: t({ id: "id_client_profiles", message: "Client Profiles" }), link: "", current: true }
+							]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
groupManagementBreadcrumb
maxItems
2
dataQa
groupManagementBreadcrumb
onRouteClick
(link) => history.push(link)
paths
[
+						{
+							current: false,
+							link: "/account-details/user-groups",
+							title: `${userGroupManagement.userManagement}`
+						},
+						{
+							current: true,
+							link: "",
+							title: `${userGroupManagement.groupManagement}`
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxItems
2
dataQa
NotificationLinksBreadcrumb
onRouteClick
(route) => history.push(route)
paths
[
+						{
+							current: false,
+							link: "/notifications",
+							title: en.notifications.notifications
+						},
+						{
+							current: true,
+							link: "",
+							title: notificationTitle
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onRouteClick
onBreadcumbClick
paths
customerDetailsPath
maxItems
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onRouteClick
onBreadcumbClick
paths
customerDetailsPath
maxItems
2
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
environmentsBreadcrumb
maxItems
3
dataQa
environmentsBreadcrumb
onRouteClick
(link) => history.push(link)
paths
[
+						{
+							current: false,
+							link: "/organizations",
+							title: "Organizations"
+						},
+						{
+							current: false,
+							link: "/organizations/" + orgId,
+							title: orgId
+						},
+						{
+							current: true,
+							link: "",
+							title: "Environments"
+						}
+					]
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
connectorBreadcrumb
maxItems
3
dataQa
connectorBreadcrumb
onRouteClick
(link) => history.push(link)
paths
[
+						{
+							current: false,
+							link: "/organizations",
+							title: "Organizations"
+						},
+						{
+							current: false,
+							link: "/organizations/" + orgId,
+							title: orgId
+						},
+						{
+							current: true,
+							link: "",
+							title: "Connector Deployments"
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
distributedTracingBreadcrumb
maxItems
4
dataQa
distributedTracingBreadcrumb
onRouteClick
(link) => history.push(link)
paths
[
+						{
+							current: false,
+							link: "/organizations",
+							title: "Organizations"
+						},
+						{
+							current: false,
+							link: "/organizations/" + service?.orgId,
+							title: service?.orgId as string
+						},
+						{
+							current: false,
+							link: `/organizations/${service?.orgId}/distributed-tracing`,
+							title: "Distributed Tracing"
+						},
+						{
+							current: true,
+							link: "",
+							title: "Distributed Tracing Collector Details"
+						}
+					]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
distributedTracingBreadcrumb
maxItems
3
dataQa
distributedTracingBreadcrumb
onRouteClick
(link) => history.push(link)
paths
[
+						{
+							current: false,
+							link: "/organizations",
+							title: "Organizations"
+						},
+						{
+							current: false,
+							link: "/organizations/" + orgId,
+							title: orgId
+						},
+						{
+							current: true,
+							link: "",
+							title: "Distributed Tracing"
+						}
+					]
+
+ +
+
+ +
+
+
+ SolaceErrorBox + 13 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
mcmaas-ui5
saasmaas-ui2
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui4
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
message13
showCloseButton2
onClose2
showErrorIcon1
data-qa1
dataQa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (13)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
submitError.message
showCloseButton
true
onClose
handleErrorBoxClose
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_disable_error", message: "An error occurred while disabling Distributed Tracing, please try again." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_failed_conf_collector", message: "Failed to configure and deploy the collector. For support, contact Solace." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_telemetry_profile_not_created", message: "This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({ id: "id_dt_telemetry_no_connection", message: "Cannot retrieve the telemetry profile due to lack of connection." })
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
t({
+							id: "id_dt_tracing_dest_not_defined",
+							message: "A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed."
+						})
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
showErrorIcon
true
showCloseButton
true
onClose
() => setErrorMessage("")
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessageWhileSavingSettings
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
error.message
data-qa
exportErrorBox
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
customers.accIdNotFound(customerId)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
customers.aggregationIdNotFound(aggregationId)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
message
"Unable to retrieve organization details from monitoring. Please try refreshing the page."
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
"Unable to retrieve all service details from monitoring. Please try refreshing the page."
dataQa
fetchServiceErrorBox
+
+ +
+
+ +
+
+
+ SolacePicker + 13 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui11
saasmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name13
onChange13
value13
variant13
icons12
dataQa11
numOfItemsPerRow11
label11
iconKeyOrderedList10
inlineLabel9
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (13)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${entityType}-customColour-picker`
name
name
iconKeyOrderedList
SupportedNodeColorVariations
icons
entityColourBlocks
numOfItemsPerRow
3
onChange
(e) => {
+								onChange(e.value);
+								setSelectedColorVariation(e.value);
+							}
value
value
variant
icons
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
`${entityType}-customIconLogo-picker`
name
name
icons
filteredIcons
iconKeyOrderedList
selectedCategory === "logos" ? imageOrderedKeys : iconOrderedKeys
numOfItemsPerRow
6
onChange
(e) => {
+										onChange(e.value);
+										setSelectedIconLogo?.(e.value);
+									}
value
value
variant
icons
getOptionDisplayValue
getOptionDisplayValue
autoFocusItem
autoFocusItem
emptyStateMessage
"No Results Found"
contentControlPanel
contentControlPanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationColorPicker
dataQa
applicationColorPicker
label
"Application Color"
inlineLabel
false
variant
"icons"
icons
applicationColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedAppColorVariation
onChange
(event) => setSelectedAppColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventColorPicker
dataQa
eventColorPicker
label
"Event Color"
inlineLabel
false
variant
"icons"
icons
eventColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedEventColorVariation
onChange
(event) => setSelectedEventColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
domainColorPicker
dataQa
domainColorPicker
label
"Domain Color"
inlineLabel
false
variant
"icons"
icons
domainColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedDomainColorVariation
onChange
(event) => setSelectedDomainColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
iconPicker
dataQa
iconPicker
label
"Select App Icon"
inlineLabel
false
variant
"icons"
icons
filteredIcons
iconKeyOrderedList
selectedCategory === "logos" ? imageOrderedKeys : iconOrderedKeys
value
selectedIconValue
onChange
(event) => setSelectedIconValue(event.value)
numOfItemsPerRow
6
getOptionDisplayValue
getOptionDisplayValue
autoFocusItem
autoFocusItem
contentControlPanel
contentControlPanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
applicationColorPicker
dataQa
applicationColorPicker
label
"Application Color"
inlineLabel
false
variant
"icons"
icons
applicationColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedAppColorVariation
onChange
(event) => setSelectedAppColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
eventColorPicker
dataQa
eventColorPicker
label
"Event Color"
inlineLabel
false
variant
"icons"
icons
eventColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedEventColorVariation
onChange
(event) => setSelectedEventColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
domainColorPicker
dataQa
domainColorPicker
label
"Domain Color"
inlineLabel
false
variant
"icons"
icons
domainColorBlocks
iconKeyOrderedList
SupportedNodeColorVariations
value
selectedDomainColorVariation
onChange
(event) => setSelectedDomainColorVariation(event.value)
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
iconPicker
dataQa
iconPicker
label
"Select App Icon"
inlineLabel
false
variant
"icons"
icons
filteredIcons
iconKeyOrderedList
selectedCategory === "logos" ? imageOrderedKeys : iconOrderedKeys
value
selectedIconValue
onChange
(event) => setSelectedIconValue(event.value)
numOfItemsPerRow
6
getOptionDisplayValue
getOptionDisplayValue
autoFocusItem
autoFocusItem
contentControlPanel
contentControlPanel
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
themePicker
label
"Select Color Theme"
inlineLabel
true
variant
"icons"
icons
applicationColorBlocks
value
selectedAppColorVariation
onChange
(event) => setSelectedAppColorVariation(event.value)
dataQa
themePicker
numOfItemsPerRow
3
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
color
label
Color
variant
colors
value
dialogState.color
onChange
handleEnvColorChange
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
icon
label
Icon
variant
icons
value
dialogState.icon
onChange
handleEnvIconChange
icons
Icons24
+
+ +
+
+ +
+
+
+ SolaceSearchAndFilter + 13 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui8
intgmaas-ui2
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name13
value13
onChange13
type13
id12
placeholder11
dataQa10
width10
onClearAll4
onFocus1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (13)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
graphSearchInput
name
graphSearchInput
dataQa
graphSearchInput
placeholder
searchFieldPlaceholderText || "Find on Graph"
value
searchText
onChange
handleSearchTextChange
onFocus
handleOnFocus
onClearAll
handleClearSearchText
type
FIELD_TYPES.SEARCH
disabled
graphEmpty || disableActionToChangeGraph
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchInput
name
searchInput
dataQa
searchInput
placeholder
textboxPlaceholderText ?? "Search"
width
searchTextBoxWidth
value
internalSearchText
onChange
handleSearchTextChange
onClearAll
handleClearSearchText
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
filterMeshName
id
meshNameFilter
name
meshNameFilter
onChange
handleFilterChange
placeholder
Filter by name
type
FIELD_TYPES.SEARCH
value
memNameFilter
width
500px
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
applicationFilterByName
name
applicationFilterByName
value
filterString
onChange
handleFilterByName
type
FIELD_TYPES.SEARCH
dataQa
applicationFilterByNameField
placeholder
Filter by name
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
addToApplicationVersionTextField
name
addToApplicationVersionTextField
dataQa
addToApplicationVersionTextField
label
selectApplicationVersionLabel
placeholder
Filter by application name
value
searchedApplicationName
onChange
(e) => setSearchedApplicationName(e.value)
onClearAll
() => setSearchedApplicationName("")
type
FIELD_TYPES.SEARCH
width
"480px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
templateNameFilter
name
templateNameFilter
value
filterbyName
onChange
handleFilterChange
dataQa
templateNameFilter
placeholder
Filter by name
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
domainNameFilter
name
domainNameFilter
value
nameFilter
onChange
handleFilterChange
dataQa
filterDomainName
placeholder
Filter by name
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
graphSearchInput
name
graphSearchInput
dataQa
graphSearchInput
placeholder
"Find on Graph"
value
searchText
onChange
handleSearchTextChange
onClearAll
handleClearSearchText
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
`${id}`
id
`${id}`
onChange
(e) => setNameFilter(e.value)
value
nameFilter
placeholder
searchPlaceholder
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"connectorNameFilter"
id
"connectorNameFilter"
onChange
(e) => setNameFilter(e.value)
value
nameFilter
placeholder
en.connectors.searchPlaceholder
width
500px
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchBox
name
searchBox
dataQa
searchBox
width
400px
value
searchTerm
onChange
(event) => handleSearchField(event.value)
type
FIELD_TYPES.SEARCH
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchAndFilterID
name
searchByInfrastructureId
value
searchInfrastructureId
onChange
(event) => {
+						setSearchInfrastructureId(event.value);
+					}
width
250px
type
FIELD_TYPES.SEARCH
dataQa
searchByInfrastructureId
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
organizationNameFilter
placeholder
integrationStrings.organizations.filters.nameFilter.placeholder
type
FIELD_TYPES.FILTER
value
nameFilter
onChange
handleNameFilterChange
width
425px
+
+ +
+
+ +
+
+
+ SolaceToggleButtonGroup + 10 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui7
mcmaas-ui1
saasmaas-ui1
maas-ops-reactmaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
options10
onChange10
activeValue10
dataQa2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (10)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
[
+				{
+					label: "Docker",
+					value: EmaInstallationTypes.docker,
+					dataQa: "ema-installation-type-docker"
+				},
+				{
+					label: "Java",
+					value: EmaInstallationTypes.java,
+					dataQa: "ema-installation-type-java"
+				}
+			]
onChange
onChange
activeValue
activeValue
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions
activeValue
activeTab
onChange
onChangeTabHandler
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions()
activeValue
activeTab
onChange
onChangeTabHandler
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
FILTER_OPTIONS
activeValue
filter
onChange
onChangeHandler
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
filterOptions
activeValue
filter
onChange
onChangeHandler
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions
activeValue
activeTabInApplicationFlow
onChange
handleApplicationFlowTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
getFilterOptions
activeValue
activeTabInApplicationFlow
onChange
handleApplicationFlowTabClick
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
options
viewOptions
onChange
handleToggleView
activeValue
selectedView
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
userManagementToggle
options
TAB_OPTIONS
onChange
onToggleChangeHandler
activeValue
filter
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
filterTriggerType
activeValue
activeValue
onChange
handleFilterByTriggerType
options
[
+								{
+									label: "All",
+									value: "all"
+								},
+								{
+									label: "Customer",
+									value: "customer"
+								},
+								{
+									label: "System",
+									value: "system"
+								}
+							]
+
+ +
+
+ +
+
+
+ SolaceTag + 10 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui4
maas-ops-reactmaas-ops-ui6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label10
fillColor8
labelColor8
variant3
clickable2
key1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (10)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]
variant
CHIP_VARIANT.OUTLINED
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]
fillColor
CHIP_COLORS.infoBgBlue
labelColor
CHIP_COLORS.DARK_GREY
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]
fillColor
CHIP_COLORS.infoBgBlue
labelColor
CHIP_COLORS.DARK_GREY
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"ENABLED"
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
"DISABLED"
fillColor
CHIP_COLORS.ERROR_BG_RED
labelColor
CHIP_COLORS.ERROR_RED_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
clickable
true
label
TaskStatus.COMPLETED
fillColor
CHIP_COLORS.SUCCESS_BG_GREEN
labelColor
CHIP_COLORS.SUCCESS_GREEN_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
clickable
true
label
TaskStatus.FAILED
fillColor
CHIP_COLORS.ERROR_BG_RED
labelColor
CHIP_COLORS.ERROR_RED_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
`${row.daemonSetStatus.desired}/${row.daemonSetStatus.currentScheduled}/${row.daemonSetStatus.ready}/${row.daemonSetStatus.upToDate}/${row.daemonSetStatus.available}`
variant
CHIP_VARIANT.FILLED
fillColor
(allEleInArrayAreSame(Object.values(row.daemonSetStatus))) ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED
labelColor
(allEleInArrayAreSame(Object.values(row.daemonSetStatus)))? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`podStatus-${index}`
label
row.podStatus
variant
CHIP_VARIANT.FILLED
fillColor
row.podStatus === "Running" ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED
labelColor
row.podStatus === "Running" ? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL
+
+ +
+
+ +
+
+
+ SolaceStackLabel + 10 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
saasmaas-ui2
maas-ops-reactmaas-ops-ui8
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id10
required6
bold5
htmlForId1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (10)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
`environment-type-label`
htmlForId
`isProduction`
bold
true
required
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
!!required
id
id ?? name.toLowerCase()
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
required
required
bold
bold
id
id
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
metadata
bold
true
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bold
true
id
currentDatacenterIdField
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bold
true
required
true
id
sourceDatacenterIdField
+
+ + + +
+
+ +
+
+
+ SolaceSelectAutocompleteResponsiveTags + 8 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui7
intgmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
containerWidth8
tags8
tagMaxWidth8
overflowIndicatorLabel8
overflowIndicatorLabelSingular8
onDelete8
dataQa8
numOfRowsToShow1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (8)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 190}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${FilterType.eventMesh}Select-tags`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 190}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${customAttributeFilterType}Select-tags`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
containerWidth
tags
selectedTags
tagMaxWidth
containerWidth ? `${containerWidth - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth
tags
selectedTags
tagMaxWidth
filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${FilterType.requestor}-tags`
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filtersWidth[FilterType.eventMesh]
tags
selectedTags
numOfRowsToShow
1
tagMaxWidth
filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null
onDelete
handleDeleteTag
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
dataQa
"eventMeshSearchSelect-tags"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
300
tags
selectedTags
tagMaxWidth
"200px"
overflowIndicatorLabel
"Filters"
overflowIndicatorLabelSingular
"Filter"
onDelete
handleDeleteTag
dataQa
`${filterType}Select-tags`
+
+ +
+
+ +
+
+
+ SolaceLearningButton + 7 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant7
onClick7
dataQa5
isDisabled4
startIcon3
endIcon1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (7)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
selectedDetails.disabled
variant
"dark-outline"
dataQa
`${camelCase(selectedDetails.button)}_button}`
onClick
() => {
+								selectedDetails.onClick && selectedDetails.onClick();
+							}
startIcon
selectedDetails.accessDenied && 
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
"call-to-action"
isDisabled
!showLoadSampleButton
startIcon
!showLoadSampleButton && 
onClick
onClickLoadSamples
dataQa
loadSampleDataButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
dark-call-to-action
dataQa
ExploreOnMyOwnLink
onClick
() => {
+									dismissableCallback();
+									Mixpanel.track("Element Click", { "element-id": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });
+								}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
call-to-action
onClick
handleExploreSample
dataQa
exploreSampleButton
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
dark-call-to-action
onClick
redirectToVideos
endIcon
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
!email
variant
dark-outline
onClick
onClickInviteUsers
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
isDisabled
selectedDetails.disabled
variant
"dark-call-to-action"
dataQa
`${camelCase(selectedDetails.button)}_button}`
onClick
() => {
+									selectedDetails.onClick && selectedDetails.onClick();
+								}
startIcon
selectedDetails.accessDenied && 
+
+ +
+
+ +
+
+
+ SolaceResponsiveItemList + 7 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui5
intgmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
containerWidth7
items7
showAll7
numOfRowsToShow5
onItemsRendered5
onItemsOverflow5
onItemsOverflowIndicatorClick5
dataQa5
columnGap1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (7)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filterContainerWidth
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filterContainerWidth
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
displayedEnvironments.map((env) => {
+						return {
+							id: env.id,
+							content: (
+								 option.value === env.id)}
+									hasTooltip={true}
+									dataQa={env.id}
+								/>
+							)
+						};
+					})
containerWidth
containerWidth
showAll
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
items
displayedEnvironments.map((env) => {
+								return {
+									id: env.id,
+									content: (
+										 handleDeleteTag(env.id)}
+										/>
+									)
+								};
+							})
columnGap
8
showAll
false
containerWidth
containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
filterContainerWidth
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
600
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
containerWidth
600
items
filterChips
showAll
!!showFilterSection
numOfRowsToShow
1
onItemsRendered
handleItemsRendered
onItemsOverflow
handleItemsOverflow
onItemsOverflowIndicatorClick
handleItemsHiddenIndicatorClick
dataQa
"filterChipsItemList"
+
+ +
+
+ +
+
+
+ SolaceLearningBanner + 7 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
maas-ops-reactmaas-ops-ui7
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
backgroundColor4
title3
dataQa2
showCloseButton1
onClose1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (7)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx +

+ + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.common.white
+
+ + + + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
backgroundColor
theme.palette.background.paper
+
+ + + +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
showCloseButton
true
title
drawdownUsage.messages.title
dataQa
drawdownUsageFormulaCard
backgroundColor
#E6F2FF
onClose
handleCloseDisplayMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
backgroundColor
theme.palette.primary.contrastText
dataQa
drawdownCard
+
+ +
+
+ +
+
+
+ SolaceToasts + 6 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
intgmaas-ui1
inframaas-ops-ui1
maas-ops-reactmaas-ops-ui3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
message6
open6
onClose6
severity5
action2
autoDismiss1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (6)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
toast.message
open
toast.open
action
toast.action
severity
toast.severity
autoDismiss
toast.autoDismiss
onClose
removeToast
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
true
message
message
severity
severity as SolaceToastsProps["severity"]
onClose
handleCloseSnackbar
action
action as SolaceToastsProps["action"]
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
showToast.message
severity
showToast.severity
onClose
() => setShowToast(null)
open
true
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
severity
error
message
Rerun Monitoring Job Failed
open
showRerunAutomationErrorToast
onClose
() => dispatch(hideRerunAutomationErrorToast())
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
open
showToast
onClose
() => setShowToast(false)
message
toastMessage
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
message
errorMessage
severity
error
open
showErrorToast
onClose
() => dispatch(closeErrorToast())
+
+ +
+
+ +
+
+
+ SolaceCategorizedSearch + 6 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name6
searchValue6
onSearchValueChange6
selectedCategoryValue6
onCategoryChange6
categoryOptions6
searchInputWidth5
equalButtonWidth4
categoryOptionsWidth4
onSearchInputFocus3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (6)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconCategorizedSearch"
searchValue
searchText
onSearchValueChange
handleSearchValueChanged
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconSearchAndFilter"
searchValue
searchText
onSearchValueChange
handleSearchValueChagned
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
onSearchInputFocus
() => setAutoFocusItem(false)
onSearchInputBlur
() => setAutoFocusItem(true)
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconSearchAndFilter"
searchValue
searchText
onSearchValueChange
handleSearchValueChagned
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
onSearchInputFocus
() => setAutoFocusItem(false)
onSearchInputBlur
() => setAutoFocusItem(true)
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
"iconSearchAndFilter"
searchValue
searchText
onSearchValueChange
handleSearchValueChagned
selectedCategoryValue
selectedCategory
onCategoryChange
handleCategoryChanged
categoryOptions
toggleGroupOptions
equalButtonWidth
true
onSearchInputFocus
() => setAutoFocusItem(false)
onSearchInputBlur
() => setAutoFocusItem(true)
searchInputWidth
100%
categoryOptionsWidth
100%
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchInput
name
searchInput
dataQa
searchInput
placeholder
Filter by Name
layout
SolaceCategorizedSearchLayout.horizontal
categoryOptions
entityFilterOptions.length > 0 ? entityFilterOptions : []
selectedCategoryValue
selectedEntityTypeFilter
onCategoryChange
handleEntityTypeFilterChange
searchValue
searchText
onSearchValueChange
handleSearchTextChange
searchInputWidth
"280px"
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
searchInput
name
searchInput
dataQa
searchInput
placeholder
Filter by Name
layout
SolaceCategorizedSearchLayout.horizontal
categoryOptions
tabOptions
selectedCategoryValue
activeTab
onCategoryChange
handleTabChange
searchValue
searchText
onSearchValueChange
handleSearchTextChange
+
+ +
+
+ +
+
+
+ SolacePopover + 6 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
intgmaas-ui6
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
maxWidth6
title6
placement5
id2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (6)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
full
title
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
handleHover(connectorType)
placement
bottom
id
`connector-card-popover-${connectorType.id}`
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
title
handleHover(connectorType)
placement
bottom
id
`connector-card-popover-${connectorType.id}`
maxWidth
medium
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title
placement
bottom-end
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxWidth
medium
title
placement
bottom-end
+
+ +
+
+ +
+
+
+ SolaceListItemButton + 5 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui5
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
selected5
onClick5
sx3
divider2
disableGutters1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (5)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selected
!currentTab || currentTab === "get-started"
onClick
() => {
+					history.push(TabsPath.getStarted);
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
selected
currentTab === "acme-retail-sample"
onClick
() => {
+					history.push(TabsPath.acmeRetail);
+				}
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }
divider
true
selected
selectedTemplateType === ConfigurationTypeId.solaceQueue
onClick
() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }
divider
true
selected
selectedTemplateType === ConfigurationTypeId.solaceClientProfileName
onClick
() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
sx
{
+							background: theme.palette.ux.primary.text.w10,
+							height: "100%",
+							paddingBottom: "0",
+							paddingTop: "0",
+							border: `1px solid ${theme.palette.ux.secondary.w20}`,
+							borderBottom: index === data.items.length - 1 ? undefined : "0"
+						}
disableGutters
true
selected
selected
onClick
() => setSelectedIndex(index)
+
+ +
+
+ +
+
+
+ SolaceLinearProgress + 5 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
mcmaas-ui3
inframaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
variant5
height5
value4
color1
dataQa1
key1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (5)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
determinate
color
learning
height
md
value
completionPercentage
dataQa
dataQa
key
dataQa
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
percent >= 99 ? "indeterminate" : "determinate"
height
sm
value
percent
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
determinate
height
sm
value
getCreationPercentage(service.creationState, service.createdTime as Date)
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
indeterminate
height
sm
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
variant
determinate
value
loadingPercentage
height
lg
+
+ +
+
+ +
+
+
+ SolaceDatePicker + 5 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
saasmaas-ui1
maas-ops-reactmaas-ops-ui3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
value4
onChange4
onClear3
disableFuture3
timezone2
dataQa1
variant1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (5)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
value
endOfLifeDate
onChange
handleEndOfLifeDateChange
dataQa
endOfLifeDateSelect
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClear
() => clearSelectedDate()
onChange
setSelectedDate
variant
SolaceDatePickerVariant.FORMAT_MONTH_YEAR
disableFuture
true
value
selectedDate
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClear
() => setSelectedStartDate(null)
onChange
(date) => setSelectedStartDate(moment(date).startOf("day"))
disableFuture
true
value
selectedStartDate?.toISOString()
timezone
UTC
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
onClear
() => setSelectedEndDate(null)
onChange
(date) => setSelectedEndDate(moment(date))
disableFuture
true
value
selectedEndDate?.toISOString()
timezone
UTC
+
+ + + +
+
+ +
+
+
+ SolaceAttributeValuePairForm + 5 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui2
intgmaas-ui1
saasmaas-ui1
maas-ops-reactmaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name5
avpList5
labelForKeys5
labelForValues5
id4
onAVPListUpdate4
enableRequiredKeyFieldIndicator3
keyIsRequiredMessage3
hasErrors3
helperText3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (5)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
avpList
value || []
labelForKeys
"Value"
labelForValues
"Description"
avpKeyValidationCallback
validateEnumKeys
avpValueValidationCallback
validateEnumValues
enableRequiredKeyFieldIndicator
true
keyIsRequiredMessage
Enumeration value is required
onAVPListUpdate
(e) => {
+										onChange(e);
+									}
emptyFieldDisplayValue
-
hasErrors
!!error
helperText
error ? getErrorMessage(error) : null
avpListMaxHeight
enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined
virtualizedAvpListOption
enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD
+											? undefined
+											: {
+													height: VIRTUALIZED_LIST_HEIGHT,
+													increaseViewportBy: 50,
+													initialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD
+											  }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
"enumerationVersion[values]"
name
"enumerationVersion[values]"
avpList
enumerationVersion.values
labelForKeys
"Value"
labelForValues
"Description"
enableRequiredKeyFieldIndicator
true
emptyFieldDisplayValue
-
readOnly
true
avpListMaxHeight
enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined
virtualizedAvpListOption
enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD
+											? undefined
+											: {
+													height: VIRTUALIZED_LIST_HEIGHT,
+													increaseViewportBy: 50
+											  }
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
targetHeaderMapping
avpList
values
labelForValues
() as unknown as string
labelForKeys
en.connectors.targetHeaderMapping.targetHeader
onAVPListUpdate
(avpList) => setValues([...avpList])
disableReorder
true
keyRequired
false
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
avpList
value || []
labelForKeys
Key
labelForValues
Value
enableRequiredKeyFieldIndicator
true
enableRequiredValueFieldIndicator
true
readOnly
false
keyRequired
true
keyIsRequiredMessage
Required Field!
avpKeyValidationCallback
(currentInput, values) => keyValidator(currentInput, values)
avpValueValidationCallback
(currentInput, values) => valueValidator(currentInput, values)
onAVPListUpdate
(e) => onChange(e)
hasErrors
!_.isEmpty(error)
helperText
error?.message
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
name
name
name
avpList
value || []
labelForKeys
Key
labelForValues
Value
keyRequired
true
keyIsRequiredMessage
Key should exist with the value
onAVPListUpdate
(e) => onChange(e)
hasErrors
!!error
helperText
error?.message
disableReorder
true
+
+ +
+
+ +
+
+
+ SolaceEnvironmentSelectChip + 4 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
intgmaas-ui2
mcmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
name4
value4
onChange4
options4
dataQa1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (4)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
MEMListEnvironmentSelector
value
selectedEnvironment?.environmentId
onChange
({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)
options
environmentOptions
dataQa
REMHeaderEnvironmentSelector
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environment
value
selectedEnvironment.environmentId
onChange
handleSetEnvironment
options
environmentOptions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environment
value
selectedEnvironment.environmentId
onChange
handleSetEnvironment
options
environmentOptions
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
name
environment
value
selectedEnvironment.environmentId
onChange
handleSetEnvironment
options
environmentOptions
+
+ +
+
+ +
+
+
+ SolaceStepper + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
intgmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
steps3
activeStep3
setActiveStep3
onClose3
onSubmit3
submitLabel3
onSecondarySubmit2
secondarySubmitLabel2
disableSubmit1
stepContentOverflow1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (3)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
steps
steps
activeStep
activeStep
setActiveStep
handleSetActiveStepRequest
onClose
() => history.push("/ep/designer")
onSubmit
handleSubmit
submitLabel
messages.aiWizardButton.submit
disableSubmit
isLoading
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/StepperWrapper.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
steps
renderSteps()
activeStep
activeStep
setActiveStep
(step) => setActiveStep(step)
onClose
onClose
onSubmit
onSubmit
onSecondarySubmit
onSecondarySubmit
submitLabel
submitLabel
secondarySubmitLabel
activeStep === steps.length - 1 ? secondarySubmitLabel : undefined
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
steps
steps
activeStep
activeStep
setActiveStep
(step) => setActiveStep(step)
onClose
() => discardChangesAndClose()
onSubmit
() => onSubmit(true)
secondarySubmitLabel
activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined
onSecondarySubmit
() => onSubmit(false)
submitLabel
en.connectors.buttons.createDeploy
stepContentOverflow
showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto
+
+ +
+
+ +
+
+
+ SolaceFileUploader + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
intgmaas-ui3
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
onFileChange3
maxFiles2
errorText2
dataQa2
readOnly2
fileNames2
accept1
id1
label1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (3)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
maxFiles
1
accept
{
+								"application/json": [".json"]
+							}
onFileChange
(files) => {
+								setUploadDialogErrorText("");
+								setFileImported(files);
+							}
errorText
uploadDialogErrorText
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
props.id
label
props.label
dataQa
sslKeyStoreFileUploader
maxFiles
1
onFileChange
async (files) => props.onChange(await fileUpload(files))
readOnly
props.readOnly
fileNames
props.value ? [""] : []
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
dataQa
sslKeyStoreFileUploader
onFileChange
handleFileChange
readOnly
readOnly
fileNames
clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []
errorText
solaceValidationErrors.sslKeyStore
+
+ +
+
+ +
+
+
+ SolaceFeatureTag + 3 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
intgmaas-ui3
+ +

Common Props

+ + + + + + + + + + + + + + + +
Prop NameOccurrences
text3
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (3)

+ + + + + + + +
+
+ +
+
+
+ SolaceSplitPane + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
minSize2
defaultSize2
maxSize2
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (2)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
minSize
500
defaultSize
500
maxSize
-700
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
minSize
500
defaultSize
500
maxSize
Math.max(500, leftPanelMaxWidth)
+
+ +
+
+ +
+
+
+ SolaceTextDiff + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
text12
text22
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (2)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
text1
runtimeAttributes
text2
designerAttributes
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
text1
schemaBody
text2
secondSchemaBody
+
+ +
+
+ +
+
+
+ SolaceJsonSchemaForm + 2 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui2
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
formData2
formItem2
formOptions2
onChange2
transformError2
transformWidget2
readOnly1
disabled1
ajvClass1
transformTitle1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (2)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
formData
formData
formItem
{
+					id: "restConsumerJsonSchemaForm",
+					schema: cloneDeep(schema)
+				}
formOptions
{
+					isHidden: (fieldType) => {
+						switch (fieldType) {
+							case "submitButton":
+							case "title":
+							case "description":
+								return true;
+							default:
+								return false;
+						}
+					},
+					tagName: "div"
+				}
readOnly
!onChange
disabled
!enabled
onChange
onChange
transformError
(error: any) => {
+					const { name, message } = error;
+					let newMessage;
+
+					if (name === "required") {
+						newMessage = "Required. Enter a value";
+					} else if (name === "pattern") {
+						newMessage = `Value ${message}`;
+					} else if (name === "const" || name === "oneOf") {
+						newMessage = ""; // hide errors the user can do nothing about
+					} else if (message) {
+						newMessage = `Value ${message}`;
+					} else if (name) {
+						newMessage = "Value is invalid";
+					}
+
+					error.message = newMessage;
+
+					return error;
+				}
transformWidget
(props) => {
+					const newProps = { ...props };
+
+					newProps.label = messages[newProps.label] ?? newProps.label;
+					newProps.title = messages[newProps.title] ?? newProps.title;
+
+					if (newProps.schema?.const !== undefined) {
+						newProps.readonly = true;
+					}
+
+					if (!onChange && newProps.id === "restConsumerJsonSchemaForm__oneof_select") {
+						newProps.readonly = true;
+					}
+
+					return newProps;
+				}
ajvClass
Ajv2019
+
+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
formData
formData
formItem
{
+				id: "solaceQueueForm",
+				schema: cloneDeep(schema)
+			}
formOptions
{
+				order: getOrder(schema.properties),
+				isHidden
+			}
onChange
handleOnChange
transformError
(error: any) => {
+				const { name, message, property } = error;
+				let newMessage;
+
+				if (name === "required") {
+					newMessage = "Required. Enter a value";
+				} else if (name === "pattern") {
+					// display any available placeholder value if it's a pattern error
+					if (property === ".queueName" && schema.properties.queueName.placeholder) {
+						newMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;
+					} else if (property === ".deadMsgQueue" && schema.properties.deadMsgQueue.placeholder) {
+						newMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;
+					} else {
+						newMessage = `Value ${message}`;
+					}
+				} else if (message) {
+					newMessage = `Value ${message}`;
+				} else if (name) {
+					// i.e. no detail message
+					newMessage = "Value is invalid";
+				}
+
+				error.message = newMessage;
+
+				return error;
+			}
transformTitle
(props) => transformProps(props, showPropertyNames)
transformWidget
(props) => transformProps(props, showPropertyNames)
+
+ +
+
+ +
+
+
+ SolaceMenuItem + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
key1
...1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (1)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx +

+ + + + + + + + + + + + + + + + + + + + +
Prop NameValue
key
`graphContextMenu_${menuItem.id ?? index}`
...
menuItem
+
+ +
+
+ +
+
+
+ SolaceDonutChart + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
epmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
data1
showTooltip1
icon1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (1)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
data
getPieChartData()
showTooltip
true
icon
+
+ +
+
+ +
+
+
+ SolaceEmptyStateBanner + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
intgmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
bannerImage1
subtitle1
title1
description1
primaryButton1
secondaryButton1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (1)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
bannerImage
subtitle
en.connectors.labels.emptyState.subtitle
title
en.connectors.labels.emptyState.title
description
en.connectors.labels.emptyState.description
primaryButton
{
+				label: en.connectors.buttons.checkoutAvailableConnectors,
+				onClick: onPrimaryButtonClick,
+				dataQa: "connectors-empty-state-primary-button"
+			}
secondaryButton
{
+				label: en.connectors.buttons.exploreOnMyOwn,
+				onClick: onSecondaryButtonClick,
+				dataQa: "connectors-empty-state-secondary-button"
+			}
+
+ +
+
+ +
+
+
+ SolaceGridListMultiSelect + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
mcmaas-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
id1
items1
headers1
actions1
rowMapping1
gridTemplate1
dataQa1
selectedRowIds1
onSelection1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (1)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
id
services
items
services ?? []
headers
headers
actions
actions
rowMapping
rowMapping
gridTemplate
gridTemplate
dataQa
services
selectedRowIds
selectedIds
onSelection
handleRowSelection
+
+ +
+
+ +
+
+
+ SolaceChipTextArea + 1 usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + + + + + + + + +
MFERepositoryUsages
maas-ops-reactmaas-ops-ui1
+ +

Common Props

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameOccurrences
label1
id1
name1
value1
validateChip1
onChange1
hasErrors1
helperText1
+ +

Customization

+

+ Styled Components: 0
+ Custom Styles: 0 +

+ + + +

Component Usage Instances (1)

+ +
+

+ URL: https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Prop NameValue
label
organizationDetails.manageNotificationContactDialog.label
id
demoChipTextAreaId
name
demoChipTextArea
value
dialogEmails
validateChip
emailValidationFunction
onChange
(e: { allValues: string; chips: ChipData[] }) => {
+					handleEmailsChange(e.allValues, e.chips);
+				}
hasErrors
hasErrors
helperText
errorMessage || (updateError ? organizationDetails.manageNotificationContactDialog.errors.updateError : "")
+
+ +
+
+ +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
MFERepositoryComponent UsagesMRC Version
epmaas-ui241213.7.3
intgmaas-ui49413.7.3
mcmaas-ui446^13.7.3
saasmaas-ui695^13.7.3
inframaas-ops-ui65^15.1.0
maas-ops-reactmaas-ops-ui931^15.5.2
+
+ + +
+

Unused Components (12)

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Component NamePath
SolaceChipTextArea.styles/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceChipTextArea/SolaceChipTextArea.styles.tsx
WarningText/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/WarningText.tsx
HelperText/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/HelperText.tsx
SolaceStepperFooter/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx
FormChildBase/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/FormChildBase.tsx
SolaceAttributeValuePair/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx
ErrorText/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/ErrorText.tsx
SolaceAutoCompleteTextField/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx
SolaceTree/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/SolaceTree.tsx
SolaceNotificationCounter/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/SolaceNotificationCounter.tsx
NoAccess/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/NoAccess.tsx
SolaceCardHeader/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/SolaceCardHeader.tsx
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/tools/mrc-usage-report/reports/mrc-usage-report-all.json b/tools/mrc-usage-report/reports/mrc-usage-report-all.json new file mode 100644 index 000000000..13bf25d67 --- /dev/null +++ b/tools/mrc-usage-report/reports/mrc-usage-report-all.json @@ -0,0 +1,219393 @@ +{ + "generatedAt": "2025-07-28T17:29:55.193Z", + "config": { + "mfes": [ + "ep", + "intg", + "mc", + "saas", + "infra", + "maas-ops-react", + "broker-manager" + ], + "mrcPath": "/Users/ishanphadte/Documents/GitHub/maas-react-components", + "outputDir": "/Users/ishanphadte/Documents/GitHub/maas-react-components/tools/mrc-usage-report/reports", + "outputFormat": [ + "json" + ], + "mrcSourceType": "local", + "mrcGithubUrl": "https://github.com/SolaceDev/maas-react-components", + "mrcGithubBranch": "main", + "mfeInfos": [ + { + "name": "ep", + "path": "../../../maas-ui/micro-frontends/ep", + "repository": "maas-ui" + }, + { + "name": "intg", + "path": "../../../maas-ui/micro-frontends/intg", + "repository": "maas-ui" + }, + { + "name": "mc", + "path": "../../../maas-ui/micro-frontends/mc", + "repository": "maas-ui" + }, + { + "name": "saas", + "path": "../../../maas-ui/micro-frontends/saas", + "repository": "maas-ui" + }, + { + "name": "infra", + "path": "../../../maas-ops-ui/micro-frontends/infra", + "repository": "maas-ops-ui" + }, + { + "name": "maas-ops-react", + "path": "../../../maas-ops-ui/micro-frontends/maas-ops-react", + "repository": "maas-ops-ui" + }, + { + "name": "broker-manager", + "path": "../../../broker-manager", + "repository": "broker-manager" + } + ] + }, + "mrcVersions": { + "ep": "13.7.3", + "intg": "13.7.3", + "mc": "^13.7.3", + "saas": "^13.7.3", + "infra": "^15.1.0", + "maas-ops-react": "^15.5.2", + "broker-manager": "file:third-party/SolaceDev-maas-react-components-15.5.4.tgz" + }, + "componentStats": [ + { + "componentName": "SolaceTypography", + "totalUsages": 868, + "usagesByMfe": { + "ep": 273, + "intg": 129, + "mc": 74, + "saas": 191, + "infra": 19, + "maas-ops-react": 182 + }, + "commonProps": [ + { + "name": "variant", + "count": 425 + }, + { + "name": "sx", + "count": 100 + }, + { + "name": "fontWeight", + "count": 43 + }, + { + "name": "mt", + "count": 38 + }, + { + "name": "data-qa", + "count": 29 + }, + { + "name": "mb", + "count": 28 + }, + { + "name": "id", + "count": 23 + }, + { + "name": "ml", + "count": 18 + }, + { + "name": "key", + "count": 18 + }, + { + "name": "component", + "count": 18 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "color", + "type": "expression", + "value": "bulkMoveLimitExceeded ? \"error\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "marginTop", + "type": "number", + "value": "0.5" + }, + { + "name": "marginBottom", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingBottom", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mb", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "sx", + "type": "expression", + "value": "fromGraphView ? { color: \"text.secondary\" } : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "messageDetailsAddEvents" + }, + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginBottom: 1, color: ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabel\"" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "expression", + "value": "selected && 500" + }, + { + "name": "pl", + "type": "expression", + "value": "imageComponent ? 2 : 5.25" + }, + { + "name": "pr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.brand.w30 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "width", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: invertTextColor }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "showGraphic ? 500 : \"100%\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: invertTextColor }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "fontSize", + "type": "expression", + "value": "`24px`" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionPopup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionPopup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "style", + "type": "object", + "value": "{ marginBottom: \"16px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`filtername-${index}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-template`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"warning\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ ml: 1 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_fieldName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_propertyType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "config.key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"apiErrorResponse\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorPrefix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"errorMessages\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorSuffix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[500] }" + }, + { + "name": "id", + "type": "string", + "value": "conn_flow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connector_marketing_description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "mr", + "type": "number", + "value": "4" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_help" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "expression", + "value": "\"6px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "textVariant ? textVariant : \"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "ml", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\t\t\tWebkitLineClamp: \"3\",\n\t\t\t\t\t\t\t\tWebkitBoxOrient: \"vertical\"\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "mr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ width: \"90%\", wordWrap: \"break-word\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "variant ?? \"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\thistory.push({\n\t\t\t\t\t\t\t\t\tpathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`\n\t\t\t\t\t\t\t\t})" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "component", + "type": "string", + "value": "div" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "ml", + "type": "string", + "value": "-0.5rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "pt", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "marginTop", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"16px\", fontWeight: \"500\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + }, + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ alignContent: \"center\" }" + }, + { + "name": "fontSize", + "type": "number", + "value": "24" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3.3" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "string", + "value": "1rem" + }, + { + "name": "sx", + "type": "object", + "value": "{ opacity: 0.8 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "securitySettingsWarning" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "subTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ whiteSpace: \"initial\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"bolder\", color: \"inherit\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "item" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "0.5" + }, + { + "name": "mb", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.33rem\", marginBottom: \".3rem\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + }, + { + "name": "data-qa", + "type": "string", + "value": "supportModalSuccessMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"contents\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "className", + "type": "string", + "value": "message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "desc" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "variable", + "value": "index" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "capitalize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noProblemText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.text.secondary }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "paddingBottom", + "type": "expression", + "value": "theme.spacing()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "string", + "value": "bold" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "right" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "marginTop", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "right" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "right" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersLoadingMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersSuccessMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "props": [ + { + "name": "data-qa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "minHeight", + "type": "expression", + "value": "theme.spacing(4)" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "aggregationDetailsDescription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noSearchResultsToShow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "3" + }, + { + "name": "paddingTop", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "marginLeft", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "marginLeft", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "1" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ alignContent: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "color", + "type": "expression", + "value": "result.healthy ? \"success\" : \"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: theme.spacing(3.6) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tpaddingTop: ddOrgData?.subOrgName ? theme.spacing(1) : theme.spacing(3.6),\n\t\t\t\t\t\t\t\twhiteSpace: \"nowrap\",\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\tflexDirection: \"column\"\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ whiteSpace: \"nowrap\" }" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingBottom: theme.spacing(3), paddingTop: theme.spacing(3) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\tpaddingTop: theme.spacing(3.6),\n\t\t\t\t\t\t\t\t\t\t\tmarginLeft: theme.spacing(7),\n\t\t\t\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\t\t\t\tflexDirection: \"row\"\n\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ width: theme.spacing(10), marginRight: theme.spacing(4) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ width: theme.spacing(10), marginRight: theme.spacing(4.5) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ width: theme.spacing(10), marginRight: theme.spacing(2.5) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ marginRight: theme.spacing(4), width: theme.spacing(10) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ marginRight: theme.spacing(4.5), width: theme.spacing(10) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ marginRight: theme.spacing(2.5), width: theme.spacing(10) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"500\" }" + }, + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "row.result === \"Fail\" && { color: \"error\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "row.result === \"Fail\" && { color: \"error\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "row.level === \"HIGH\" && { fontWeight: 900 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "pb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "px", + "type": "number", + "value": "2" + }, + { + "name": "py", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "6" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: theme.typography.caption, color: theme.palette.grey[700] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeNameQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontSize", + "type": "expression", + "value": "\"14px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "pr", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "orgDetailHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "accountHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "paddingRight", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeNameQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ float: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading-message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "no-results-message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`state-group-${state.toLowerCase()}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "type" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`type-count-${state.toLowerCase()}-${type}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "no-features" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "ref", + "type": "variable", + "value": "ref" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\tmaxWidth: \"100%\",\n\t\t\t\toverflow: \"hidden\",\n\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\twhiteSpace: \"nowrap\"\n\t\t\t}" + }, + { + "name": "title", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"500\" }" + }, + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"flex\", alignItems: \"center\" }" + }, + { + "name": "mb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[700] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[700], display: \"flex\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(6)" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "mb", + "type": "expression", + "value": "theme.spacing(3)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginBottom: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ mb: 2 }" + } + ] + } + ] + }, + { + "componentName": "SolaceButton", + "totalUsages": 809, + "usagesByMfe": { + "ep": 426, + "intg": 67, + "mc": 100, + "saas": 109, + "infra": 8, + "maas-ops-react": 99 + }, + "commonProps": [ + { + "name": "variant", + "count": 807 + }, + { + "name": "onClick", + "count": 592 + }, + { + "name": "dataQa", + "count": 407 + }, + { + "name": "href", + "count": 212 + }, + { + "name": "isDisabled", + "count": 174 + }, + { + "name": "title", + "count": 91 + }, + { + "name": "dense", + "count": 72 + }, + { + "name": "key", + "count": 52 + }, + { + "name": "id", + "count": 32 + }, + { + "name": "type", + "count": 16 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/schemaUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/ToastAction.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/SolaceToast.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/SolaceHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/Environments.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/utils/helper.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/schemaUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "jsonSchemaSpecLink" + }, + { + "name": "href", + "type": "string", + "value": "https://json-schema.org/specification.html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "commandBlockCopyButton" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseMessagingServiceDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenMessagingServiceDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`${protocol}//${host}/environments`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][addSchemaRegistry]" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddSchemaRegistry" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "schemaAuthArray?.length > 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDownload(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!Object.values(namingStrategy).includes(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "onOpenVersion ?? onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "returnToApplicationButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://www.solace.com" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "cancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkToApplicationVersionDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleUndo" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, \"_self\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learningCenterLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(\"/learningCenter\", \"_self\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/environments.htm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "lcVideoTutorialsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"videoTutorials\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "trainingCoursesLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"courses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "epOverviewDocsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"overviewDocs\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeConfigSidePanelButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"closeDetailsDialog\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner(version)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"cancelAddEventToApplication\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"saveAddEventToApplication\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner?.(version)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddToApplication(version)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-edit`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onEditName(entityType, index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(entityType, index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-viewall-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-add`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAdd(entityType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/runtime`);\n\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/designer`);\n\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApply" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasUnsavedChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + }, + { + "name": "key", + "type": "expression", + "value": "action.id" + }, + { + "name": "...", + "type": "spread", + "value": "action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onVersionAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "addVersionButton" + }, + { + "name": "title", + "type": "string", + "value": "Add New Version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(false)" + }, + { + "name": "title", + "type": "string", + "value": "Hide Version List" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(true)" + }, + { + "name": "title", + "type": "string", + "value": "Show Version List" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "changeVersionState" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onChangeVersionState" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"customAttributeDefinitionsEditorButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenCustomAttributeDialog()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateBackToOrigin" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "underline", + "type": "string", + "value": "none" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleStartOverriding" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetOverrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "variable", + "value": "disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitAndCloseVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionAndCloseButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createVersion" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "configureVarButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "removeDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemove(index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicSubscriptions\", \"link\")" + }, + { + "name": "data-qa", + "type": "string", + "value": "infoBlurbLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "setKafkaPreferences" + }, + { + "name": "onClick", + "type": "expression", + "value": "onSetKafkaPreferences ? onSetKafkaPreferences : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"More Actions\"" + }, + { + "name": "...", + "type": "spread", + "value": "buttonProps" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "latestGraphUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "action-btn-inline-banner" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isButtonDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "onButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "graphEmpty" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(filterType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}-delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteFilter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters(true, true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "latestJarFileLink" + }, + { + "name": "href", + "type": "expression", + "value": "eventManagementAgentResources.version.needUpgradeLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompleteInstallationSetupClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "comnpleteInstallationSetupButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSkipButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleCopyFile(evt, details, emaType, copyButtonId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/releases" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/error-id-help" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "openMessagingServiceDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyFile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "EMA_PREREQUISITES_LINK" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateRuntimeAgent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewModeledEventMeshes" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewModeledEventMeshes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => removeMessagingService(messagingService)" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeMessagingService" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "agentSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDownloadConnectionFile(item.id, item.name)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleCollectData(selectedMessagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "runDiscoveryScan" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDiscoveryScanButtonDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + }, + { + "name": "key", + "type": "expression", + "value": "\"addMessageService\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewConnectionDetailsButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewConnectionDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteMessagingService(selectedMessagingService)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveVersionEntity(entityVersion.id)" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeEntityFromListButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to manage associations" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "backToGraphView" + }, + { + "name": "dataQa", + "type": "string", + "value": "backToGraphView" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!item?.auth?.canOpenModelEventMesh" + }, + { + "name": "onClick", + "type": "variable", + "value": "onViewDetail" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewMEMDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMem" + }, + { + "name": "dataQa", + "type": "string", + "value": "createModeledEventMeshButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventManagementAgentConnections" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMemDialogOpen" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => showObjectRelationshipsForFirstObjectCallback?.()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshEventMeshDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"designerTool\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshEventMeshDetails()" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest objects and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToMessagingServiceTab" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAutoCollectDialogOpen(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setRefresh(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "title", + "type": "string", + "value": "Refresh all audit results" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "hideSecondaryPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go Back" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCloseDetails" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go to Selection Panel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDeselectAll" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImportJob-close" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDismissJob(jobId)" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(eventDetail.parent, eventDetail)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompareVersions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"compareVersionsBtn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBack" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"backCompareConfigDialog\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewConfiguration(isSchemaParent)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullConfiguration\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventBrokerConnections" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshAuditResult()" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAll" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"applicationDomain\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "buttonVariant || \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "chooseImportOptionButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\thandleImport(\n\t\t\t\t\t\t\tauditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent\n\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionSelection(applicationVersion)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeselect" + }, + { + "name": "dataQa", + "type": "string", + "value": "validationErrorDeselect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/runtime/modeled-event-meshes/${eventMeshId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "designerLink" + }, + { + "name": "dataQa", + "type": "string", + "value": "designerLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"/ep/catalog\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "catalogLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenCelebratoryDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImport-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "action" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoTagAction(request)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetToDefault" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkHref" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDeleteTemplateDialog(true, row)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTemplateButton" + }, + { + "name": "title", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTemplateButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelTemplate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onSave" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveTemplate" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenAddToApplicationModal(selectedEvent)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(title)}-${secondaryAction.completed}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsecondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);\n\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "secondaryAction?.disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpEMA\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpMEM\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "sampleApplicationsDomainsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableText.solace.links.sampleDocs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"design\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "dismissExploreSample" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thandleOpenLink(\"videoTutorials\");\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "howToVideosButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUserManagement" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreTooltipLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreCardLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleModeSelection(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError ||\n\t\t\t\t\t\t(templates?.length && (templateNotFound || !!templateOutOfSync)) ||\n\t\t\t\t\t\ttemplateHasSchemaErrors ||\n\t\t\t\t\t\t!!errors[FormNameConfiguration]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(type, header)" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeRequestHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addQueueBinding" + }, + { + "name": "isDisabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideQueueBinding" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearOverrideQueueBinding" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveConfiguration()" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeQueueBinding" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRequestHeaderDialog(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRequestHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnAddQueueBinding" + }, + { + "name": "dataQa", + "type": "expression", + "value": "isGlobal ? \"addQueueBinding\" : \"overrideQueueBinding\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleOnDelete" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowConsumerType(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowConsumerType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "showConsumerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowReset" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverrideRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowOverride" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRestConsumer(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "showRestConsumer || !configurationTypeId || !isEditing" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowRestConsumer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "selectAnotherTemplateAction" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSelect" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isSelectDisabled" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"customizeAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCustomize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"refreshAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant || \"text\"" + }, + { + "name": "onClick", + "type": "expression", + "value": "action.onClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "custom-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.queueConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "template-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "messagesTemplate.solaceQueue.infoBlurb.linkHref" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setModeSelectionToConfirm(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError || templateNotFound || !!templateOutOfSync" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConsumer" + }, + { + "name": "dataQa", + "type": "string", + "value": "addConsumerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "expression", + "value": "messages[configType].emptyLinkref" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetUserAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "openApplicationDomainButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"sampleDocs\", \"link\")" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(\"clickSampleDocumentationLink\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "importAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => importDomainsFileRef.current?.click()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"enumerations\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoUpload(valuesToUndo)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "fileUploading" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersion[values]-importFromFileButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit((data) => {\n\t\t\t\t\t\t\t\tif (!validateEnumValueSets()) {\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst preparedData = prepareEntityForBackend(data);\n\n\t\t\t\t\t\t\t\treturn handleSaveEntityAndVersion(preparedData);\n\t\t\t\t\t\t\t})" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEnumeration.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToSelectedApplicationDomain()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainGraphSidePanel-details-editBtn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelCustomAttributesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || isWritingEpCore || saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveCustomAttributesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}NodeSidePanelCustomAttributeEditButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClickCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave(existingLatestNonRetiredVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || saveInProgress || isWritingEpCore" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClosePanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "leftSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit Appearance" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAppearance" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-appearance-button" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => goToComponentLists?.()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest versions and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"Add To Graph\"" + }, + { + "name": "title", + "type": "string", + "value": "Add To Graph" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!nodeIdWithUnsavedChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "findOnGraph" + }, + { + "name": "key", + "type": "expression", + "value": "\"findOnGraph\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "searchButtonDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "key", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchPanelCollapseButton" + }, + { + "name": "title", + "type": "string", + "value": "Collapse" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleNavigateToComponentList(e, entityType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEventApis" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventApisButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "selectedEventApiVersionIds.includes(versionData.id) ? \"text\" : \"outline\"" + }, + { + "name": "id", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "key", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? \"remove\" : \"add\", versionData)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t\tonFilterButtonClicked(item);\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterButton-${item.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApi.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "source === \"application\" ? en.application.links.extension : en.eventApi.links.extension" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "version === \"2.5.0\" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.asyncApi" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`planDeleteButton-${index}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onPlanDelete(index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAddPlanButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "planFields.length === 5" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAddPlanClicked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpen(true)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.approvalTypes.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApiProduct.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createEventApiProductButton" + }, + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createSchema.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTriggerVersionDuplication(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageReferencedSchemas" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "revokeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "approveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddButtonClick" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!editableSubscriptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.add`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.${index}.remove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteButtonClick(consumerId, index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "subscription === \"\" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscriptionAddButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSuggestedEvents(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.download" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${name}-configDownload`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\tdownload(new Blob([configuration]), getConfigurationName(name), \"application/json\");\n\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleInitiateOverride" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-overrideConfigButton`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-clearOverrideButton`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configurationRemove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleEventVersionSelect(e, item)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleEventsExpand" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sortedItems.length === 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFindEventsClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "launchUserAccessDialog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "getRrbacRoles.isLoading || getAttributeAssignments.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isSaveButtonDisabled()" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(onFormSubmit)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTopicDomain" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddTopicDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromUI(index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromBackend(topicDomain.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editApplicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "title", + "type": "expression", + "value": "\"Launch link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTopicAddressResourceLink" + }, + { + "name": "href", + "type": "variable", + "value": "resource" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Edit link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Delete link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDelete" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDelete()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesAdd" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kafkaEvents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEvent.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemas" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemasForPrimitiveType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasForPrimitiveTypeButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`remove${keyOrValue}SchemaButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenQuickCreateSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"quickCreateSchemaButton\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "backButton" + }, + { + "name": "title", + "type": "string", + "value": "Back" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "notifyParentOfSchemaVersionSelection" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectPrimitiveTypeButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to add subscription" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleManageSubscriptions(currentSubscription, consumerName)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Quick Create Event" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDialog(\"quickCreateEvent\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "quickCreateEventButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tremove();\n\t\t\t\t\t\t\t\tremoveToast();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEvents" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === SidePanel.manageEvents" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "data-qa", + "type": "string", + "value": "topicAddressHelpCloseButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Source}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.source ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Destination}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.destination ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSendAllRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "sendRequestButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertFormValuesForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createApplication.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddToEnvironmentData({ ...eventBrokerRecord })" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-addApplicationButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "declinedRequests.length + requestsToCreate.length === 0 ? \"outline\" : \"call-to-action\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageRequestButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenRequestPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`sub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.sub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`pub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.pub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEventVersionSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonAddSubscription(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageRelationshipBtnClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageLinksBtn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dataQa + \"-expandAll\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleRequestsExpand" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isValid || !isDirty" + }, + { + "name": "onClick", + "type": "expression", + "value": "mode === \"existingConsumer\" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)" + }, + { + "name": "data-qa", + "type": "string", + "value": "addSubscriptionButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "gotoRuntimeTab" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "launchRDPDeploymentDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRDPToBrokerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetIsEditing(true);\n\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onToggleInputBType" + }, + { + "name": "title", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "startIcon", + "type": "expression", + "value": "showSparkle ? : undefined" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${id}_filterToggleButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClearFilterClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterToggleButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.READ_ONLY)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.CREATE)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.EDIT)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "removeRelation" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRelation(relation)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAdd" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add_${inputOrOutput}_button`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(handle)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "openUploadModal" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetReImport(true);\n\t\t\t\t\t\t\t\topenUploadModal();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-edit-constant-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetConstantField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyConstantEdit" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetCustomHeaderField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-custom-header-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyHeaderEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`delete-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetIdToDelete(id);\n\t\t\t\t\t\t\tsetShowDeleteDialog(true);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConstant" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "startIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMapWithAI" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-constant-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddConstantDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddHeaderDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSensitiveField ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSensitiveField ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSensitiveField(!showSensitiveField)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e: any) => onClick && onClick(e)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "expression", + "value": "onDropPropertyClick(label)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "zeroStateDocLink" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(CONNECTOR_AVAILABLE)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeployState" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openConnectorFlowButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${serviceDetails?.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRowIds([])" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.buttons.close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showClientSecret ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showClientSecret ? \"showClientSecretButton\" : \"hideClientSecretButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowClientSecret(!showClientSecret)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslKeyStorePassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslKeyStorePassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslKeyStorePassword(!showSslKeyStorePassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t? connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t: en.connectors.buttons.integrationHub.hrefLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/ToastAction.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "intg-toast-action" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRedirect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(action.title)}`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "href", + "type": "variable", + "value": "href" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "editButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createconnector" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "save" + }, + { + "name": "dataQa", + "type": "string", + "value": "save" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleDownloadLog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createAgent" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/SolaceToast.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDismiss()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant ?? \"text\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + }, + { + "name": "href", + "type": "expression", + "value": "action.href ? action.href : undefined" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, helpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "help-no-access" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, secondaryHelpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "secondary-help-no-access" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Configure-Message-Spools.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_deleteprotection" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_service_deletion_protection.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_migration" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_dist_tracing" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-dt-for-cloud.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewPassword" + }, + { + "name": "title", + "type": "expression", + "value": "showPassword ? t({ id: \"id_hide_password\", message: \"Hide password\" }) : t({ id: \"id_view_password\", message: \"View password\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_copy\", message: \"Copy\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/mesh-manager/${eventMesh.id}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_event_mesh" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-scaleup-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewScaleUpLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "type", + "type": "string", + "value": "button" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ggs_tryme.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTryMe" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenTryMe" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectLibrary(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLibraryDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelection(item)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "open-ticket" + }, + { + "name": "href", + "type": "expression", + "value": "buildSupportURL(isSAP, service.errorId, service.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/distributed-tracing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUpgradeDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/upgrade-event-broker.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "onOpen" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-upgrade-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewUpgradeLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tutorial.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "dw.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.tutorial" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tconst fileInput = fileInputRef?.current;\n\t\t\t\t\t\tif (fileInput) {\n\t\t\t\t\t\t\tif (fileInput.value) {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tfileInput.value = \"\";\n\t\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t\t// that's fine\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfileInput.click();\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleCancel(idx)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSave(idx)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddGroup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowCreateHostname" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-hostname" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-hostnames.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDisable" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_semp_request" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateEndpoint" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-endpoint" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggle" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasERPLimit || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_erp_event_addon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/erp-add-on.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_mate_link_encryption" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || mateLinkEncryption.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !canEnable" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableLdapManagement" + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-ldap-management" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAccessShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-access" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerClientProfiles" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !curClusterName" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowClusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-cluster-name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/edit-cluster-name.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || isDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMessageSpoolSize" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-message-spool-size" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "distributedTracingStatus == \"error\" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-disable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-enable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerTelemetryProfiles" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCheckConnectionStatus" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isConfigured || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleConfigureDataCollection" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-deploy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding-create" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || syslogs.length >= 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "usernames.length === 0 || !allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowRotatePasswords" + }, + { + "name": "dataQa", + "type": "string", + "value": "rotate_passwords" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnable" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoring-enable" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !!configuringMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-open-broker-manager" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-client-auth" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowAuthentication" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableStandardDomainCertAuth" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddClientCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-client-cert-auth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddDomainCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-domain-cert-auth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-create" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(path)) || \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\ttrack(TRACK_ELEMENT_CLICK, { \"element-id\": dataQa });\n\t\t\t\t\t\t\topenWindow(getBrokerWebUI(path), serviceId);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "truststoreUri ?? \"https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "open-broker-manager" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI()) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "openBrokerManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_service" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateService" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_user_access" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRetry" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "service.name" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: \"status\" }))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createService" + }, + { + "name": "dataQa", + "type": "string", + "value": "createService" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createServiceDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "cloning-documentation" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/cloud-clone-service.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCustomize" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "reset" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetPort" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_services" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_pick_service_type.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_cloud" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/choose-cloud-provider.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_regions" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_regions.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!ssoBrokerEnabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageBrokerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleViewSettingMapping" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGotoUserGroups" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "hyperLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "aupIsLoading" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAgree" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "id", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/event-management-agents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=environment" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-enabled`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thistory.push(`/ep/runtime/templates`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentTypeInfo\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentsInfo\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "buttonEventManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/templates" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "createEnvButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCreateEnvClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfChangesDone()" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfSaveDisabled()" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveProfileButton" + }, + { + "name": "id", + "type": "string", + "value": "saveButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApplyButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave" + }, + { + "name": "onClick", + "type": "function", + "value": "() => saveNotifyPreferences()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLess" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGroupMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "ugCount <= 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"searchIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "id", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => editSSOConfiguration()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasLoginSubdomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setHideSecretKey((state) => !state)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[hideSecretKey ? \"showKey\" : \"hideKey\"]" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => updateSsoConfiguration({ state: \"enabled\" })" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "id", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!haveStagedChangesToSave" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "testSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "testSsoConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleSsoSetup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "setupSsoButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "setUpSsoButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.accountSettings.learnMoreSSODoc" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadAuditLogs" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadAuditLogsJsonLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRow(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "logDetailsCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"setup-idp-link\", \"link\")" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGroupClaimHelpLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!claimId" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canDiscardChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave || !(canDiscardChanges || !isEnabled)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelAddMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelAddClaimMapping" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!groupMappingState ||\n\t\t\t\t\t\tselectedUserGroups.length < 1 ||\n\t\t\t\t\t\t!claimValuesMapping ||\n\t\t\t\t\t\tclaimValueError ||\n\t\t\t\t\t\tclaimValuesMapping.trim().length < 1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addGroupMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "claimMappingToEdit !== -1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelClaimMappingEditHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => saveMappingDetails(rowData.id)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormCancel" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormSubmit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSaveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceCloudStatus\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/users`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestLimitChangeDialogOpen(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/support/question`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "en.overview.eventPortalSection.objectCountHelpLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/service-limits`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestUpgradeDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAdvancedSettingsHidden((x) => !x)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deleteAccountButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsDeleteAccountDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sendEmailButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!email.isValid" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateToLogin" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-notifications\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "stopNotification" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || mutating" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenConfirmationDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscardChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "NotificationIsActive ? \"updateNotifications\" : \"activateNotifications\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSubmission" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-email-integrations\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com/contact/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.contactSupport" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"supportPage\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventPortalCloudEma\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "always" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tokenManagementHelpLink\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCreateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasMaxNumberOfTokens" + }, + { + "name": "dataQa", + "type": "string", + "value": "createApiTokenButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyToken" + }, + { + "name": "dataQa", + "type": "string", + "value": "copyTokenButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceOpenAPIV2\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "mode === \"create\" ? \"text\" : \"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createTokenIsLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTokenBtn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onRegenerateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "regenerateTokenButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/user-settings/notify-settings`)" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationSettingsButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.settings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refreshNotificationSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refetchNotifications()" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "markAllNotificationsReadButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => markAllRead()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${header.key}-copy`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => navigator.clipboard.writeText(header.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "update" + }, + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-update`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUpdate(item)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "`/services/${item.serviceId}`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tracingDestinationLink\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingProfile.infoMessage.link.href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "viewServicesButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSynchTracingDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingLimits.infoMessage.link.href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "tracingDestinationCreationIsDisabled ? \"text\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "tracingDestinationCreationIsDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTracingDialog({ mode: Mode.Create, isOpen: true })" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTracingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/utils/helper.tsx", + "props": [ + { + "name": "href", + "type": "variable", + "value": "link" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!link" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "openLinkInNewTab", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`link-${text}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleShowExportDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "exportCSVButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAllFilters" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "exportCloseButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadCSV" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "exportDownloadButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/datacenters/${item.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!cluster?.id || isRefreshing" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh-cluster-button" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSearchField(EMPTY_STRING)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearAllFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setClearFiltersFlag(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/spool-configs`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "startIcon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/create`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/createorganization`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "moreDetailsErrorButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetails(errorKey)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "pushLogPipelines" + }, + { + "name": "dataQa", + "type": "string", + "value": "createUpdateLogPipelineButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "monitoringJobStatus === TaskStatus.QUEUED || monitoringJobStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "queryTestLog" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateLogFacets" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "queryTestLogStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateAllMonitorsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenDialog(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "notificationUpdateStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "validateDatadogResources" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateResources" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "validateStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateOrgDefaultsButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "_.isEmpty(dirtyFields) || errorFetchingOrgDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateServicesMonitoringConfigButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetDatadogProxyDialogService(service);\n\t\t\t\t\t\tsetOpenDatadogProxyDialog(true);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetAgentStatusDialogService(service);\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(true);\n\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!service.monitoringAgentEnabled" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`agentVersionButton_${service.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/org-services/${row?.serviceId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateRMMSSettingsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "configureNewDDSubOrgButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "createNewDatadogSuborg" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createDatadogSuborgLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateAPIKeysButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "validateKeys" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "validateApiKeysStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInsightsRolesButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "createInsightsRoles" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!ddOrgData?.apiKey || createInsightsRolesLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/995065871/PE+Enable+PubSub+Insights#PE%3AEnablePubSub%2BInsights-SettinguptheDatadogSubOrgintegrations" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "createUpdateLogPipelineButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "pushLogPipelines" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "pushLogPipelinesStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "pushTestLogButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "pushTestLog" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "pushTestLogLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.datadoghq.com/logs/explorer/facets/#create-facets" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateLogFacetsButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "queryTestLog" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "queryTestLogStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateDDHandlesAndResourcesButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "notificationUpdateStatus == TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateMonitorsDashboardsButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "validateDatadogResources" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "validateDatadogResourcesStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "enableInsightsPolicyButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "enableInsightsPolicy" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "enableInsightsPolicyStatus == TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "inviteAdminUsersButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => inviteAdminUsers(adminUsersList)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "inviteAdminUsersLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => add()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!attribute || !operator || !value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setQueryShow(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create-plan" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleModal()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "manage-upgrade-button" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handlePlanRoute()" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "create" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!autoUpgrades" + }, + { + "name": "onClick", + "type": "variable", + "value": "setCreateOpen" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "schedule-upgrade-run" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/organizations/${row.orgId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/organizations/${row.orgId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/datacenters/${row.datacenterId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setOpenUpdateDialog(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setOpenRollbackDialog(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editMetadata" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "create" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setCreateDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "createBizOrganization.messages.runbookLink" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "exitFormQa" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExitFormButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewSaveFormQa" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isFieldReadOnly" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tif (!isEmailValid || inputError || error || validation || orgDetails.error || !readyToSave) {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(false);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(true);\n\t\t\t\t\t\t\t\thandleReviewSaveButton();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!isEmail(currentEmailEntry)" + }, + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => addEmail()" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEmailButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/organizations/${secondary}`" + }, + { + "name": "title", + "type": "expression", + "value": "secondary.toString()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "props.isEnabled ? \"outline\" : \"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleClick" + }, + { + "name": "data-qa", + "type": "expression", + "value": "props.isEnabled ? \"disable-button\" : \"enable-button\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshSubOrgs" + }, + { + "name": "onClick", + "type": "function", + "value": "() => dispatch(fetchAllDatadogInfos())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshArtifactVersion" + }, + { + "name": "onClick", + "type": "function", + "value": "() => dispatch(fetchDatadogArtifactVersion())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshDT" + }, + { + "name": "onClick", + "type": "function", + "value": "() => dispatch(fetchDistributedTracingDetails())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "distributed-tracing" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "insights-settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "title", + "type": "string", + "value": "Refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "insights-settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "title", + "type": "string", + "value": "Refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/logs?query=service%3Amaas-monitoring%20%40logger_name%3Acom.solace.maas.monitoring.%2A%20%28%40event%3AINSIGHTS_ONBOARDING%20OR%20%40event%3AINSIGHTS_OFFBOARDING%29%20&cols=host%2Cservice&index=%2A&messageDisplay=inline&refresh_mode=sliding&stream_sort=desc&viz=stream&live=true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSidekickDeploymentDetailsRefresh()" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshDetailsInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSidekickDeploymentStatusRefresh()" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshStatusInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(link)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "refetch" + }, + { + "name": "dataQa", + "type": "string", + "value": "retrieve" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handelCopy" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!details" + }, + { + "name": "dataQa", + "type": "string", + "value": "copy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/connector-deployments/${row?.deploymentId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/connector-deployments/${row?.deploymentId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`details-${request.deploymentId}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setErrorDetails(`${request.deploymentId}-disable`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleManageContacts(item.type)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleCopyEmails(item.emails, item.type)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!item.emails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refetch()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\twindow.open(`/datacenters/${row.id}`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Broker, isOpen: true })" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "addBrokerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Collector, isOpen: true })" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "addCollectorButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(link)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "refetch" + }, + { + "name": "dataQa", + "type": "string", + "value": "retrieve" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handelCopy" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!configs?.data" + }, + { + "name": "dataQa", + "type": "string", + "value": "copy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCollectorInfoRefresh" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "collectorDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/distributed-tracing-collectors/${row?.serviceId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "row?.id + \"_RefreshButton\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "row?.collectorLoadingStatus == CollectorLoadingStatus.IN_PROGRESS ||\n\t\t\t\t\t\t\t\t\trow?.collectorLoadingStatus == CollectorLoadingStatus.INITIAL" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefresh(row?.infrastructureId)" + }, + { + "name": "title", + "type": "string", + "value": "Refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`details-${request.infrastructureId}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setErrorDetails(request.infrastructureId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + } + ] + }, + { + "componentName": "SolaceGrid", + "totalUsages": 405, + "usagesByMfe": { + "ep": 120, + "intg": 29, + "mc": 8, + "saas": 70, + "maas-ops-react": 178 + }, + "commonProps": [ + { + "name": "item", + "count": 307 + }, + { + "name": "xs", + "count": 204 + }, + { + "name": "container", + "count": 93 + }, + { + "name": "spacing", + "count": 38 + }, + { + "name": "alignItems", + "count": 34 + }, + { + "name": "style", + "count": 26 + }, + { + "name": "key", + "count": 23 + }, + { + "name": "data-qa", + "count": 20 + }, + { + "name": "mt", + "count": 19 + }, + { + "name": "className", + "count": 19 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"grid\", gridTemplateColumns: \"1fr 1fr\", gap: \"8px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "isEditable || nameInEditMode ? \"flex-start\" : \"center\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-valueType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-scope`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "expression", + "value": "isEditable ? 1 : 2" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caErrorKey}-message`" + }, + { + "name": "key", + "type": "expression", + "value": "`${caErrorKey}-message`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-content`" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "columnGap", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-action`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "columnGap", + "type": "expression", + "value": "\"8px\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "padding", + "type": "number", + "value": "0" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem additionalFilter" + }, + { + "name": "key", + "type": "expression", + "value": "`${filterType}-select`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${selectedFilter.type}Select`" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem customAttribute" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columns", + "type": "number", + "value": "3" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "expression", + "value": "\"0\"" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "wrap", + "type": "string", + "value": "nowrap" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"450px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"538px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingRight", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "padding", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100% - 65px)`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: SIDE_PANEL_WIDTH }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: \"flex\", flexDirection: \"column\" }" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingTop: \"24px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "gap", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"row\", alignItems: \"center\", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "ml", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderRight", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (leftScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetLeftScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "object", + "value": "{ backgroundColor: theme.palette.ux.background.w20 }" + }, + { + "name": "justifyItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "alignContent", + "type": "expression", + "value": "relations.length === 0 && !initalDrag ? \"center\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderLeft", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (rightScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetRightScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${id}-key`" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "className", + "type": "variable", + "value": "classNames" + }, + { + "name": "style", + "type": "variable", + "value": "style" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justify-content", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.5" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1.4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + }, + { + "name": "mt", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 4 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "variable", + "value": "isParentCategory" + }, + { + "name": "key", + "type": "expression", + "value": "permission.id" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(0.5)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "categoryName" + }, + { + "name": "style", + "type": "object", + "value": "{ padding: theme.spacing(0.25) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "variable", + "value": "permissionTitleSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "marginTop", + "type": "expression", + "value": "categoryName ? theme.spacing(0.5) : theme.spacing(0.25)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "className", + "type": "string", + "value": "readWrite" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "itemWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ padding: 1, paddingLeft: 3 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ marginTop: \"8px\" }" + }, + { + "name": "key", + "type": "expression", + "value": "run.id" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "rowSpacing", + "type": "number", + "value": "2" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "style", + "type": "expression", + "value": "styles.column" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "expression", + "value": "styles.row" + }, + { + "name": "width", + "type": "string", + "value": "fit-content" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "columns", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "peNotificationStatus" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "mt", + "type": "string", + "value": "30px" + }, + { + "name": "pr", + "type": "string", + "value": "32px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "style", + "type": "object", + "value": "{ alignContent: \"end\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "pr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "expression", + "value": "style.max" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "auto" + }, + { + "name": "ml", + "type": "string", + "value": "1px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "search-page-form" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "sm", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "sm", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "sm", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "sm", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "sm", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + }, + { + "name": "style", + "type": "object", + "value": "{ margin: \"auto\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "sm", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "editForm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "createForm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "releaseDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "mb", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "value" + }, + { + "name": "mr", + "type": "expression", + "value": "theme.spacing(1.5)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "key", + "type": "expression", + "value": "`container${key}`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`qacx-${key}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`subscription-products-container`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "rowSpacing", + "type": "number", + "value": "2" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ padding: 3 }" + }, + { + "name": "spacing", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "sm", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "md", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "sm", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "md", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + } + ] + }, + { + "componentName": "SolaceTooltip", + "totalUsages": 385, + "usagesByMfe": { + "ep": 245, + "intg": 10, + "mc": 14, + "saas": 29, + "infra": 2, + "maas-ops-react": 85 + }, + "commonProps": [ + { + "name": "title", + "count": 379 + }, + { + "name": "variant", + "count": 312 + }, + { + "name": "placement", + "count": 151 + }, + { + "name": "maxWidth", + "count": 87 + }, + { + "name": "dataQa", + "count": 29 + }, + { + "name": "key", + "count": 20 + }, + { + "name": "open", + "count": 10 + }, + { + "name": "onOpen", + "count": 9 + }, + { + "name": "onClose", + "count": 9 + }, + { + "name": "disableHoverListener", + "count": 6 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventManagementAgent?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody(memName)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environmentOption.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Remove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Remove`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltipTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.preview.aclProfile" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "aclProfileConfig" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.credentials.clientCredentials" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientCredentialConfig" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueConfig-${identifier}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "queueBindingTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueBindingConfig-${queueBindingTitle}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`rdpConfig-${identifier}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "POPOVER_CONTENT" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}\n\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.applicationVersionRemovalWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventVersion?.displayName || eventVersion?.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-subscriptions`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{subscriptions.slice(1).map((sub, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{sub}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-discrepancies`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{discrepancies.slice(1).map((discrepancy, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{discrepancy}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "getHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle(title, description)" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Configuring\"" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "string", + "value": "Update event broker to configure recent changes to this application" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "resourceName" + }, + { + "name": "data-qa", + "type": "string", + "value": "resourceNameTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "placement", + "type": "variable", + "value": "placement" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "selectedEntity.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "onVersionHover ? onVersionHover(version.id) : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${version.id}-${index}`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`Matching text for '${searchText}'`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "children" + }, + { + "name": "open", + "type": "variable", + "value": "open" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOnOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleOnClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t{searchText && {`Matching text for '${searchText}'`}}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isSubscribeReadOnly ? \"Already subscribing to event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isPublishReadOnly ? \"Already publishing event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add the custom attribute to All application domains or only the Current application domain.\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"customAttributeScopeTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue?.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "getStringValuesTooltipContent(customAttributeValue?.stringValues)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "caName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestVersion" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\tLink applications to show an organizational relationship in the graph view.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about linked applications\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "right-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "enterDelay", + "type": "number", + "value": "800" + }, + { + "name": "enterNextDelay", + "type": "number", + "value": "800" + }, + { + "name": "disableFocusListener", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "graphViewToggle" + }, + { + "name": "title", + "type": "string", + "value": "Graph View" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "selected === \"graph\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "listViewToggle" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disableHoverOnListView" + }, + { + "name": "title", + "type": "expression", + "value": "entityName ? : \"Components\"" + }, + { + "name": "variant", + "type": "expression", + "value": "entityName ? \"html\" : \"text\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.parentName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.versionName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "customAttributeName" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "\"Filters relevant only to other object types\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": " 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventApiProductName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.parent?.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "renderProtocolPopover(messagingService.supportedProtocols ?? [])" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainIcon-${applicationDomainName}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "itemName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainChip-${applicationDomainName}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "\"The event broker must be in a modeled event mesh to receive runtime data or send configuration data.\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "brokerType" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row.modeledEventMesh.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "(runtimeAgent as EventManagementAgent)?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSempUrlFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getMsgVpnFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "{renderUnavailableMessagingServices()}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "STATUS_DESC_DISPLAY_MAP[status]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "timeMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "getTooltipVariant(item)" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\t\t\t\tAUDIT_ENTITY_TYPE_MAP[auditEntityType]\n\t\t\t\t\t\t\t)}.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "secondaryPanelTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSidePanelTitle()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`domainName-${domain.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionSummaryPopover-${application.id}`" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "title", + "type": "jsx", + "value": "
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${jobId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${createdTime}`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "renderSubjectRelationshipHelp()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(tag)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(hideAuditTag)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationVersion.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "applicationVersion.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipBody" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "rowIdentifierValue" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "parentName" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName} ${numAdditionalParents}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "enumEntity.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApiProduct.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "schema.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "application.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "en.application.applicationType[application.applicationType]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(application.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApi.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "event.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(event.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "secondaryAction?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "reuseIndexTooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t÷\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getTooltipContent()" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "right" + }, + { + "name": "dataQa", + "type": "string", + "value": "queueBindingHelpTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Unable to edit when custom attributes have unsaved changes" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionInfo?.displayName || versionInfo?.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue.customAttributeDefinitionName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to edit when ${entityType} has unsaved changes`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "unsavedChangesWarningMsg" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"version\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"displayName\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tEvent version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "node.displayName || node.versionSemver" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "nodeWarningTypeDescription[warnings?.[0]]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "SecondaryTextHoverContent()" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tAll object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn about downloading AsyncAPI documents\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tPrepend Application Domain Name\n\t\t\t\t\t\t\tUse this option when the file contains objects with the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tAppend Major Version Number\n\t\t\t\t\t\t\tUse this option when the file contains more than one version of the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"namingStrategyTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.parent?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"availability-Tooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"small\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"approvalTypes-Tooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.requestor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "formatISOTimeFromNow(row.createdTime)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[request.applicationDomainId]?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "eventMesh.environmentName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "warning" + }, + { + "name": "placement", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "consumer.name" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "key", + "type": "expression", + "value": "`tooltip-${name}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicatonDomainPopoverContent(name)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityConfigSidePanelProps.title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Application Domain\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "displayName ? displayName : version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "viewedSchema.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewedSchemaName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[schemaParent.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "sharedSchema ? \"This event is shared. Only shared schemas can be created\" : \"\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${schemaVersionSelectedMap[row.id].length} Added`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Selected\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.addApplication" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "!!applicationVersion?.id" + }, + { + "name": "disableFocusListener", + "type": "expression", + "value": "!!applicationVersion?.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.approved" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.pending" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.declined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.toBeRequested" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event Access Requests\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "eventName ? \"Event is not shared across application domains\" : \"You do not have access to view this event because it is not shared\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "applicationName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event is not the latest version\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.info" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.source" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.target" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.nonDroppableTooltip" + }, + { + "name": "open", + "type": "expression", + "value": "isActive && !canDrop" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "maxQueueMsgsInfo" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "small" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"service-auth-tooltip\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{helpMessage}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_tiles\", message: \"Grid View\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_list\", message: \"List View\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "email" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(service.id as string)?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environment.label || \"n/a\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(serviceId)?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "chipProps.tooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{roleIdNameMap &&\n\t\t\t\t\t\t\t\t\tuser.roles\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)\n\t\t\t\t\t\t\t\t\t\t.map((role) => {roleIdNameMap[role]})}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-warning`" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.configurationTemplates.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "environment.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "textValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "dataQa", + "type": "string", + "value": "pcuCalculationTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "user.email" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (\n\t\t\t\t\t\t\t\t\t\t{mappedRolesData[item].name}\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "rowData.claimValues" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.userGroups\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)\n\t\t\t\t\t\t\t\t\t\t.map(({ name, value }) => (\n\t\t\t\t\t\t\t\t\t\t\t{name}\n\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(c.status)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(mc.status)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection[\n\t\t\t\t\t\t\t\t\t\t\tuser?.eventPortal2AccessEnabled ? \"totalObjectsTooltip1\" : \"totalObjectsTooltip2\"\n\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.totalObjectsCountText}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.objectsCountLearnLinkText}\n\t\t\t\t\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.readyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.inMaintenanceTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcOperational" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcNotoperational" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row?.epCapabilities == Status.ERROR ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.eventManagementAgentErrorText}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "variant", + "type": "string", + "value": "rich" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingDestinationLimitReached\n\t\t\t\t\t\t\t\t\t? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)\n\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "dateStr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${item.name}-key4`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "path.title" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "path.title" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tenantId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`${item}`" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`tooltip${key}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "serviceNameTooltip" + }, + { + "name": "title", + "type": "expression", + "value": "name.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "customerId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "accountName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "txt" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "txt" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "txt" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "dateStr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Expired ${-daysUntilExpiry} day${-daysUntilExpiry !== 1 ? 's' : ''} ago`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Expiring in ${daysUntilExpiry} day${daysUntilExpiry !== 1 ? 's' : ''}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "configRequest" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "configRequest" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.infrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.monitoringMode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceClassId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.servicePackageId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.solaceDatadogAgentImage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.solaceDatadogAgentVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "time" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.[key]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "secondary.toString()" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "String(row[key])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "textValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "dataQa", + "type": "string", + "value": "pcuCalculationTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "`TLS verification skipped. This creates an insecure connection to event brokers with custom certificates.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "`Latest Image Tag: ${latestVersion}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "popoverContent(row as ManagedEventManagementAgent)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "displayName" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "row?.released ? \"Released\" : \"Not Released\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "value ? \"text\" : \"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "value ? time : \"Not Released\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.[key]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.[key]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.organizationId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "datadogSubOrgAttributes().variant" + }, + { + "name": "title", + "type": "expression", + "value": "datadogSubOrgAttributes().tooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.monitoring" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "datadogArtifactAttributes().tooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "row?.aup === \"N/A\" ? \"html\" : \"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "row?.aup === \"N/A\" ? \"Not Applicable\" : row?.aup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "row.distributedTracingEnabled == undefined ? \"Use the refresh button to fetch this info\" : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "typedRow.org_id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "string", + "value": "N/A" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "string", + "value": "N/A" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.deploymentId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.infrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.requestAction" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.deploymentStatus" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.updatedOn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{hiddenEmails.map((email, index) => (\n\t\t\t\t\t\t\t\t{email}\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organizationDetails.notificationContacts.tooltips.copyEmail" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`podName-${index}`" + }, + { + "name": "title", + "type": "expression", + "value": "row.podName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`attachedNode-${index}`" + }, + { + "name": "title", + "type": "expression", + "value": "row.attachedNode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`pod-${index}-${idx}`" + }, + { + "name": "title", + "type": "variable", + "value": "item" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`messageBrokerPod-${index}`" + }, + { + "name": "title", + "type": "variable", + "value": "messageBrokerPod" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`events-${index}`" + }, + { + "name": "title", + "type": "expression", + "value": "row.events?.join()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.provider.toUpperCase()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serverCertificateId ?? \"Default Global\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.accessType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "_.isEmpty(row?.cloudAgentVersion) ? \"Not Configured\" : row?.cloudAgentVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.datacenterType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.datacenterId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.infrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.tracingBackendType" + } + ] + } + ] + }, + { + "componentName": "SolaceLabel", + "totalUsages": 304, + "usagesByMfe": { + "ep": 246, + "intg": 25, + "mc": 20, + "saas": 11, + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 302 + }, + { + "name": "htmlForId", + "count": 77 + }, + { + "name": "required", + "count": 52 + }, + { + "name": "noWrap", + "count": 12 + }, + { + "name": "readOnly", + "count": 6 + }, + { + "name": "disabled", + "count": 5 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/components/CommonFormControl.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.styles.ts", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Domain`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessApproval`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "parentShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMesh[environment]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"bulkMoveCurrentAppDomainLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerConfiguration\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerName\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationName\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationVersion\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"directClients\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventQueues\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"kafkaConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationA\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfile\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RDPName\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RESTConsumerType\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfileLabel\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"queueConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Name`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Version`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "roleHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionVersion]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDisplayName]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDescription]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "version" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Preview`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customColour]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customColour]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customIconLogo]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customIconLogo]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[versionState]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[versionState]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[stateName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[stateName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkedApplications-label" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[state]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[state]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"newVersion-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"newVersion\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "defaultClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "multiSelectKey" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`entityVersion-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "env" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshOfMessagingServiceToBeDeleted-none-label" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]-label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[agentMode]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[EventBrokers]-title" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`serviceLabel-${messagingService.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connectedMem\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgentIdLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationDomainLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-applabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelObjecs\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelAction\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsNameLabel" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsDescriptionLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsEnvironementAssociationLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductBrokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiBrokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`postRequestTarget-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}TypeLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}NameLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}ValueLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"postRequestTarget-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointConfigurationEmpty" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointConfigurationType-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointConfigurationType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointName-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointName`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "template" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectAllDomainsLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectedDomainsLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "sectionId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filename-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "kafkaDelimiter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumeration[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumeration[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearchLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "domainsSearch" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filter-popup-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declaredEAPVersions-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "declaredEAPVersions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + }, + { + "name": "required", + "type": "expression", + "value": "!isEmpty(getValues(`${versionObjectName}.name`))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "planNameLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "availabilityLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "approvalType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[schemaType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[schemaType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaTypeLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsLoadingLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsNoPermission\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEvents\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-templateLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "suggested-events" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"name-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resource-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"description-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesMessageLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesPreview\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[requiresApproval]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[requiresApproval]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddressResource" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "appearsIn-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "appearsIn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "\"domainsSearch[label]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[description]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`schemaVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`schemaVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[topicAddress]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[topicAddress]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noCredentials`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noApplicationVersion`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "not-declared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectedMem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"subscription\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventTopic" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomainLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "targetHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "headerExpression" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${props.id}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-key`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "type" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${detail.label}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_status\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_direction\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_description\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`connector-${config.label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_eventBrokerService\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_bindingDestination\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"sslKeyStoreFileUploaderLabel\"" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${label}_label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "keyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "valueTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`role-label-${resourceRole}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label\"`" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + }, + { + "name": "required", + "type": "variable", + "value": "required" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "endpoints" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryptionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "mateLinkEncryption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "certAuthoritiesLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloneCertificateAuthorities" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "environment" + }, + { + "name": "required", + "type": "expression", + "value": "!!serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "htmlForId", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "`${nameCheck}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "regionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "region" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloudLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloud" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "clusterName" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "systemType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/components/CommonFormControl.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "activeStorageAddOns" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "unusedStorage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "current-environment-label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`description-label-${selectedItem.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`state-label-${selectedItem.id}`" + } + ] + } + ] + }, + { + "componentName": "SolaceMessageBox", + "totalUsages": 283, + "usagesByMfe": { + "ep": 146, + "intg": 16, + "mc": 38, + "saas": 33, + "maas-ops-react": 50 + }, + "commonProps": [ + { + "name": "variant", + "count": 283 + }, + { + "name": "message", + "count": 283 + }, + { + "name": "dataQa", + "count": 82 + }, + { + "name": "showCloseButton", + "count": 66 + }, + { + "name": "onClose", + "count": 57 + }, + { + "name": "showIcon", + "count": 37 + }, + { + "name": "dense", + "count": 13 + }, + { + "name": "details", + "count": 5 + }, + { + "name": "key", + "count": 3 + }, + { + "name": "color", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "submitWarning.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\tEvent Portal does not require your authentication passwords. After Event Portal generates the connection file, replace\n\t\t\t\t\tthe environment variables with your passwords in the installation command, so you can keep them secure.{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\tLearn more about authentication passwords\n\t\t\t\t\t\n\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "\"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.bulkMoveInfo[entityType]" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "getErrorMessage(errors)" + }, + { + "name": "dataQa", + "type": "string", + "value": "previewErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"aclProfileMessageBox\"" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t{messages.preview.aclProfileInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{messages.preview.learnMoreAboutACLProfiles}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseAclProfileInfoMessage()" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.inProgress" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "addHelpText" + }, + { + "name": "onClose", + "type": "function", + "value": "() => onCloseAddHelp()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "deleteHelpText" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"After an object version is Retired, you cannot associate it to other object versions.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(\n\t\t\t\t\t\t\t\tentityType\n\t\t\t\t\t\t\t)} will be removed from the graph view if all versions are in retired state.`" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "stateChangeErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "color", + "type": "expression", + "value": "theme.palette.ux.error.w100" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? \"versions\" : \"version\"} open for editing`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUnsavedWarning(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "\"Any unsaved changes will be lost if you reload the page.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"unsavedWarning\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enumErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "enumWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(item.name)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissErrorStatus" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"deletionErrorMsgBoxSidePanel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedGatewayMessaggingServices" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedVersions" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t{eventManagementAgentResources.version.needUpgradePrompt}\n\t\t\t\t\t\n\t\t\t\t\t\t{eventManagementAgentResources.version.needUpgradeLinkText}\n\t\t\t\t\t\n\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Connection details updated. Download the file and run it with the Event Management Agent to update the connection.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Unable to create connections to Event Management Agents." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "validationError.eventBrokerError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The event broker must be in a modeled event mesh to receive runtime data or send configuration data." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tUnable to delete connection to{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tselectedMessagingServices.filter((service) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted;\n\t\t\t\t\t\t\t\t\t\t\t})[0]?.name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t. It is associated with one or more objects in the environment.\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`Event Management agent ${emsStatus}`" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Event Management Agent installation setup complete" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"The next steps require you be on the system hosting the connected agent.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\tYou can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those\n\t\t\t\t\t\t\t\t\t\tdatacenters.\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tView Datacenters\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setViewDatacentersInfoBanner(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "string", + "value": "One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\tConnection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that\n\t\t\t\t\t\t\t\tthe agent connects to.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t handleDownloadConnectionFile(item.id, item.name)}>\n\t\t\t\t\t\t\t\t\t\tDownload Connection File\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{ConnectionStatusLabel.connectionIncomplete}\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tInstall the Event Management Agent and run the connection file to connect to Event Portal.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDownload and install the Event Management Agent.\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "string", + "value": "Event management agent not connected to Event Portal. View logs for details." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{dataCollectionErrorMessage}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tYour event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and\n\t\t\t\t\t\t\t\t\t\t\t\tre-add it to the modelled event mesh\n\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t handleDeleteMessagingService(selectedMessagingService)}>\n\t\t\t\t\t\t\t\t\t\t\t\t\tDelete From Event Portal\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{renderDataCollectionError}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\tUnable to delete connection to {selectedMessagingService.name}. It is associated\n\t\t\t\t\t\t\t\t\t\t\twith one or more objects in the environment.\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\tModeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows\n\t\t\t\t\t\tbetween publishing and subscribing applications.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about modeled event meshes\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warningInfoBoxMessage" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{showServiceWarning && (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tChoose Event Broker\n\t\t\t\t\t\t\t\t\t{renderMessagingServiceSelect()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{showAuditResultTypeWarning ? \"Choose Audit Result Type\" : \"Selected Objects\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{renderSelectionStats()}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects that are already in Event Portal do not need to be imported again.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"matchFoundMessage\"" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseMatchFoundMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t
{errorMessage}
\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Resolve partial matches caused by runtime configuration changes by updating the event from the audit results." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "No differences found in the compared version configurations." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variantType" + }, + { + "name": "message", + "type": "variable", + "value": "_message" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "dismissible" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleMessageBoxOnClose(variantType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NONDRAFT_WARNING" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftWarning" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "`Selected ${\n\t\t\t\t\tAUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]\n\t\t\t\t} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\tentityType\n\t\t\t\t)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "EVENT_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tUnable to import \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{invalidAudits.length} of {audits.length} selected {auditEntityType}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeselect\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationErrorWithDeselect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "submitError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tIf you plan to create objects on the event broker, consider to tag them as \n\t\t\t\t\t\t\tTo Be Created\n\t\t\t\t\t\t\t using the Quick Actions.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${status} ${subStatus ?? \"\"}`}
\n\t\t\t\t\t\t\t{actionText && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t{actionIcon}\n\t\t\t\t\t\t\t\t\t\t{actionText}\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + }, + { + "name": "onClose", + "type": "variable", + "value": "onAuditImportDone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.appDomainFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tsetAppDomainFilterError(false);\n\t\t\t\t\t\t\t\t\tsetSelectedAppDomainId(\"all\");\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.tableFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\tsetTableFiltersError(false);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedSharedType(null);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedBrokerType(null);\n\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!!onClose" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "action?.label && !!action?.onClick ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{action.label}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "variable", + "value": "dense" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{error}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`runtimeConfigurationBanner-${applicationVersion.id}`" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{application.configuration.warningOutOfSync}\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "getEmptyMessageDetails(true)" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "EXPORT_MESSAGE" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "variable", + "value": "messageType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.eventApiProduct.labels.downloadInfo" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "message", + "type": "variable", + "value": "conflictMessage" + }, + { + "name": "details", + "type": "expression", + "value": "getErrorDetails()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t setTriggerVersionDuplication(true)}>\n\t\t\t\t\t\t\t\t\t\tDuplicate Version\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowImportedSchemaInfoBanner(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editImportedSchemaWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "schemaVersionReferencesError.message" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasErrorText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_TYPE_MISMATCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SHARED_VALUE_MISMATCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_VERSION_NOT_FOUND" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "noOptionSelectedError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendValidationErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tCannot delete the last topic domain when{\" \"}\n\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain is selected.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "applicationDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "topicDomainSuccessMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"One or more topic domains were not created successfully.\"" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(failedTopicDomains, false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "duplicateTopicDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(duplicateTopicDomainEntries, true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"All versions of an event have the same broker type. It cannot be changed after the event is created\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBrokerTypeHelp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "brokerTypeWarning" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"brokerTypeWarning\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "errors.event.shared.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tAll versions of a Kafka event use the same topic address and use versions from the same schema object.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{\"Learn more about creating Kafka events\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseInfoMessage()" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaEventInfoBanner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "expression", + "value": "`This ${pageID === PageID.eventSearchSchemas ? \"event\" : \"schema\"} is shared. Only shared schemas can be selected.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "messages.credentials.removeCredentialsWarning" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? \"s\" : \"\"}. `}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t{renderWarningDetails()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonSharedEventWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_TOPIC_ADDRESS_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_PUBLISHER_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_MATCHED_SUBSCRIPTION" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForPubEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "errorMessageForPubEvents || subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsInfo(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsWarning(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForAdditionalEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUndeployedInformation(false)" + }, + { + "name": "message", + "type": "expression", + "value": "messages.add.addApplicationDescription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : \"You do not have access to this event.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "messages.credentials.configurationWarning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onCloseError" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`Returning to an earlier step will reset your progress. `" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messages.info}\n\t\t\t\t\t\t\t{getWizardButton(\"text\", goToWizard, false)}\n\t\t\t\t\t\t" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowMessageBox(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "messages.projectDefinition.guide" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "sourceTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "targetTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.helperText.payloadMessage" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setPayloadInfoDismissed(!payloadInfoDismissed)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.reImportWarning(direction.toLowerCase())" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "payloadMappingsValidationErrors.apiError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxConstantCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxHeaderCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{renderErrorMessages(step, validationErrors)}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "down_state_error_message" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error\n\t\t\t\t\t\t\t\t\t\t\t\t\t? en.connectors.labels.errorStateMessage\n\t\t\t\t\t\t\t\t\t\t\t\t\t: en.connectors.labels.downStateMessage}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error && (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? \"Unknown error\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.additionalSupportMessage}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? \"\")" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_state_message" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tdetailsStepValidationErrors,\n\t\t\t\t\t\t\t\tisEqual(connectorTypeDetails.direction, ConnectorDirection.Source),\n\t\t\t\t\t\t\t\ttrue,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tinitialStepValidationErrors,\n\t\t\t\t\t\t\t\tvendorSourceDirection,\n\t\t\t\t\t\t\t\tfalse,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "downErrorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowDownError(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{errorMessageDetails ?? \"\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "error_message_box" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(connectorState ?? \"\")" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_message_box" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_edit_msg_spool_info\", message: \"This change will not impact queue size.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_customize_msg_spool_info\", message: \"You cannot decrease the message spool size after creating the service, but you can increase it without service interruption.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "type" + }, + { + "name": "message", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "eventMesh.errorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\tSorry, a problem occurred trying to create your service.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Support Ticket\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\tid: \"id_sso_out_of_sync\",\n\t\t\t\t\t\t\t\t\tmessage: \"The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details.\"\n\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tPlan Upgrade\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{t({\n\t\t\t\t\t\t\t\tid: \"id_auto_upgrade_failed\",\n\t\t\t\t\t\t\t\tmessage: `Upgrade steps have failed. Contact Solace for support.`\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t setViewLogs(true)}>\n\t\t\t\t\t\t\t\tView Upgrade Logs\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade steps have failed. Contact Solace for support." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_facilities\", message: \"At least one facility must be selected.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "warningMessage.join(\" \")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "pickMessage(isProfileConfigured, isAccessConfigured)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_deployment\", message: \"There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "disable-distributed-tracing-error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_destination_out_of_date\", message: \"Tracing destination is out of date on this service.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_retrieving_details\", message: \"An error occurred while retrieving Distributed Tracing details, please try again.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enableDistributedTracingErrorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "patchBrandingText(t({ id: \"id_dt_error_disabling\", message: \"An error occurred while disabling Distributed Tracing. For support, contact Solace.\" }))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_not_supported\", message: \"Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_configuration_progress\", message: \"Configuration in progress...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "configuration-progress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_running\", message: \"Collector is running.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_down\", message: \"Collector is down.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_collector_status\", message: \"Retrieving collector status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-collector-status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_connection_service_active\", message: \"Connection to the service is active.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "brokerConnectionErrorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_service_status\", message: \"Retrieving service status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-service-status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_syslog_error\", message: \"Failed to retrieve the configuration for Syslog Forwarding.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\tid: \"id_nodeport_info\",\n\t\t\t\t\tmessage: \"You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation.\"\n\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.errorMessage)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.warningMessage)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_not_latest_version\", message: \"Consider using the latest version. (Recommended)\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_max_spool_size\", message: \"Select a different region. You have reached your limits for this service.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "isSAP\n\t\t\t\t\t\t\t\t\t? t({\n\t\t\t\t\t\t\t\t\t\t\tid: \"id_error_limits_sap\",\n\t\t\t\t\t\t\t\t\t\t\tmessage: \"You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit.\"\n\t\t\t\t\t\t\t\t\t })\n\t\t\t\t\t\t\t\t\t: t({ id: \"id_error_limits\", message: \"Select another service type. You have either reached your limits, or the region does not support this service type.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} \n\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.brokerSsoSetup}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.viewSettings}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{text + \" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{link}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tI Agree\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenTopInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenBottomInfoLearnMore}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardTop" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "deleteError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t{en.environments.labels.deleteDialogMessage}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn more in the documentation\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.errors.duplicateName" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.error.typeRequired" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.info.typeCannotBeChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "messages.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTemplateWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotComplete" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotYetApplied" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.jitInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{userGroupManagement.saveChangesText}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{userGroupManagement.testAccess}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.noAdminMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.overview.banner.WE_HIT_AN_ISSUE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.forgotPassword.errorSendingResetEmail" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.notifications.fetchingNotificationsErrorNotLoggedIn" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.learnMore}\n\t\t\t\t\n\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.privateRegions.emaInfoBanner.title}{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.privateRegions.emaInfoBanner.linkText}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.anyApplicationsOrScriptsUsingThisToken" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.thisCannotBeUndone" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{en.tokens.text.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.tokens.text.learnMore}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "failed-to-synch" + }, + { + "name": "key", + "type": "expression", + "value": "item.serviceId" + }, + { + "name": "message", + "type": "expression", + "value": "tracingSynchDialog.error(item.serviceName)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.link.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "infoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{outOfSynchMessageBox.outOfDate({\n\t\t\t\t\t\t\t\t\toutOfSynchServices: outOfSynchServices.length,\n\t\t\t\t\t\t\t\t\tassociatedServices: associateServicesCount\n\t\t\t\t\t\t\t\t})}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setSynchTracingDialog(true)}>\n\t\t\t\t\t\t\t\t\t\t{outOfSynchMessageBox.viewServices}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingLimits.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingLimits" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.delete" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorDeletingTracingDestination" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingDestinations" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}Success`" + }, + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "successMessage || \"Success\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}Error`" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t{errorMessage || \"Validation failed. Please try again.\"}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t handleDetails(errorKey)}>\n\t\t\t\t\t\t\t\t\t\tMore Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "string", + "value": "Note: It can take several minutes for resources to be deployed to Datadog. Please wait before validating." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${service.name}_agentStatusWarning`" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`${warnings}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${service.name}_agentStatusError`" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "`${errors.filter(e => e && String(e).trim() !== '')}.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "warnUpdateServicesPagination" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`This section updates services shown in current page ${currentPage}. To apply monitoring configurations to all services, make sure you run Update Services on all service pages.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "string", + "value": "Note: solace-datadog-agent version cannot be overridden for k8s services" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\tNote: If this step fails because rbac is not enabled, please contact Datadog Support to enable\n\t\t\t\t\t\t\t\trbac for Datadog Sub-Org.\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: You may need to switch to the customer Sub-Org.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: It might take up to a minute for the log to be visible in Datadog.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tNote: Don’t enable PE profile for Insights onboarding. For RMMS consider\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnotifying to their handle.\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: It can take several minutes for resources to be deployed to Datadog. Please wait before\n\t\t\t\t\t\t\t\t\t\tvalidating.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: Insights policy should not be enabled for RMMS accounts.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Post-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{!lastValidation &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Pre-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{missingAttributes &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade has been paused. Verify upgrade status before proceeding. In progress operations will complete." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade has been cancelled. In progress operations will complete." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "!autoUpgrades && !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated and customer upgrades are disabled. No scheduled or immediate upgrades can take place.\"\n\t\t\t\t\t\t\t\t\t: !autoUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated upgrades are disabled. Customers can still trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Customer upgrades are disabled. Customers will not be able to trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "ema.latestDeployment?.error?.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setErrorMessage(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorDialog" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error ? error : IN_USE_MESSAGE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "releaseNotesError" + }, + { + "name": "message", + "type": "string", + "value": "Release Notes should be provided" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.messages.editDeleteMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{` ${createBizOrganization.orgDetails.errorFound}`} \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.purchaseOrderRunbook}\n\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.contactPeTeam} \n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t{/*
\n\t\t\t\t\t\t\t\tContact PE\n\t\t\t\t\t\t\t
*/}\n\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "successMsgBox" + }, + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.orgDetails.organizationSaveSuccess" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.errorFound}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.messages.purchaseOrder}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPeTeam}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPE}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "color", + "type": "expression", + "value": "theme.palette.error.light" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{createBizOrganization.products.products}\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.successMessage}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "dataQa", + "type": "string", + "value": "prodValidatedMessageQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.requests.successBannerMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.messages.editDeleteMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.orgDetails.orgIdWarning" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.accountAdmins.successBannerMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"For the latest Connector Details, please click the Connector Deployment Info Refresh icon.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`deleting-${request.deploymentId}`" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDeleting the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`error-${request.deploymentId}`" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tFailed to delete the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setErrorDetails(`${request.deploymentId}-disable`)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "deleteDialog.contentText" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`Note: This page consists of private regions specific to ${orgId} organization.`" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "note" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneError" + }, + { + "name": "message", + "type": "expression", + "value": "(error as Error)?.data?.message ?? `Failed to clone ${datacenterId} from ${selectedDatacenterId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "sameDCError" + }, + { + "name": "message", + "type": "expression", + "value": "\"Unable to clone a datacenter from itself\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`deleting-${request.infrastructureId}`" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeleting the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`error-${request.infrastructureId}`" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tFailed to delete the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t\t setErrorDetails(request.infrastructureId)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "successMessage" + }, + { + "name": "dataQa", + "type": "string", + "value": "successMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + } + ] + }, + { + "componentName": "SolaceConfirmationDialog", + "totalUsages": 235, + "usagesByMfe": { + "ep": 112, + "intg": 12, + "mc": 34, + "saas": 34, + "infra": 1, + "maas-ops-react": 42 + }, + "commonProps": [ + { + "name": "actions", + "count": 235 + }, + { + "name": "isOpen", + "count": 234 + }, + { + "name": "title", + "count": 232 + }, + { + "name": "maxWidth", + "count": 88 + }, + { + "name": "linearProgressIndicator", + "count": 69 + }, + { + "name": "contentText", + "count": 32 + }, + { + "name": "contentLayout", + "count": 8 + }, + { + "name": "key", + "count": 8 + }, + { + "name": "data-qa", + "count": 3 + }, + { + "name": "customAction", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/ErrorDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "confirmationObj.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.cancelLabel,\n\t\t\t\t\t\tdataQa: \"returnToForm\",\n\t\t\t\t\t\tonClick: () => closeModal(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.okLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"leaveAndDiscard\",\n\t\t\t\t\t\tonClick: () => closeModal(true)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Modeled Event Mesh" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Add Existing Event Broker" + }, + { + "name": "isOpen", + "type": "expression", + "value": "open && !openMessagingServiceDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleAddExistingMessagingService();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress || !!submitError?.message\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "addInProgress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "generateTitleDialog(mode)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "title || \"Event Broker Connection Details\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.deployToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.move(\n\t\t\t\tselectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)\n\t\t\t)" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: onClose },\n\t\t\t\t{ label: en.common.button.move, variant: \"call-to-action\", onClick: handleSubmit, isDisabled: moveDisabled }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "startMove.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: onClose }]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messages.credentials.saveCredentialsAndContinue,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: onSave,\n\t\t\t\t\t\t\tdataQa: \"saveCredentialsAndContinue\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !isValid\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: () => onClose(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.action,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleOnClick,\n\t\t\t\t\tdataQa: \"updateEntityInEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "submitting || isDeploymentPreviewLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tDetected Event Flow Mismatches\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tEdit Application\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(cancel)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.addEventApiProduct" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Add to Environment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleCloseWithErrors }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "applicationVersionId" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "getTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "string", + "value": "KafkaSampleSuccessDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.selectDialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.select,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tisDisabled: !value,\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "showProgressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tsetIsDialogOpen(false);\n\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Custom Attributes" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"customAttributes-cancel\", onClick: () => setIsDialogOpen(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tdataQa: \"customAttributes-save\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: disabled || isSaving === true,\n\t\t\t\t\tonClick: () => handleSave()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isSaving" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "versionStateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Manage Lifecycle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tonClick: handleLifecycleChanges,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isSaveDisabled()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "changeEntityVersionStateHook?.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCancel },\n\t\t\t\t{ label: resetButtonLabel, variant: \"outline\", onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "confirmExitDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Close ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Return To Form\", variant: \"outline\", onClick: handleCancel }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteVersionDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel} Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCancel },\n\t\t\t\t{ label: !isLastVersion || keepParent ? \"Delete Version\" : `Delete Version & ${entityTypeLabel}`, variant: \"outline\", onClick: handleDelete }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Duplicate Application Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ dataQa: \"save\", label: \"Save\", variant: \"call-to-action\", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "duplicateEntityVersion.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Warning\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Return to Form\", onClick: onClose },\n\t\t\t\t{ label: \"Reload\", variant: \"outline\", onClick: handleReload }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Configure Variable" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: refreshGraphRequiredOnClosingErrorDialog ? \"Close & Refresh Graph\" : \"Close\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Publish Graph Layout\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "layoutConflictDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: `Return to ${entityLabel}`, onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Publish Layout\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: graphUpdating,\n\t\t\t\t\tonClick: handleContinuePublishLayout,\n\t\t\t\t\tdataQa: \"continuePublishLayout\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Changes Partially Published\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "partialPublishDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ label: \"Refresh\", variant: \"outline\", onClick: handleRefreshGraph, id: \"refreshGraph\", dataQa: \"refreshGraph\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? defaultTilte" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Remove\", dataQa: \"removeAssociation\", variant: \"outline\", onClick: () => onRemove(idToRemove) }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "\"fail-download-async-api\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, variant: \"outline\" as const, onClick: action(\"onClose\") }]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "false" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "unableToDeleteDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Unable to Delete" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseUnableToDeleteDialog },\n\t\t\t\t\t{ label: \"Open Modeled Event Mesh\", variant: \"outline\", onClick: handleOpenModeledEventMesh }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Skip and Install" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Skip\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleSkip\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Connection File Created" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose, dataQa: \"connectionFileDialogCloseButton\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Setting Up Offline Event Management Agent" + }, + { + "name": "isOpen", + "type": "variable", + "value": "standaloneDialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleStandaloneClose, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Management Agent Set Up Complete" + }, + { + "name": "isOpen", + "type": "variable", + "value": "emaSetupCompleteDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tonClick: handleEmaSetupCompleteDialogClose,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Go to Modeled Event Meshes\",\n\t\t\t\t\t\t\tonClick: handleGotoMEM,\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${runtimeAgentName}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Management Agent Connection" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: deleteEventManagementAgent.isLoading,\n\t\t\t\t\t\t\tonClick: handleDelete\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Custom Discovery Scan" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Run Discovery Scan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isRunDiscoveryScanButtonDisabled,\n\t\t\t\t\tonClick: initiateCustomScan\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Data Collection\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Data Collection" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteScan.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Run Discovery Scan" + }, + { + "name": "actions", + "type": "expression", + "value": "renderDialogActionButtons(messagingServicesForDataCollection)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "eventManagementAgentNeedsUpdateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Event Management Agent Needs Update" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseEMAUpdateDialog },\n\t\t\t\t\t\t{ label: \"Open Event Management Agent\", variant: \"outline\", onClick: handleGoToEMA }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Data Collection Logs\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add Environment Association\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(\n\t\t\t\tisLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,\n\t\t\t\tcancel,\n\t\t\t\tupdate\n\t\t\t)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "isAddMode ? (\n\t\t\t\t\t
\n\t\t\t\t\t\t setIsAddMode(false)}>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tAdd Environment Association\n\t\t\t\t\t
\n\t\t\t\t) : (\n\t\t\t\t\t<>{showViewOnly ? \"View Environment Associations\" : \"Manage Environment Associations\"}\n\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "showViewOnly\n\t\t\t\t\t? [{ label: \"Close\", variant: \"call-to-action\", onClick: handleClose }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleClose },\n\t\t\t\t\t\t\t{ label: isAddMode ? \"Add\" : \"Save\", variant: \"call-to-action\", onClick: handleClick }\n\t\t\t\t\t ]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeCompareDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? \"Configuration\" : \"Runtime Configuration\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeDetailsDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"closeConfirmDialog\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"applyConfirmDialog\",\n\t\t\t\t\tonClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),\n\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Import Progress" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tdataQa: \"auditImport-close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => setAuditImportProgressDialogOpen(false)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "!!isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"cancelAuditButton\" },\n\t\t\t\t{ label: \"Import\", variant: \"call-to-action\", isDisabled: auditInError, onClick: handleImport, dataQa: \"importAuditButton\" }\n\t\t\t]" + }, + { + "name": "customAction", + "type": "variable", + "value": "customAction" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "renderHeader()" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "application.configuration.setDefaultTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: application.configuration.setDefaultTemplate,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetObservedConfiguration({\n\t\t\t\t\t\t\t\t\tname: configurationName,\n\t\t\t\t\t\t\t\t\tvalue: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "defaultTemplateConfirmationDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: () => onClose() },\n\t\t\t\t{ label: en.common.button.delete, dataQa: \"deleteTemplate\", variant: \"outline\", onClick: handleDeleteTemplate }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"learningCenterErrorDialog\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "contentText", + "type": "variable", + "value": "description" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setApiError(null) }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.template) {\n\t\t\t\t\t\t\t\t\tupdateUserConfigValues({}, true);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.addRequestHeader" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\tonClick: () => handleClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tdataQa: \"add-request-header-submit\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tlabel: en.application.configuration.restDeliveryPoint.addRequestHeader,\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleAddRequestHeader();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\tmodeSelectionToConfirm === Mode.custom\n\t\t\t\t\t\t\t\t\t? messagesConfiguration.solaceClientProfileName.customize\n\t\t\t\t\t\t\t\t\t: messagesConfiguration.selectTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.custom) {\n\t\t\t\t\t\t\t\t\tsetValue(FormCustomizedClientProfileName, observedConfiguration ?? \"\");\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\treset(modeSelectionToConfirm === Mode.template);\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Application Domain\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Application Domain`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t\t\t{ dataQa: \"delete\", label: \"Delete\", variant: \"outline\", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deleteApplicationDomain.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Application Domain Export Preview" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"domainExport-cancel\", onClick: () => onCancel() },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Export\",\n\t\t\t\t\tdataQa: \"domainExport-confirm\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: !!errorMsg,\n\t\t\t\t\tonClick: () => onExport()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "customAttributeValidations?.title" + }, + { + "name": "isOpen", + "type": "expression", + "value": "!!customAttributeValidations" + }, + { + "name": "actions", + "type": "expression", + "value": "customAttributeValidations?.actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetErrorMsg(\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "appDomainCount === 1 ? \"Importing Application Domain\" : \"Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "\"The import may take several minutes.\"" + }, + { + "name": "actions", + "type": "null", + "value": "null" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Kafka Settings\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Save\", variant: \"outline\", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Select Shared Events" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "showErrorDialog" + }, + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${collisionErrors ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: en.common.button.cancel, onClick: () => setOpen(false) },\n\t\t\t\t\t\t{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "updatePublishState.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetOpen(false);\n\t\t\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "userNotFoundDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "User No Longer Exist" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: \"Close & Clear Filters\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\t\t\tonClick: handleCloseAndClearFilters\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Revoke Event Access\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Revoke Event Access" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Revoke Access\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: declineEventAccessRequest.isLoading\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Review Event Access Request\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Review Event Access Request" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Send Review\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: sendReviewButtonDisabled,\n\t\t\t\t\t\t\tdataQa: \"sendReviewButton\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Subscription`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteSubscriptionButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(consumerId, index), dataQa: \"deleteSubscriptionButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Consumer`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteConsumerButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: handleDelete, dataQa: \"deleteConsumerButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title || \"Error\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "failedTopicDomains?.length > 0\n\t\t\t\t\t? [{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn },\n\t\t\t\t\t\t\t{ label: \"Use Duplicates\", variant: \"outline\", onClick: onContinue }\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ dataQa: \"topicAddressResourcesCancel\", label: \"Cancel\", variant: \"outline\", onClick: onReset },\n\t\t\t\t{ dataQa: \"topicAddressResourcesDone\", label: ctaLabel, variant: \"call-to-action\", onClick: onDone }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "\"Topic Address Required\"" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!error" + }, + { + "name": "title", + "type": "expression", + "value": "\"Error Sending Requests\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "error ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.removeCredentials" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.remove,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {\n\t\t\t\t\t\t\t\t\t\trefreshApplicationDeploymentPreviews.refresh();\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\thandleBackendError(messages.credentials.removeCredentialsErrorTitle, error);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// close the dialog\n\t\t\t\t\t\t\t\tsetRemoveCredentialsData(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "isEditing\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: () => setOpen(false), dataQa: \"credentialsCancel\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: common.button.save,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tonClick: () => onSave(),\n\t\t\t\t\t\t\t\tisDisabled: isLoading || !isValid || !!error,\n\t\t\t\t\t\t\t\tdataQa: \"credentialsSave\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [{ label: common.button.close, variant: \"call-to-action\", onClick: () => setOpen(false), dataQa: \"credentialsClose\" }]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isLoading" + }, + { + "name": "title", + "type": "expression", + "value": "getInProgressTitle(activeStep)" + }, + { + "name": "actions", + "type": "array", + "value": "[]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "errorMessage !== \"\"" + }, + { + "name": "title", + "type": "string", + "value": "Encountered Error while Creating Assets" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "genAiErrorMessage !== \"\"" + }, + { + "name": "title", + "type": "expression", + "value": "`Encountered Error while ${getInProgressTitle(activeStep)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"call-to-action\", onClick: () => setGenAiErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isMoreInformationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "More Information Required" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setIsMoreInformationDialogOpen(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "activeStepToConfirm !== -1" + }, + { + "name": "title", + "type": "string", + "value": "Progress Reset Warning" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setActiveStepToConfirm(-1)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Continue\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => handleSetActiveStep(activeStepToConfirm)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Disclaimer\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setIsDialogOpen(false) }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" }]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: en.connectors.buttons.apply,\n\t\t\t\t\t\t\t\tonClick: onApplyTransformation,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"applyTransformationButton\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.importPayloads(direction)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "uploadDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"close-upload-dialog\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\tsetUploadDialog(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.import,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"upload-file\",\n\t\t\t\t\t\tonClick: handleUploadFile\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "fieldType === FieldType.constant\n\t\t\t\t\t\t\t? en.connectors.labels.deleteConstantField\n\t\t\t\t\t\t\t: en.connectors.labels.deleteHeaderField" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.labels.deleteHeaderFieldContext" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showDeleteDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetIdToDelete(\"\");\n\t\t\t\t\t\t\t\tsetShowDeleteDialog(false);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\t\t\tonClick: () => handleDeleteButtonClick(),\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"deleteEdgeDialog-cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\tdataQa: \"deleteEdgeDialog-delete\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: removeRelation\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.transformations.labels.deleteMapping" + }, + { + "name": "contentText", + "type": "expression", + "value": "!isEmpty(affectedTransformations) && affectedTransformations.length > 1\n\t\t\t\t\t? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)\n\t\t\t\t\t: en.transformations.labels.deleteDialogText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.errorDeploymentTitle" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: connectors.buttons.close,\n\t\t\t\t\t\tdataQa: \"connectordeployerror-close\",\n\t\t\t\t\t\tonClick: () => setDeployErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"connectorStateChange-cancel\", onClick: () => setShowDeployDialog(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: action === \"deploy\" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,\n\t\t\t\t\tdataQa: \"connectorStateChange-deploy\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleStateChange\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "action === \"deploy\" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.deleteDialogTitle" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.deleteConfirmationMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.connectors.buttons.close, onClick: onClose },\n\t\t\t\t{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: \"outline\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.connectors.labels.mapWithAI}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiDialogClose(false),\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.map,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"confirm-ai-mapping\",\n\t\t\t\t\t\tonClick: handleAiMapping,\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"An error occurred\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Open Support Ticket\",\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.errorAiMap" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.close,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-error-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit ? t({ id: \"id_dlg_edit_msg_spool_title\", message: \"Edit Message Spool Size\" }) : t({ id: \"id_dlg_customize_msg_spool_title\", message: \"Customize Message Spool Size\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"customizeMessageSpoolCancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_apply\", message: \"Apply\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: isEdit ? \"customizeMessageSpoolSave\" : \"customizeMessageSpoolApply\",\n\t\t\t\t\tisDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: t({ id: \"id_ok\", message: \"OK\" }),\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "count ? t({ id: \"id_dlg_delete_services_title\", message: \"Delete Services\" }) : t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: count ? t({ id: \"id_delete_services\", message: \"Delete Services\" }) : t({ id: \"id_delete_service\", message: \"Delete Service\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"delete-service-ok\",\n\t\t\t\t\tisDisabled: matchText.trim() !== matchName,\n\t\t\t\t\tonClick: onDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rename_service_title\", message: \"Edit Service Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rename-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rename-service-ok\",\n\t\t\t\t\tisDisabled: hasErrors,\n\t\t\t\t\tonClick: handleRename\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_clone_service_title\", message: \"Clone Service: Pre-Check\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "expression", + "value": "isReady && (results.errors.length > 0 || results.warnings.length > 0)\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-cancel\",\n\t\t\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_continue\", message: \"Continue\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-continue\",\n\t\t\t\t\t\t\t\tisDisabled: results.errors.length > 0,\n\t\t\t\t\t\t\t\tonClick: onContinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: []" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_error_title\", message: \"An error occurred\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_open_support_ticket\", message: \"Open Support Ticket\" }),\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_auto_upgrade_plan_title\", message: \"Plan Upgrade\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose },\n\t\t\t\t{ label: \"Run Upgrade\", onClick: handleUpgrade, variant: \"call-to-action\", isDisabled: !!formError || upgradeMutation.isLoading }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ variant: \"outline\", label: \"Close\", onClick: () => onClose() }]" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "id ? t({ id: \"id_dlg_client_profile_edit_title\", message: \"Edit Client Profile\" }) : t({ id: \"id_dlg_client_profile_create_title\", message: \"Create Client Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: id ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: id ? \"client-profile-save\" : \"client-profile-create\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "addMode\n\t\t\t\t\t? t({ id: \"id_dlg_client_cert_auth_title\", message: \"Add Client Certificate Authority\" })\n\t\t\t\t\t: t({ id: \"id_dlg_client_cert_auth_edit_title\", message: \"Edit Client Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => onClose()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit\n\t\t\t\t\t? t({ id: \"id_dlg_edit_syslog_config_title\", message: \"Edit Syslog Forwarding Destination\" })\n\t\t\t\t\t: t({ id: \"id_dlg_create_syslog_config_title\", message: \"Create Syslog Forwarding Destination\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "create ? t({ id: \"id_dlg_create_endpoint_title\", message: \"Create Endpoint\" }) : t({ id: \"id_dlg_edit_endpoint_title\", message: \"Edit Endpoint\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_create_hostname_title\", message: \"Create Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"create-hostname-save\",\n\t\t\t\t\tisDisabled: isLoadingCertificates || saveDisabled,\n\t\t\t\t\tonClick: handleCreate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"library-close\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_client_auth_title\", message: \"Edit Client Authentication\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_edit_cluster_name_title\", message: \"Edit Cluster Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Distributed Tracing\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-confirm\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_move_hostname_title\", message: \"Move Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-hostname-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleMove\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Configure Data Collection\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_dt_confirmDeploy\", message: \"Confirm and Deploy\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-confirm\",\n\t\t\t\t\tonClick: handleConfirmDeploy,\n\t\t\t\t\tisDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rotate_passwords_title\", message: \"Rotate Broker Passwords\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_rotate\", message: \"Rotate\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-rotate\",\n\t\t\t\t\tonClick: handleRotate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_hostname_title\", message: \"Delete Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"delete-hostname-confirm\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_mgmt_access_title\", message: \"Set LDAP Group Access\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_mate_link_encryption_title\", message: \"Mate-Link Encryption\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-disable\",\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_profile_title\", message: \"Edit LDAP Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_domain_cert_auth_title\", message: \"Add Domain Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_endpoint\", message: \"Delete Endpoint\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"delete-endpoint-cancel\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"delete-endpoint-confirmed\", onClick: handleDeleteEndpoint }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_syslog_config\", message: \"Deactivate Syslog Forwarding\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_syslog_config\", message: \"Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server.\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"syslog-config-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_deactivate\", message: \"Deactivate\" }), variant: \"outline\", dataQa: \"syslog-config-delete\", onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_disable_standard_domain_cert_auth\", message: \"Disable Standard Domain Certificate Authorities\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_disable_standard_domain_cert_auth_desc\",\n\t\t\t\t\t\t\tmessage: \"This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates.\"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelConfirmDisable },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_disable\", message: \"Disable\" }), variant: \"call-to-action\", onClick: handleConfirmDisable }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_cert_auth\", message: \"Delete Certificate Authority\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_prompt_delete_cert_auth\",\n\t\t\t\t\t\t\tmessage: \"Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? \"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", isDisabled: !allowServiceQueries, onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_client_profile\", message: \"Delete Client Profile\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_client_profile\", message: \"Are you sure you want to permanently delete this client profile?\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"client-profile-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"client-profile-delete\", onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.brokerSSOConfig.dialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: \"outline\" }\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.viewMessageSpoolDetails.buttons.close,\n\t\t\t\t\tonClick: onClose,\n\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Change Request - ${editLimitsRow.name}`" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => setEditLimitsRow(null),\n\t\t\t\t\t\t\tisDisabled: submittingTicket\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.serviceLimits.buttons.sendRequest,\n\t\t\t\t\t\t\tonClick: onSubmit,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: !confirmDelete || isDeleting\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\"\n\t\t\t\t\t? en.environments.labels.createEnvironment\n\t\t\t\t\t: en.environments.labels.editEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? en.environments.button.create : en.common.buttons.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled:\n\t\t\t\t\t\tisDuplicate || isLoading || hasError || hasDescError || (dialogState.type === \"create\" ? false : !isEdited)\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.labels.ASEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isUpdating" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleCloseDialog\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.save,\n\t\t\t\t\tid: \"deleteButton\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdateEnvironment,\n\t\t\t\t\tisDisabled: isError || isUpdating\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"cancelConfigurationTemplatesDialog\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tdataQa: \"applyConfigurationTemplatesDialog\",\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? userGroups.ugDialog.create : userGroups.ugDialog.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,\n\t\t\t\t\tdataQa: \"ugDialogSaveQa\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroups.ugDeleteDialog.deleteUG" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.cancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: isError || isDeleting,\n\t\t\t\t\tdataQa: \"ugDialogDeleteQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.enableSsoConfig" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelEnableSso\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.activate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: enableSsoConfiguration\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.configureSsoSettings" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelConfigureSettings\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.save,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: saveStagedSsoConfiguration,\n\t\t\t\t\t\tisDisabled: !canSaveSettings\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[cannotTestSso ? \"testSsoConfigError\" : \"testSsoConfig\"]" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[cannotTestSso ? \"close\" : \"cancel\"],\n\t\t\t\t\t\tonClick: cancelSsoTest\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.test,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: testSsoConfiguration,\n\t\t\t\t\t\tisDisabled: cannotTestSso\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.setUpSso" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.cancel,\n\t\t\t\t\t\tonClick: cancelSsoSetup\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.sendRequest,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: sendSsoSetupRequest,\n\t\t\t\t\t\tisDisabled: !canSendRequest || submittingTicket,\n\t\t\t\t\t\tdataQa: \"sendRequestButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: cancelButtonLabel || userGroupManagement.cancel,\n\t\t\t\t\tonClick: cancelHandler,\n\t\t\t\t\tdataQa: \"cancelNotificationHandlerQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionButtonLabel,\n\t\t\t\t\tid: \"notificationModalActionButton\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: actionHandler,\n\t\t\t\t\tdataQa: \"notificationModalActionButton\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroupManagement.removeClaimMapping" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.cancel,\n\t\t\t\t\tonClick: () => setIsClaimMappingRemoveDialogOpen(false),\n\t\t\t\t\tdataQa: \"cancelClaimMappingQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.remove,\n\t\t\t\t\tid: \"deleteClaimMappingId\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: deleteClaimMapping,\n\t\t\t\t\tdataQa: \"deleteClaimMappingQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "confirmDialogOpen || errorDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: supportPage.dialog.close,\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tdataQa: \"supportTicketModelOKButton\",\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestLimitChangeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestLimitChangeDialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.close,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeCloseAction\",\n\t\t\t\t\t\t\tonClick: onCloseRequestLimitChange\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.sendRequest,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeSendRequestAction\",\n\t\t\t\t\t\t\tonClick: onRequestLimitChange,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: !limitRequestNumber\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestUpgradeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.dialogTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.cancel,\n\t\t\t\t\t\tdataQa: \"requestUpgradeCloseAction\",\n\t\t\t\t\t\tonClick: onCloseRequestUpgradeDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.sendRequest,\n\t\t\t\t\t\tdataQa: \"requestUpgradeSendRequestAction\",\n\t\t\t\t\t\tonClick: RequestUpgradeHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\t(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||\n\t\t\t\t\t\t\t(!!contactEmail && !isValidEmail(contactEmail))\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDeleteAccountDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.deleteAccountQuestion" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.cancel,\n\t\t\t\t\t\tdataQa: \"cancelDeleteAccountButton\",\n\t\t\t\t\t\tonClick: onCloseDeleteAccountDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.delete,\n\t\t\t\t\t\tdataQa: \"confirmDeleteAccountButton\",\n\t\t\t\t\t\tonClick: deleteAccountHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled: !password\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Deactivate Service Notifications" + }, + { + "name": "contentText", + "type": "string", + "value": "Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed." + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", dataQa: \"cancel\", onClick: () => setOpenConfirmationDialog(false), variant: \"text\" },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Deactivate\",\n\t\t\t\t\t\tdataQa: \"deactivate\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tstopNotifications();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environments.moveDialogLabels.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"move-datacenter-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.move,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-datacenter-ok\",\n\t\t\t\t\tonClick: handleMove,\n\t\t\t\t\tisDisabled: !!errors.environment\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "downloadDialog.errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.downloadFailed" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"OK\", onClick: handleCloseDialog }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "contentText", + "type": "variable", + "value": "undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.new" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: onClose\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.privateRegions.button.sendRequest,\n\t\t\t\t\t\tonClick: onRequest,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tisDisabled: loading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.copyToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\t\tvariant: isCopied ? \"outline\" : \"call-to-action\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tisDisabled: !isCopied,\n\t\t\t\t\t\tdataQa: \"closeTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.genericError.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.regenerateToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Regenerate\",\n\t\t\t\t\t\tonClick: handleRegenerate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmRegenerateTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.deleteToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmDeleteTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingProfile.title.details" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: tracingProfile.button.close,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingSynchDialog.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingSynchDialog.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: close\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingProfile.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "modifyingTracingProfile" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "An error occurred" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "data-qa", + "type": "string", + "value": "error-dialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\t\t\tonClick: () => setOpenDialog(false)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\tonClick: forceUpdateAllMonitors,\n\t\t\t\t\t\t\t\t\tdataQa: \"proceedUpdateAllMonitorsButton\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openDialog" + }, + { + "name": "title", + "type": "string", + "value": "Update Monitoring Notification" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "expression", + "value": "detailsState.showDetails" + }, + { + "name": "title", + "type": "expression", + "value": "`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowUpdateDefaultsError(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showUpdateDefaultsError" + }, + { + "name": "title", + "type": "expression", + "value": "`Update Monitoring Defaults Failed`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(onSubmit)();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirmationDialogProceedButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog" + }, + { + "name": "title", + "type": "string", + "value": "Update Services Monitoring Configurations" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setOpenDatadogProxyDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openDatadogProxyDialog" + }, + { + "name": "title", + "type": "expression", + "value": "\"Monitoring Proxy Endpoints\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Refresh\",\n\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\tconst updatedService = await refreshMonitoringAgentStatus(agentStatusDialogService);\n\n\t\t\t\t\t\t\tsetAgentStatusDialogService(updatedService);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\tservicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\t\t\tRequestStatus.IN_PROGRESS\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(false);\n\n\t\t\t\t\t\t\t// Errors and warnings are part of the fetched status and should persist\n\t\t\t\t\t\t\t// until a refresh. They are not reset on dialog close.\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"statusDialogOkButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openAgentStatusDialog" + }, + { + "name": "title", + "type": "expression", + "value": "`Monitoring Agent Status`" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "servicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\tRequestStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "expression", + "value": "detailsState.showDetails" + }, + { + "name": "title", + "type": "expression", + "value": "`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setShowUpdateMonitoringNotificationConfirmation(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"updateMonitoringNotificationConfirmationProceedButton\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(updateMonitoringNotification)();\n\t\t\t\t\t\t\tsetShowUpdateMonitoringNotificationConfirmation(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showUpdateMonitoringNotificationConfirmation" + }, + { + "name": "title", + "type": "expression", + "value": "`Update Monitoring Notification`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowInvalidHandlesDialog(false),\n\t\t\t\t\t\tdataQa: \"InvalidHandlesDialogButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showInvalidHandlesDialog" + }, + { + "name": "title", + "type": "expression", + "value": "`Failed: Invalid Email Handles`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "cleanModal" + }, + { + "name": "title", + "type": "string", + "value": "WARNING" + }, + { + "name": "contentText", + "type": "string", + "value": "Are you sure you want to perform database cleanup?" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setCleanModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleJobClean() }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "syncModal" + }, + { + "name": "title", + "type": "string", + "value": "WARNING" + }, + { + "name": "contentText", + "type": "string", + "value": "Heavy database operation will be executed. Are you sure you want to proceed?" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setSyncModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleEntitySync() }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx", + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tisDisabled: false,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "string", + "value": "Update Upgrade Plan" + }, + { + "name": "contentText", + "type": "string", + "value": "Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx", + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-plan\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create Plan\",\n\t\t\t\t\tdataQa: \"create-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "string", + "value": "Create Plan" + }, + { + "name": "contentText", + "type": "string", + "value": "Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-manage-plan\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"apply-manage-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "jsx", + "value": " handleCancel()}>\n\t\t\t\t\t\n\t\t\t\t\tManage Broker Upgrade Scope\n\t\t\t\t" + }, + { + "name": "contentText", + "type": "string", + "value": "The filter will be applied to the upgrade run, determining the brokers included in that specific run." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Plan" + }, + { + "name": "contentText", + "type": "string", + "value": "Deleting this plan will delete any runs, groups, and associated data using this plan. They will be permanently removed from the system." + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: () => handleModal() },\n\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(plan.id) }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "string", + "value": "Post-Upgrade Check Results" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "loading" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "string", + "value": "Upgrade Logs" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "string", + "value": "Pre-Upgrade Check Results" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose }]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`${actionType === \"pause\" ? \"Pause\" : \"Cancel\"} Upgrade Run`" + }, + { + "name": "contentText", + "type": "expression", + "value": "`Are you sure you want to ${actionType} this upgrade run?`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleModal },\n\t\t\t\t\t{ label: actionType === \"pause\" ? \"Pause Run\" : \"Cancel Run\", variant: \"outline\", onClick: handleAction }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-run\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Schedule Run\",\n\t\t\t\t\tdataQa: \"create-run\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "string", + "value": "Schedule Upgrade Run" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Upgrade Run" + }, + { + "name": "contentText", + "type": "string", + "value": "Are you sure you want to delete this upgrade run? This action cannot be undone." + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"delete-run-cancel\" },\n\t\t\t\t\t{ label: \"Delete Run\", variant: \"outline\", onClick: handleDelete, dataQa: \"delete-run-confirm\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onCancel,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionLabel,\n\t\t\t\t\tvariant: actionVariant,\n\t\t\t\t\tonClick: onConfirm,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"okAction\",\n\t\t\t\t\tonClick: () => setOpen({ open: false, servicePackage: undefined })\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Service Package Details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Edit Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create\",\n\t\t\t\t\tdataQa: \"create\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading,\n\t\t\t\t\tonClick: handleSubmit(onCreate)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Create Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [ + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "string", + "value": "Delete Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Release\",\n\t\t\t\t\tdataQa: \"release\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading || !servicePackage?.metadata?.releaseNotes,\n\t\t\t\t\tonClick: handleRelease\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Release New Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.reviewAndSave" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.save,\n\t\t\t\t\tid: \"confirmSave\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSave,\n\t\t\t\t\tisDisabled: dialogState.saving\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "i18nStrings.addProductsLabel" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.cancelLabel,\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogCancel\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.addProductsLabel,\n\t\t\t\t\tonClick: handleAddProducts,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogAddProds\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "getDialogTitle()" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tdataQa: \"cancel-button\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.confirm,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleConfirm();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirm-button\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "data-qa", + "type": "string", + "value": "confirmation-dialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setDetailsDialog({ isOpen: false, org: {} } as DetailsDialog)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "expression", + "value": "detailsDialog.isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Organization Details" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "string", + "value": "Manage Connector Flow Version" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: () => onDialogClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Update\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"upgradeConfirmation\",\n\t\t\t\t\tonClick: handleConnectorUpgrade,\n\t\t\t\t\tisDisabled: updatedVersion === connectorTypeId\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorDetails" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "deleteConfirmation.isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Connector" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", dataQa: \"deleteConfirmation\", onClick: handleConnectorDelete }\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "organizationDetails.manageNotificationContactDialog.title" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "deleteDialog.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "!deleteDialog?.error ? deleteDialog.contentText : \"\"" + }, + { + "name": "isOpen", + "type": "expression", + "value": "deleteDialog.isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deleteDialog.linearProgressIndicator" + }, + { + "name": "actions", + "type": "expression", + "value": "deleteDialog.actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Import From Datacenter" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "isOpen", + "type": "expression", + "value": "deleteConfirmation.isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deletingBrokerCompatibility || deletingHelmChartCompatibility" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ isOpen: false, type: CompatibilityType.None, row: {} }),\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"cancelButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: modifyError.error ? \"Ok\" : \"Delete\",\n\t\t\t\t\t\tonClick: () => handleDelete(deleteConfirmation.row, deleteConfirmation.type),\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"deleteButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "compatibilityType == CompatibilityType.Broker ? \"Add Broker Compatibility\" : \"Add Collector Compatibility\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonClose();\n\t\t\t\t\t\tsetModifyError({ error: false, message: \"\", id: \"\" });\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\ttype: \"submit\",\n\t\t\t\t\tdataQa: \"addButton\",\n\t\t\t\t\tonClick:\n\t\t\t\t\t\tcompatibilityType == CompatibilityType.Broker\n\t\t\t\t\t\t\t? handleSubmit((data: BrokerCompatibility) => handleModifyCollector(data))\n\t\t\t\t\t\t\t: handleSubmit((data: CollectorCompatibility) => handleAddCollectorCompatibility(data))\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorDetails" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "deleteConfirmation.isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Collector" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"call-to-action\", dataQa: \"deleteConfirmation\", onClick: handleCollectorDelete }\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Modify collector" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "contentText", + "type": "expression", + "value": "\"Infrastructure ID: \" + collector?.infrastructureId" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"close\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonCloseHandler()\n\t\t\t\t\t\tdispatch(openUpgradeDialog({ isOpen: false }));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Submit\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: isPerformingRequest || isEdited === false,\n\t\t\t\t\tdataQa: \"submit\",\n\t\t\t\t\tonClick: () =>\n\t\t\t\t\t\thandleModifyCollector(\n\t\t\t\t\t\t\tcollector?.serviceId as string,\n\t\t\t\t\t\t\tcollector?.infrastructureId as string,\n\t\t\t\t\t\t\timageTag,\n\t\t\t\t\t\t\thelmChartVersion,\n\t\t\t\t\t\t\taction\n\t\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t]" + } + ] + } + ] + }, + { + "componentName": "SolaceTextField", + "totalUsages": 197, + "usagesByMfe": { + "ep": 71, + "intg": 35, + "mc": 21, + "saas": 34, + "maas-ops-react": 36 + }, + "commonProps": [ + { + "name": "name", + "count": 197 + }, + { + "name": "value", + "count": 188 + }, + { + "name": "onChange", + "count": 156 + }, + { + "name": "dataQa", + "count": 147 + }, + { + "name": "hasErrors", + "count": 113 + }, + { + "name": "helperText", + "count": 111 + }, + { + "name": "label", + "count": 99 + }, + { + "name": "readOnly", + "count": 71 + }, + { + "name": "required", + "count": 64 + }, + { + "name": "onBlur", + "count": 52 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_NAME" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.name" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\" || mode === \"edit\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][registryUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? renderKafkaAuthHelperText(\"registryUrl\") : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[registryUrl]" + }, + { + "name": "label", + "type": "string", + "value": "Registry URL" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUsername" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUrl" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"e.g. ########.messaging.solace.cloud or 123.89.40.72\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.host" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tsetValue(name, value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly && isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"Use a comma (,) to separate the messaging services in the Kafka cluster.\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.bootstrapServers" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "expression", + "value": "loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.port" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "selectedMode === \"view\"" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[solace][messaging][protocol][${index}][port]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "name", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "value", + "type": "variable", + "value": "attributeValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[name]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.messageVPN" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "value", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "mode === \"edit\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\t\t\t\t\t\t\t\t\t\tconst validVersion = semverValid(newValue) ?? newValue;\n\n\t\t\t\t\t\t\t\t\t\tonChange(validVersion);\n\t\t\t\t\t\t\t\t\t\tcheckVersionAndSetWarning(validVersion);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"DuplicateEntityVersion[version]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Name" + }, + { + "name": "value", + "type": "variable", + "value": "variableName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => handleNameValidate()" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "nameErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityNameTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "entityName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxLength + 1" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "label", + "type": "string", + "value": "New Application Domain Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || SHARE_WARNING" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityVersionTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "label", + "type": "string", + "value": "New Application Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || \"\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + }, + { + "name": "disabled", + "type": "expression", + "value": "!domainId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "value", + "type": "variable", + "value": "agentId" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "value", + "type": "expression", + "value": "scan.messagingServiceName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "topicAddress" + }, + { + "name": "label", + "type": "string", + "value": "Topic Address" + }, + { + "name": "value", + "type": "expression", + "value": "selectedAudits[0].identifier" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`detailsName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "clientProfileName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetClientProfileName(e.value);\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`clientProfileName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "email-input" + }, + { + "name": "name", + "type": "string", + "value": "email-input" + }, + { + "name": "type", + "type": "string", + "value": "email" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress" + }, + { + "name": "helperText", + "type": "expression", + "value": "!isValid ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.eventPortalResources.labels.startJourney.inviteUsers.helperTextError\n\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!isValid" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEmailInput" + }, + { + "name": "value", + "type": "variable", + "value": "email" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "variable", + "value": "validateEmail" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonChange(value?.trim());\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-postRequestTarget`" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message || \"\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderName" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value ? value.trim() : \"\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`restDeliveryPointName-editor`" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!getValues(`${formName}.configurationTypeId`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormCustomizedClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "messagesConfiguration.solaceClientProfileName.clientProfileName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (e.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\thandleFilenameUpdate(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\thandleFilenameUpdate(value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filenameInput`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumeration[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (semverValid(newValue) !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tcheckIfVersionStillLatestAfterUpdate(newValue, versionId);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(semverValid(newValue) ?? newValue);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "isDuplicateVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "nodeNameTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomain-graph-object-name-field" + }, + { + "name": "value", + "type": "variable", + "value": "nodeName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "handleKeyDown" + }, + { + "name": "onFocus", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetTimeout(() => e.target.select(), 100); // Delay to ensure select() works\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "`${nameEditorWidth}px`" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxNameLength + 1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${level.name}-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error && \"Invalid Format\"" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxTTLTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxMsgSpoolUsageTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`planNameTextField-${index}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isGlobal" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"applicationDomain[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDisplayName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesLink" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "type", + "type": "string", + "value": "url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[version]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventVersion[version]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"application[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.common.labels.name" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputA" + }, + { + "name": "value", + "type": "expression", + "value": "inputA ?? \"\"" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputAValidationError" + }, + { + "name": "helperText", + "type": "variable", + "value": "inputAValidationError" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputA" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputB" + }, + { + "name": "value", + "type": "expression", + "value": "inputB || \"\"" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || (configuration.inputB.type === \"password\" && !isEditing)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputBValidationError" + }, + { + "name": "helperText", + "type": "expression", + "value": "inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputB" + }, + { + "name": "readOnly", + "type": "expression", + "value": "configuration.inputB.type !== \"password\" && !isEditing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "name ?? \"emptyName\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Name\"" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newName = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newName = name.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"name\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "placeholder", + "type": "variable", + "value": "placeholder" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "topic ?? \"emptyTopic\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "topic" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newTopic = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newTopic = topic.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "variable", + "value": "label" + }, + { + "name": "maxLength", + "type": "variable", + "value": "maxLength" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.host" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionDetailsHostTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.host)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: host }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\thost: host\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.host" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.host" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.messageVpn" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: msgVpn }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: msgVpn\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.messageVpn)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.msgVpn\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.messageVpn" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "solaceBindingDestination" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destination }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestination: destination\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destination" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceBindingDestinationTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tvalidateDestination();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.destination" + }, + { + "name": "helperText", + "type": "expression", + "value": "solaceValidationErrors.destination && validationEnabled\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.destination\n\t\t\t\t\t\t\t\t\t\t\t: // flipped because solaceDirection is the opposite of the actual connector direction\n\t\t\t\t\t\t\t\t\t\t\tisEqual(solaceDirection, ConnectorDirection.Source)\n\t\t\t\t\t\t\t\t\t\t\t? en.connectors.helperText.destinationTarget\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.destinationSource" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "value", + "type": "expression", + "value": "String(constantField.constantValue)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.headerName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, headerName: e.value });\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "headerName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderName(e.value);\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeaderExample" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerExpressionExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.headerExpressionExample" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "type", + "type": "expression", + "value": "sensitiveField && !showSensitiveField ? \"password\" : \"text\"" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "endAdornment", + "type": "variable", + "value": "endAdornment" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textField`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "props.value ? \"\" : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "values.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => setValues({ ...values, name })" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tif (isEmpty(values.name)) {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({\n\t\t\t\t\t\t\t\t\t...initialStepValidationErrors,\n\t\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({ ...initialStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!initialStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled ? initialStepValidationErrors.name : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "tokenUri" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.tokenUri" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenUriTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: tokenUri }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\ttokenUri: tokenUri\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.tokenUri)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.tokenUri" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientId" + }, + { + "name": "dataQa", + "type": "string", + "value": "tclientIdTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientId }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientId: clientId\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientId)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientId" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientSecret" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientSecret" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientSecretTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientSecret }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientSecret: clientSecret\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientSecret)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientSecret\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientSecret" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientSecret\n\t\t\t\t\t\t? solaceValidationErrors.clientSecret\n\t\t\t\t\t\t: \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "showClientSecret ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowClientSecret(!showClientSecret)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showClientSecret ? : }\n\t\t\t\t\t\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "scopes" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.scopes" + }, + { + "name": "dataQa", + "type": "string", + "value": "scopesTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: scopes }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientName }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameBasicAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientUsername)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.basicAuthUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername\n\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientPasswordTextField" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientPassword }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientPassword: clientPassword\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowPassword(!showPassword)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showPassword ? : }\n\t\t\t\t\t\n\t\t\t\t]" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientPassword)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientPassword\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.clientPassword" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.clientPassword && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.clientPassword\n\t\t\t\t\t\t\t: en.connectors.helperText.clientPassword\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "\"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStorePassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslKeyStorePassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStorePassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStorePasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStorePassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslKeyStorePassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyAliasName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyAliasName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyAliasName" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyAliasNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyAliasName }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyPassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyPasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyPassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameClientCertAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!readOnly && !!solaceValidationErrors.clientCertUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "connectorDetails.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => {\n\t\t\t\t\t\tsetConnectorDetails({ ...connectorDetails, name });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tif (isEmpty(connectorDetails.name)) {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({\n\t\t\t\t\t\t\t\t...detailsStepValidationErrors,\n\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!detailsStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "clone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "eventBrokerService" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "authenticationTypeReadOnlyField" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(basicAuthValues.clientUsername)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "value", + "type": "variable", + "value": "clientPassword" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "key" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(key)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "value" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextField.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(hasBlurred || isSubmitted) && hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "(hasBlurred || isSubmitted ? errorText : \"\") || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "name", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "dataQa", + "type": "string", + "value": "newMessageSpoolSize" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_msg_spool_size_label\", message: \"New Message Spool Size (GB)\" })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "progress" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "4" + }, + { + "name": "value", + "type": "expression", + "value": "messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasMessageStorageErrors ? messageStorageErrorText : t({ id: \"id_default_size_gb\", message: \"Default: {0} GB\", values: { 0: formatter.format(defaultMessageSpoolSize) } })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-service-confirm-name" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\tPlease type {matchText} to confirm.\n\t\t\t\t\t\t\t" + }, + { + "name": "value", + "type": "variable", + "value": "matchName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setMatchName(e.value)" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "rename-service-name" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_service_name_label\", message: \"Service Name\" })" + }, + { + "name": "value", + "type": "variable", + "value": "newName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNewName(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "isEmpty\n\t\t\t\t\t\t\t? t({ id: \"id_rule_enter_value\", message: \"Required. Enter a value.\" })\n\t\t\t\t\t\t\t: hasErrors\n\t\t\t\t\t\t\t? t({ id: \"id_rule_less_n_chars\", message: \"Exceeds limit. Enter a value under {0} characters.\", values: { 0: 50 } })\n\t\t\t\t\t\t\t: \"\\xa0\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accessType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_access_type\", message: \"Access Type\" })" + }, + { + "name": "value", + "type": "expression", + "value": "i18n._(accessTypes[endpoint.accessType])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msg_spool_size" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_cur_msg_spool_size\", message: \"Current Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "variable", + "value": "messageSpoolSize" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "tracingProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingClientUsername" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_client_username\", message: \"Tracing Client Username\" })" + }, + { + "name": "value", + "type": "expression", + "value": "\"sc-dt-trace-collector\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationClientCertEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_client_cert_auth\", message: \"Client Certificate Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationClientCertEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationOauthEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_oauth_provider_auth\", message: \"OAuth Provider Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationOauthEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "filterName" + }, + { + "name": "name", + "type": "string", + "value": "filterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-filter-name" + }, + { + "name": "value", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "t({ id: \"id_filter_services\", message: \"Filter by service name\" })" + }, + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\ticon: filter ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: filter ? handleClearFilter : undefined\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : formatter.format(parseInt(messageStorage.value))" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "messageStorageErrorText" + }, + { + "name": "readOnly", + "type": "expression", + "value": "activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "namePort" + }, + { + "name": "name", + "type": "variable", + "value": "namePort" + }, + { + "name": "dataQa", + "type": "variable", + "value": "namePort" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "5" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "value", + "type": "variable", + "value": "port" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "name", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_message_vpn_name_help\", message: \"The message VPN name cannot be changed once the service is created.\" })" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "name" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "name" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasAnyErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "anyErrorText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceLimitValue" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.newServiceLimit" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceLimitChange" + }, + { + "name": "value", + "type": "variable", + "value": "newServiceLimit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"serviceLimitValue\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environmentFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "environmentsStr.environmentList.filterPlaceholder" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFilterInput" + }, + { + "name": "width", + "type": "expression", + "value": "\"313px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.environmentName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "environmentName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvNameChange" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "isDuplicate || hasError || hasNameRequiredError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envNameTestId" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "firstNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "firstNameError ? myProfile.firstNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userFirstName" + }, + { + "name": "id", + "type": "string", + "value": "userFirstName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userFirstName" + }, + { + "name": "value", + "type": "variable", + "value": "firstNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFirstName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "lastNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "lastNameError ? myProfile.lastNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userLastName" + }, + { + "name": "id", + "type": "string", + "value": "userLastName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userLastName" + }, + { + "name": "value", + "type": "variable", + "value": "lastNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLastName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "oldPasswordReq" + }, + { + "name": "helperText", + "type": "expression", + "value": "oldPasswordReq ? myProfile.oldPasswordReq : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "id", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "value", + "type": "variable", + "value": "oldPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOldPasswordChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "newPasswordError.length > 0" + }, + { + "name": "helperText", + "type": "variable", + "value": "newPasswordError" + }, + { + "name": "name", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "id", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "confirmPasswordError" + }, + { + "name": "helperText", + "type": "expression", + "value": "confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning" + }, + { + "name": "name", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "id", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValueConfirm" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordConfirmChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.ugName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "userGroupName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGNameChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "hasNameError || isDuplicate || hasNoNameError || isDefaultError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupNameQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userGroupSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupSearchQa" + }, + { + "name": "value", + "type": "variable", + "value": "userGroupSearchValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSearchValue" + }, + { + "name": "placeholder", + "type": "expression", + "value": "userGroups.userGroupsHome.search" + }, + { + "name": "size", + "type": "number", + "value": "155" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tuserGroupSearchValue ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "width", + "type": "string", + "value": "20rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientId?.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientIdErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientId, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientId" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientId.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "hideSecretKey ? \"password\" : \"text\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientSecretKey" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientSecretKeyErrorMsg);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientSecretKey, value, errors } };\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientSecretKey" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientSecretKey.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.oidcDiscoveryUrl.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.discoveryUrlExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "oidcDiscoveryUrl" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.discoveryUrl" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.additionalScopes.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.additionalScopesExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "additionalScopes" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.indexOf(\" \") >= 0) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.noWhiteSpaceAllowed);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.additionalScopes, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalScopes" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.additionalScopes.value as string" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "name", + "type": "string", + "value": "preferredSubdomain" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setPreferredSubdomainText({ edited: true, text: e.value })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "value", + "type": "expression", + "value": "preferredSubdomain.text" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest" + }, + { + "name": "helperText", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "string", + "value": "preferredSubdomainTextField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "userGroupManagement[\n\t\t\t\t\t\t\t\t\tclaimIdChanged && claimId.trim().length < 1 ? \"claimIdError\" : \"identityProviderHelperText\"\n\t\t\t\t\t\t\t\t]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "claimIdChanged && claimId.trim().length < 1" + }, + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.identityProviderLabel" + }, + { + "name": "name", + "type": "string", + "value": "claimId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => claimIdChangeHandler(value)" + }, + { + "name": "value", + "type": "variable", + "value": "claimId" + }, + { + "name": "dataQa", + "type": "string", + "value": "roleId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editClaimValuesFieldId" + }, + { + "name": "name", + "type": "string", + "value": "editClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage :  " + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "name", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage : undefined" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "summaryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleSummaryError()" + }, + { + "name": "name", + "type": "string", + "value": "summaryfield" + }, + { + "name": "id", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "value", + "type": "variable", + "value": "summaryValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSummaryFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "errorIdError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorIdError()" + }, + { + "name": "name", + "type": "string", + "value": "errorField" + }, + { + "name": "id", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "value", + "type": "variable", + "value": "errorIdValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleErrorIdFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "350" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setLimitRequestNumber(+value)" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "limitRequestNumber" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.totalObjects" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "15rem" + }, + { + "name": "data-qa", + "type": "string", + "value": "limitRequestNumberInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setContactEmail(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "value", + "type": "variable", + "value": "contactEmail" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail)" + }, + { + "name": "helperText", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.overview.banner.errorHelperText}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setPassword(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "value", + "type": "variable", + "value": "password" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "width", + "type": "string", + "value": "45rem" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "inCorrectPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "password" + }, + { + "name": "helperText", + "type": "expression", + "value": "inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "name", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "title", + "type": "expression", + "value": "en.forgotPassword.resetPasswordFieldTitle" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.forgotPassword.email" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetPasswordEmailInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "string", + "value": "List of Emails" + }, + { + "name": "value", + "type": "variable", + "value": "handle" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setHandle(value)" + }, + { + "name": "onFocus", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))" + }, + { + "name": "onBlur", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({\n\t\t\t\t\t\t...previous,\n\t\t\t\t\t\t[name]: { hasErrors: false, helperText: handle ? \"\" : helperText.warning(name) }\n\t\t\t\t\t}))" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "helper.hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "helper.helperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "width", + "type": "string", + "value": "45%" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search..." + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSearch(event.value)" + }, + { + "name": "value", + "type": "variable", + "value": "search" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "tokenFormValues.name" + }, + { + "name": "aria-label", + "type": "string", + "value": "Name" + }, + { + "name": "data-lpignore", + "type": "string", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameError ?? undefined" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => dispatch(setTokenName(e.value))" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_displayName" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.name.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.type.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tracingType[tracingDestination?.tracingBackendType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.connectionType.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[tracingDestination.connectionType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.region.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.datadogSite[tracingDestination.datadogSite]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.endpoint.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.endpoint" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_apiKey" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.datadogApiKey.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.datadogApiKey" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [ + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\ticon: ,\n\t\t\t\t\t\tposition: \"end\"\n\t\t\t\t\t}" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "label", + "type": "expression", + "value": "customers.searchAggregationName" + }, + { + "name": "name", + "type": "string", + "value": "searchCustomerTextbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextSearch" + }, + { + "name": "title", + "type": "expression", + "value": "customers.searchAggregationName" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchCustomerTextbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "orgSearchBox" + }, + { + "name": "name", + "type": "string", + "value": "orgSearchBox" + }, + { + "name": "dataQa", + "type": "string", + "value": "orgSearchBox" + }, + { + "name": "width", + "type": "string", + "value": "400px" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleSearchField(event.value)" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t handleSearchField(EMPTY_STRING)}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "SolaceDatadogAgentVersion" + }, + { + "name": "placeholder", + "type": "string", + "value": "Enter to override Production Datadog Agent Version" + }, + { + "name": "helperText", + "type": "string", + "value": "Overrides solace-datadog-agent image version, default: latest" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setValue(\"SolaceDatadogAgentVersion\", e.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "SolaceDatadogAgentVersionTextBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "orgIdField" + }, + { + "name": "label", + "type": "string", + "value": "Organization Id" + }, + { + "name": "value", + "type": "variable", + "value": "orgId" + }, + { + "name": "dataQa", + "type": "string", + "value": "orgIdField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "disabled", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "apiKeyField" + }, + { + "name": "label", + "type": "string", + "value": "API Key" + }, + { + "name": "value", + "type": "expression", + "value": "ddOrgData?.apiKey ?? \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "apiKeyTextField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "orgNameField" + }, + { + "name": "label", + "type": "string", + "value": "Organization Display Name" + }, + { + "name": "value", + "type": "expression", + "value": "ddOrgData?.orgPublicId ?? \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "orgNameField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "disabled", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "appKeyField" + }, + { + "name": "label", + "type": "string", + "value": "APP Key" + }, + { + "name": "value", + "type": "expression", + "value": "ddOrgData?.appKey ?? \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "appKeyTextField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "ddSubOrgName" + }, + { + "name": "label", + "type": "string", + "value": "Datadog Sub-Org Name" + }, + { + "name": "value", + "type": "variable", + "value": "subOrgName" + }, + { + "name": "placeholder", + "type": "string", + "value": "Enter Datadog Sub-Org name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\thandleSubOrgNameInput(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "ddSubOrgNameTextBox" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "maxLength", + "type": "number", + "value": "32" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "subOrgNameInvalid" + }, + { + "name": "helperText", + "type": "expression", + "value": "subOrgNameInvalid\n\t\t\t\t\t\t\t\t\t\t? \"Datadog Sub-Org Name does not start with 'PI - ' or 'RMMS - ' , change the name and retry\"\n\t\t\t\t\t\t\t\t\t\t: \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "alertHandles" + }, + { + "name": "label", + "type": "string", + "value": "Alert Handles" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "resource.alertHandles ?? \"\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_alertHandlesTextBox`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "warningHandles" + }, + { + "name": "label", + "type": "string", + "value": "Warning Handles" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "resource.warningHandles ?? \"\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_warningHandlesTextBox`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "recoveryHandles" + }, + { + "name": "label", + "type": "string", + "value": "Recovery Handles" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "resource.recoveryHandles ?? \"\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_recoveryHandlesTextBox`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "inviteUsersInput" + }, + { + "name": "label", + "type": "string", + "value": "Provide a list of comma-separated solace.com email addresses" + }, + { + "name": "value", + "type": "variable", + "value": "adminUsersList" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetAdminUsersList(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "inviteUsersTextBox" + }, + { + "name": "width", + "type": "string", + "value": "60%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "disabled", + "type": "expression", + "value": "search === \"none\"" + }, + { + "name": "label", + "type": "string", + "value": "Search" + }, + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "width", + "type": "string", + "value": "375px" + }, + { + "name": "value", + "type": "expression", + "value": "filters[search]" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setFilters({ ...filters, [search]: event.value })" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "value" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setValue(event?.value)" + }, + { + "name": "placeholder", + "type": "expression", + "value": "operator === \"=in=\" || operator === \"=out=\" ? \"value1,value2,value3\" : \"Enter value\"" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "run-description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchFor" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchBoxChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-for-textbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "confirmationBox" + }, + { + "name": "value", + "type": "variable", + "value": "confirmationText" + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmationBox" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setConfirmationText(value)" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\tPlease type DELETE to confirm.\n\t\t\t\t\t\t\t" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "search" + }, + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search by event broker version" + }, + { + "name": "width", + "type": "string", + "value": "400px" + }, + { + "name": "value", + "type": "variable", + "value": "search" + }, + { + "name": "onChange", + "type": "function", + "value": "(input) => setSearch(input.value)" + }, + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\ticon: search ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: search ? handleClearSearch : undefined\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "quantityTextfieldId" + }, + { + "name": "name", + "type": "string", + "value": "quantityTextfield" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => validateQuantity(value)" + }, + { + "name": "value", + "type": "variable", + "value": "prodQuantityValue" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "string", + "value": "quantityTextfieldQa" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "productDrawdown.inputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "prodQuantityErrors[0]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "readOnly", + "type": "expression", + "value": "readOnlyProducts || isFieldReadOnly" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "size", + "type": "number", + "value": "5" + }, + { + "name": "name", + "type": "expression", + "value": "`countField${key}`" + }, + { + "name": "value", + "type": "expression", + "value": "prod.count !== 0 ? prod.count : undefined" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleCountSet(key, parseInt(e.value))" + }, + { + "name": "width", + "type": "expression", + "value": "!(readOnlyProducts || isFieldReadOnly) ? \"100%\" : \"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"orgDisplayName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "orgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0]" + }, + { + "name": "name", + "type": "string", + "value": "orgDisplayName" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.orgDisplayName" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"orgId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors).length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\t\t createBizOrganization.orgDetails.orgIdWarning" + }, + { + "name": "name", + "type": "string", + "value": "orgId" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.orgId" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!validationErrors" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accountName" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.accountName" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"accountName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.validationErrors.concat(orgDetails[\"accountName\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "orgDetails[\"accountName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0] || createBizOrganization.orgDetails.accountNameHelperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accountId" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.accountId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"accountId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "orgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\tcreateBizOrganization.orgDetails.accountIdHelperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "costCenter" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "value", + "type": "expression", + "value": "orgDetails[\"costCenter\"].value" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.costCenter" + }, + { + "name": "dataQa", + "type": "string", + "value": "costCenterInput" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors().length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "((orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors()[0]) || \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnlyProducts" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName" + }, + { + "name": "placeholder", + "type": "expression", + "value": "i18nStrings.filterByNameLabel" + }, + { + "name": "size", + "type": "number", + "value": "155" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\tnameFilter ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "currentEmailEntry.length > 0 && !isEmailValid ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.errorHelperText}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : emailList.length === 0 && !isSaveAllowed ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.requiredFieldError}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\tcreateBizOrganization.accountAdmins.emailsPlaceholder\n\t\t\t\t\t\t\t\t)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(currentEmailEntry.length > 0 && !isEmailValid) || (emailList.length === 0 && !isSaveAllowed)" + }, + { + "name": "name", + "type": "string", + "value": "accountAdminEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setCurrentEmailEntry(value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => { setIsEmailValid(isEmail(currentEmailEntry)) }" + }, + { + "name": "value", + "type": "variable", + "value": "currentEmailEntry" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "data-qa", + "type": "string", + "value": "accountAdminTextField" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "name", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "label", + "type": "string", + "value": "Search By Organization ID" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "value", + "type": "variable", + "value": "orgId" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => (!loadingOrgs ? setOrgId(event.value) : undefined)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "name", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "label", + "type": "string", + "value": "Search By Organization ID" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "value", + "type": "variable", + "value": "orgId" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => (!loadingJobs ? setOrgId(event.value) : undefined)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "datacenterId" + }, + { + "name": "name", + "type": "string", + "value": "datacenterId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "placeholder", + "type": "string", + "value": "Type a datacenter ID ..." + }, + { + "name": "name", + "type": "string", + "value": "sourceDatacenterId" + }, + { + "name": "dataQa", + "type": "string", + "value": "sourceDatacenterId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDatacenterId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => {\n\t\t\t\t\t\t\tsetSelectedDatacenterId(value);\n\t\t\t\t\t\t\treset();\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Image Tag" + }, + { + "name": "name", + "type": "string", + "value": "imageTag" + }, + { + "name": "title", + "type": "string", + "value": "Image Tag" + }, + { + "name": "value", + "type": "variable", + "value": "imageTag" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => dispatch(setImageTag(event.value.trim()))" + }, + { + "name": "dataQa", + "type": "string", + "value": "imageTag" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Helm Chart Version" + }, + { + "name": "name", + "type": "string", + "value": "helmChartVersion" + }, + { + "name": "title", + "type": "string", + "value": "Helm Chart Version" + }, + { + "name": "value", + "type": "variable", + "value": "helmChartVersion" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => dispatch(setHelmChartVersion(event.value.trim()))" + }, + { + "name": "dataQa", + "type": "string", + "value": "helmChartVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + } + ] + }, + { + "componentName": "SolaceStack", + "totalUsages": 157, + "usagesByMfe": { + "ep": 64, + "intg": 53, + "mc": 3, + "saas": 12, + "infra": 13, + "maas-ops-react": 12 + }, + "commonProps": [ + { + "name": "spacing", + "count": 72 + }, + { + "name": "direction", + "count": 49 + }, + { + "name": "padding", + "count": 17 + }, + { + "name": "alignItems", + "count": 15 + }, + { + "name": "justifyContent", + "count": 14 + }, + { + "name": "width", + "count": 10 + }, + { + "name": "height", + "count": 7 + }, + { + "name": "data-qa", + "count": 6 + }, + { + "name": "bgcolor", + "count": 6 + }, + { + "name": "marginTop", + "count": 4 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "width", + "type": "number", + "value": "600" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.25" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(3)" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"360px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "mb", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "my", + "type": "number", + "value": "2.5" + }, + { + "name": "width", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "1" + }, + { + "name": "marginBottom", + "type": "number", + "value": "1" + }, + { + "name": "data-qa", + "type": "string", + "value": "manageCredentialsEditor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "string", + "value": "wrap" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 80px)`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "expression", + "value": "\"wrap\"" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "pr", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "connectorsSidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "6" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "ml", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "mt", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "3" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "height", + "type": "expression", + "value": "allItems.length !== 0 ? `calc(100vh + 80px)` : \"100%\"" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "38rem" + }, + { + "name": "height", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ minHeight: \"45vh\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "marginTop", + "type": "variable", + "value": "marginTop" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2, 2, 2, 2)" + }, + { + "name": "marginX", + "type": "expression", + "value": "theme.spacing(2)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingLeft: 1 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "paddingBottom", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"25%\"" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "alignItems", + "type": "string", + "value": "" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.secondary.w10" + }, + { + "name": "flex", + "type": "expression", + "value": "'1 1 0px'" + }, + { + "name": "border", + "type": "number", + "value": "1" + }, + { + "name": "borderRadius", + "type": "number", + "value": "1" + }, + { + "name": "borderColor", + "type": "expression", + "value": "theme.palette.ux.secondary.w40" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "clusters-summary" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "margin", + "type": "expression", + "value": "theme.spacing(3, 6)" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "border", + "type": "number", + "value": "1" + }, + { + "name": "borderRadius", + "type": "number", + "value": "1" + }, + { + "name": "borderColor", + "type": "expression", + "value": "theme.palette.ux.secondary.w70" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "'flex-end'" + }, + { + "name": "marginTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-status-tab" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-system-components-tab" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-status-tab" + }, + { + "name": "style", + "type": "object", + "value": "{ backgroundColor: theme.palette.ux.background.w10, border: `1px solid ${theme.palette.ux.secondary.w20}`, borderRadius: theme.shape.borderRadius }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "my", + "type": "number", + "value": "1.5" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "data-testid", + "type": "string", + "value": "filter-by" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "gap", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + } + ] + }, + { + "componentName": "SolaceSelect", + "totalUsages": 124, + "usagesByMfe": { + "ep": 72, + "intg": 10, + "mc": 12, + "saas": 10, + "infra": 2, + "maas-ops-react": 18 + }, + "commonProps": [ + { + "name": "name", + "count": 124 + }, + { + "name": "value", + "count": 122 + }, + { + "name": "onChange", + "count": 120 + }, + { + "name": "dataQa", + "count": 95 + }, + { + "name": "label", + "count": 70 + }, + { + "name": "id", + "count": 62 + }, + { + "name": "hasErrors", + "count": 45 + }, + { + "name": "helperText", + "count": 44 + }, + { + "name": "width", + "count": 37 + }, + { + "name": "required", + "count": 36 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_TYPE" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.brokerType" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode !== \"create\"" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "name", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => undefined" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "content.type" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isJaasConfigPassword || readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.authentication.auth.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][saslscram][saslMechanism]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][saslscram][saslMechanism]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.saslMechanism" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.transport" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleTransportChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.type" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Environment`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onEnvironmantChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.environmentError || !!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.environmentError ?? validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.environment" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.mem" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersion[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Application version to add`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onApplicationVersionChange" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationVersion?.id" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.applicationDomain" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomainId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.applicationDomainError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.applicationDomainError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProduct" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedApplicationDomainId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProductVersion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductVersionSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductVersionId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductVersionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductVersionError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => RESOURCE_LABEL_BY_ROLE[value]" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "name", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "version.id" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"valueType\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-type-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"scope\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-scope-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isDomainManager" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg && !isDomainManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${entityName}[versionState]`" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "versionStateId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "stateSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumerationVersion" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersionName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumVersionId" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnumOption || getEnumVersions.isLoading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => valueToMenuItemMap.get(value) || \"\"" + }, + { + "name": "width", + "type": "string", + "value": "35%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationDomain?.value" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${entityTypeToLabel(entityType)} Version`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEntityVersionId" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityVersionChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "versionIncrementStrategySelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionIncrementStrategy" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"versionIncrementStrategySelect\"" + }, + { + "name": "label", + "type": "string", + "value": "Version Incrementing" + }, + { + "name": "width", + "type": "expression", + "value": "width ?? \"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "name", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Graph Type\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Agent Mode" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => EMA_MODES_LABELS[value]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getRuntimeAgentModeErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getRuntimeAgentModeErrorMessage" + }, + { + "name": "name", + "type": "string", + "value": "agent mode" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDiscoveryScanModeChange" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!agentId" + }, + { + "name": "width", + "type": "string", + "value": "620px" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.runtimeAgentMode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceType" + }, + { + "name": "width", + "type": "string", + "value": "30%" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLayoutTypeChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"90px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "levelDepthString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLevelDepthChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"55px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[environmentSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Environment\"" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[eventMeshSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Modeled Event Mesh\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEnvironmentId === \"\" || eventMeshSelectOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[messagingServiceSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEventMeshId === \"\" || messagingServiceOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventFlowFilterChange" + }, + { + "name": "id", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "name", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "value", + "type": "variable", + "value": "eventFlowOption" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || graphNodeExceeded" + }, + { + "name": "width", + "type": "string", + "value": "280px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "value", + "type": "expression", + "value": "audits[0].id" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "name", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectMessagingServiceChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "350px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleSecondVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSecondVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "async (e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\ttrigger(`${configurationName}-postRequestTarget`);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!getValues(`${configurationName}-postRequestTarget`)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-requestTargetEvaluation`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderType" + }, + { + "name": "name", + "type": "expression", + "value": "`${configurationName}-request`" + }, + { + "name": "value", + "type": "variable", + "value": "requestHeaderType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setRequestHeaderType(e.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\thandleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointConfigurationType-selector" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "context.value" + }, + { + "name": "name", + "type": "string", + "value": "contextSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "contextSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleContextOptionChange" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!isDisabled" + }, + { + "name": "width", + "type": "string", + "value": "400px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDelimiterChange" + }, + { + "name": "value", + "type": "variable", + "value": "delimiter" + }, + { + "name": "disabled", + "type": "variable", + "value": "hasFetchError" + }, + { + "name": "width", + "type": "string", + "value": "150px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"AsyncAPI Version\"" + }, + { + "name": "name", + "type": "string", + "value": "AsyncAPI Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetVersion(e.value as EPSupportedAsyncApiVersion);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Document Extensions\"" + }, + { + "name": "name", + "type": "string", + "value": "documentExtensions" + }, + { + "name": "value", + "type": "variable", + "value": "extension" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetExtension(e.value as SupportedAsyncApiExtensionOptions);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\tconst match = documentExtensionOptions.find((props) => props.value === value);\n\n\t\t\t\treturn match ? match.name : \"\";\n\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredPlan : null" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.plan" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t// borkerType is used in the parent, pass the value back.\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApi[brokerType]" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`queueTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[approvalType]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || brokerTypes[0].value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => brokerTypes.find((type) => type.value === value)?.name || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetSelectedSchemaType(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isNew || consumerTypeMenuItems?.length === 1" + }, + { + "name": "disabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\t\t\t// clear any configuration when changing consumer type\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configuration`, undefined);\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configurations`, []);\n\n\t\t\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Modeled Event Mesh`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => updateBrokerType(e.value, index)" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\thandleBrokerTypeChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[brokerType]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[requiresApproval]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeSchemaVersion" + }, + { + "name": "value", + "type": "expression", + "value": "viewedSchemaVersion?.id" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Schema Type\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "\"Access Approval\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[accessApproval]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEdit || !onBrokerTypeChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedMem" + }, + { + "name": "value", + "type": "expression", + "value": "memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tconst memId = e.value === designedEventFlowOption.value ? \"\" : e.value;\n\n\t\t\t\t\t\tsetSelectedMemId(memId);\n\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionDetailMemFilter`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.consumerType" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\ttrigger(\"subscriptions\"); // trigger validation\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "dataQa", + "type": "string", + "value": "consumerSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "name", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials.configurationTypeId" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeConfigurationType" + }, + { + "name": "value", + "type": "expression", + "value": "configuration.typeId" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "authenticationType" + }, + { + "name": "id", + "type": "string", + "value": "authenticationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "name", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: authType }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthenticationType: authType as AuthenticationType\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authenticationType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"solaceDestinationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destinationType }) =>\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestinationType: destinationType\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destinationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEqual(solaceDirection, ConnectorDirection.Source) ? true : false" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceDestinationType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\tsetConstantField({\n\t\t\t\t\t\t\t...constantField,\n\t\t\t\t\t\t\tdataType: dataType,\n\t\t\t\t\t\t\tconstantValue: getDefaultConstantValue(dataType)\n\t\t\t\t\t\t});\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, dataType: dataType });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetHeaderDataType(dataType);\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "headerDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantDataType(dataType);\n\t\t\t\t\t\tsetDefaultConstantValue(dataType);\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "constantDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "expression", + "value": "props.value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "title", + "type": "expression", + "value": "props.title" + }, + { + "name": "id", + "type": "expression", + "value": "props.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFormatTypeField" + }, + { + "name": "id", + "type": "string", + "value": "sslKeyStoreFormatType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStoreFormat" + }, + { + "name": "name", + "type": "expression", + "value": "\"sslKeyStoreFormat\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStoreFormat }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "clientCertValues.sslKeyStoreFormat" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelect.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "view" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_view_by\", message: \"View by\" })" + }, + { + "name": "value", + "type": "variable", + "value": "view" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeView" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"connect-view-by\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "protocol" + }, + { + "name": "name", + "type": "string", + "value": "protocol" + }, + { + "name": "dataQa", + "type": "string", + "value": "protocol" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_protocol\", message: \"Protocol\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "protocolIndex.toString()" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hosturi" + }, + { + "name": "name", + "type": "string", + "value": "hosturi" + }, + { + "name": "dataQa", + "type": "string", + "value": "hosturi" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_hosturi\", message: \"Host URI\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "hostUri" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHostUriChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "data-qa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "selectedTracingProfileId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!selectedTracingProfileId && isSubmitted" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectedTracingProfileId || !isSubmitted ? \"\" : t({ id: \"id_dt_select_tracing_dest\", message: \"Required. Select a tracing destination.\" })" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedTracingProfileId(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloud" + }, + { + "name": "name", + "type": "string", + "value": "cloud" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloud" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "cloudDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "20rem" + }, + { + "name": "id", + "type": "string", + "value": "userGroupDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupDropdownQa" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectedUserGroupRole" + }, + { + "name": "title", + "type": "string", + "value": "User Group Select" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroupRole" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.timeRange" + }, + { + "name": "name", + "type": "string", + "value": "timeRange" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Time Range" + }, + { + "name": "value", + "type": "expression", + "value": "filters.timeRange.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.status" + }, + { + "name": "name", + "type": "string", + "value": "status" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Status" + }, + { + "name": "value", + "type": "expression", + "value": "filters.status.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.category" + }, + { + "name": "name", + "type": "string", + "value": "category" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Category" + }, + { + "name": "value", + "type": "expression", + "value": "filters.category.value" + }, + { + "name": "id", + "type": "string", + "value": "categoryFilter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "disabled", + "type": "expression", + "value": "!filters.category.value" + }, + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.event" + }, + { + "name": "name", + "type": "string", + "value": "event" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Event" + }, + { + "name": "value", + "type": "expression", + "value": "filters.event.value" + }, + { + "name": "helperText", + "type": "expression", + "value": "!filters.category.value ? en.auditLogs.selectCategory : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventFilter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "environments.moveDialogLabels.destinationEnvironment" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "270px" + }, + { + "name": "data-qa", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "name", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "value", + "type": "variable", + "value": "searchByOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchByOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "name", + "type": "string", + "value": "eolStatus" + }, + { + "name": "label", + "type": "string", + "value": "End of Life Status" + }, + { + "name": "dataQa", + "type": "string", + "value": "eolStatusSelect" + }, + { + "name": "value", + "type": "variable", + "value": "endOfLifeStatus" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setEndOfLifeStatus(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "270px" + }, + { + "name": "data-qa", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "name", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "value", + "type": "variable", + "value": "searchByOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchByOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "t.profile" + }, + { + "name": "name", + "type": "expression", + "value": "`artifactResources_${t.profile}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "`Version in Datadog Sub-Org (${t.profile}):`" + }, + { + "name": "value", + "type": "expression", + "value": "t.version || \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "artifactResource" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Latest Version:" + }, + { + "name": "value", + "type": "string", + "value": "artifactVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "value", + "type": "variable", + "value": "search" + }, + { + "name": "label", + "type": "string", + "value": "Filter By" + }, + { + "name": "name", + "type": "string", + "value": "filter by" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSearch(e.value as FilterKey)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "pageSize.toString()" + }, + { + "name": "label", + "type": "string", + "value": "Page Size" + }, + { + "name": "name", + "type": "string", + "value": "page size" + }, + { + "name": "width", + "type": "string", + "value": "125px" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "attribute" + }, + { + "name": "value", + "type": "variable", + "value": "attribute" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setAttribute(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "comparison" + }, + { + "name": "value", + "type": "variable", + "value": "operator" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setOperator(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"40vh\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"30vh\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "value", + "type": "expression", + "value": "value ?? \"preview\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "createBizOrganization.products.rateSet" + }, + { + "name": "id", + "type": "string", + "value": "prodRateSet" + }, + { + "name": "name", + "type": "string", + "value": "prodRateSet" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProdRateSetChange" + }, + { + "name": "value", + "type": "expression", + "value": "rateSetValues ? prodRateSetValue : \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "prodRateSetDropdownQa" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "createBizOrganization.products.productConsumptionType" + }, + { + "name": "id", + "type": "string", + "value": "productConsumptionType" + }, + { + "name": "name", + "type": "string", + "value": "productConsumptionType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProdConsumptionChange" + }, + { + "name": "value", + "type": "variable", + "value": "productType" + }, + { + "name": "width", + "type": "string", + "value": "450px" + }, + { + "name": "dataQa", + "type": "string", + "value": "productConsumptionDropdownQa" + }, + { + "name": "readOnly", + "type": "expression", + "value": "productDrawdown.readonly || productSubscriptions.readonly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "organizationType" + }, + { + "name": "id", + "type": "string", + "value": "organizationType" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.accountType" + }, + { + "name": "dataQa", + "type": "string", + "value": "accountTypeDropdown" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"organizationType\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t\t )[0]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Page Size" + }, + { + "name": "name", + "type": "string", + "value": "pageSize" + }, + { + "name": "width", + "type": "string", + "value": "200px" + }, + { + "name": "value", + "type": "expression", + "value": "pageSize.toString()" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Page Size" + }, + { + "name": "name", + "type": "string", + "value": "pageSize" + }, + { + "name": "width", + "type": "string", + "value": "200px" + }, + { + "name": "value", + "type": "expression", + "value": "pageSize.toString()" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "availableVersions" + }, + { + "name": "id", + "type": "string", + "value": "availableVersions" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "title", + "type": "string", + "value": "Available Versions" + }, + { + "name": "dataQa", + "type": "string", + "value": "availableVersions" + } + ] + } + ] + }, + { + "componentName": "SolaceCheckBox", + "totalUsages": 99, + "usagesByMfe": { + "ep": 45, + "intg": 1, + "mc": 9, + "saas": 27, + "maas-ops-react": 17 + }, + "commonProps": [ + { + "name": "name", + "count": 98 + }, + { + "name": "checked", + "count": 94 + }, + { + "name": "onChange", + "count": 86 + }, + { + "name": "dataQa", + "count": 81 + }, + { + "name": "label", + "count": 72 + }, + { + "name": "id", + "count": 30 + }, + { + "name": "readOnly", + "count": 22 + }, + { + "name": "disabled", + "count": 11 + }, + { + "name": "hasErrors", + "count": 11 + }, + { + "name": "helperText", + "count": 11 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][tls]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "isTLSChecked" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "readOnly || loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "checkedItems[option.value]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "disabled", + "type": "expression", + "value": "optionDisabled(option, selectedMessagingService)" + }, + { + "name": "label", + "type": "expression", + "value": "option.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetSubscribeToEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "subscribeToEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isSubscribeReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationSubscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "publishEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetPublishEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "publishEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isPublishReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationPublishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"keepParent\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"keepEntityCheckbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleKeepParentChange(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{ label: `Creates a new version of the ${entityType}`, light: true }" + }, + { + "name": "checked", + "type": "variable", + "value": "keepParent" + }, + { + "name": "label", + "type": "expression", + "value": "`I want to keep the ${entityType}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "checkboxName ?? \"customhookCheckbox\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationDomain" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationDomain" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.state" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.state" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.state" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.shared" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.shared" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.shared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.brokerType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.brokerType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.brokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.eventMesh" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.eventMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "checked", + "type": "expression", + "value": "currentFilters.includes(filterType)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "renderCheckboxLabel(customAttributes[0].name)" + }, + { + "name": "checked", + "type": "expression", + "value": "!!selectedFilters.find((filter) => filter.type === filterType)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "broker" + }, + { + "name": "label", + "type": "string", + "value": "Broker" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!brokerEnabled && !toDisableBrokerScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover consumer groups and topics.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableBrokerScan()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "confluentSchemaRegistry" + }, + { + "name": "label", + "type": "string", + "value": "Confluent Schema Registry" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSchemaRegistryOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover schemas from Confluent.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableSchemaRegistryScan()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Show only the modeled event meshes I can access" + }, + { + "name": "name", + "type": "string", + "value": "Filter By Access" + }, + { + "name": "checked", + "type": "variable", + "value": "filterByAccess" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggleFilterByAccessOnChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dontShowConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Don't show this message again.`" + }, + { + "name": "checked", + "type": "expression", + "value": "!showDialogAgain" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dontShowConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowDialogAgain(!event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"requiredConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Require confirmation\"" + }, + { + "name": "checked", + "type": "variable", + "value": "showConfirmDialogBox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"requiredConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleRequireConfirmCheckbox(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"hideAuditResults\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`" + }, + { + "name": "checked", + "type": "expression", + "value": "showHiddenAudits !== \"false\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"hideAuditResults-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleHideTagCheckbox(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"selectAllDomains\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"selectAllDomainsCheckbox\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAllDomainsCheck" + }, + { + "name": "checked", + "type": "variable", + "value": "isChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "isChecked && selectedDomainIds.length !== items.length" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumeration[shared]" + }, + { + "name": "label", + "type": "string", + "value": "Allow Enumeration to be shared across application domains" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[shared]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNamingStrategyChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetOnlyShowEventsWithoutSubscription(e.value);\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "label", + "type": "string", + "value": "Show events without a consumer subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetTopicDomainEnforcement(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!value && !hasValidTopicDomain" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[uniqueTopicAddressEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"uniqueTopicAddressEnforcementEnabled\"" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[topicDomainEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.topicDomainEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[nonDraftDescriptionsEditable]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.nonDraftDescriptionsEditable" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "disabled", + "type": "variable", + "value": "sharedSchema" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\thandleSharedChanged(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "publishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "filter.value" + }, + { + "name": "name", + "type": "expression", + "value": "filter.name" + }, + { + "name": "checked", + "type": "expression", + "value": "filtersMap[application?.id]?.[filter.value]" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`environment-filters-${filter.value}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"doNotShowAgain\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Do not show this warning again\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => props.onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "checked", + "type": "expression", + "value": "props.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_manager\", message: \"Rotate Mission Control Manager permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_manager" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"manager\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleManagerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_manager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_editor\", message: \"Rotate Mission Control Editor permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_editor" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"admin\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEditorChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_editor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_viewer\", message: \"Rotate Mission Control Viewer permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_viewer" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"viewer\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleViewerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_viewer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showMyServices" + }, + { + "name": "name", + "type": "string", + "value": "showMyServices" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-show-mine" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_only_my_services\", message: \"Only show my services\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "userOnly" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetUserOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showDiffs" + }, + { + "name": "name", + "type": "string", + "value": "showDiffs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_differences\", message: \"Show only differences\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "showDiffs" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowDiffs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "name", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mate_link_label\", message: \"Enable mate-link encryption\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: t({ id: \"id_mate_link_text\", message: \"This will encrypt the communication between the primary and backup brokers in a HA setup.\" }),\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "name", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_clone_cert_auth\", message: \"Duplicate all Client and Domain Certificate Authorities\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: This will copy all certificates existing on the source event broker service to the new event broker service.,\n\t\t\t\t\tlight: true\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "name", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "dataQa", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: \"id_port_label\", message: `Enable ${meta.label}, use port:` })}\n\t\t\t\t\t\t" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "checked", + "type": "expression", + "value": "!disabled" + }, + { + "name": "readOnly", + "type": "expression", + "value": "checkboxDisabled || !isPortDisablingEnabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolToggle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmDeleteEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleConfirmDelete" + }, + { + "name": "checked", + "type": "variable", + "value": "confirmDelete" + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDeleting" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmASEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "checked", + "type": "variable", + "value": "isServiceCreationAllowed" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "disabled", + "type": "expression", + "value": "isError || dialogState.updating" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "templateType" + }, + { + "name": "name", + "type": "variable", + "value": "templateType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${templateType}Checkbox`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{environments.configurationTemplates[templateType].label}\n\t\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "variable", + "value": "updateTemplateTypeEnforcement" + }, + { + "name": "checked", + "type": "expression", + "value": "templateStatus.isEnforced" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "name", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "name", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"marketing\"]?.email : false" + }, + { + "name": "id", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "name", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"marketing\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.jitProvisionMainText}\n\t\t\t\t\t\t{userGroupManagement.jitProvisionSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsJitProvisioningChecked(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "isJitProvisioningChecked" + }, + { + "name": "title", + "type": "string", + "value": "Enable Just-in-Time provisioning" + }, + { + "name": "dataQa", + "type": "string", + "value": "jitProvisionCheckboxId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "id", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.customizeGroupMainText}\n\t\t\t\t\t\t{userGroupManagement.customizeGroupSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "checked", + "type": "variable", + "value": "isCustomizeUserGroupChecked" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => customizeDefaultUserGroupCheck(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{isCustomizeUserGroupChecked ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titemMappingCallback={(option) => option}\n\t\t\t\t\t\t\t\t\toptionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}\n\t\t\t\t\t\t\t\t\tonChange={handleUserGroupSelectChange}\n\t\t\t\t\t\t\t\t\tfetchOptionsCallback={handleFetchProtocolOptionsCallback}\n\t\t\t\t\t\t\t\t\tisOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}\n\t\t\t\t\t\t\t\t\twidth=\"30rem\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "title", + "type": "string", + "value": "Customize Default UserGroup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventMesh" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventMeshFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventPortal" + }, + { + "name": "name", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventPortalFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventPortal" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onPermissionCheckboxChange(permission.id)" + }, + { + "name": "name", + "type": "expression", + "value": "permission.id" + }, + { + "name": "checked", + "type": "expression", + "value": "!!isPermissionSelected[permission.id]" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "dataQa", + "type": "expression", + "value": "permission.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "hideUnusedLimitsRows" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setHideUnusedLimitsRows((state) => !state)" + }, + { + "name": "name", + "type": "expression", + "value": "customers.orgLimitsCard.hideUnusedLimit" + }, + { + "name": "title", + "type": "expression", + "value": "customers.orgLimitsCard.hideUnusedLimit" + }, + { + "name": "data-qa", + "type": "string", + "value": "hideUnusedLimitsCheckboxQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "() => field.onChange(!field.value)" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Datadog Monitoring Enabled Checkbox" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Datadog Monitoring Enabled" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Agent (Enabled/Disabled) when creating new services\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoringEnabledCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "() => field.onChange(!field.value)" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Datadog Monitoring Proxy Enabled Checkbox" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Datadog Monitoring Proxy Enabled" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Proxy server (Enabled/Disabled) for services\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoringProxyEnabledCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tsetValue(\"PullDatadogAgentImage\", e.value);\n\t\t\t\t\t\t\t\t\tfield.onChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Pull Datadog Agent Image" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Pull Datadog Agent Image" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tlabel: \"Forces docker to pull latest datadog-agent image\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "PullDatadogAgentImageCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\trow[propertyName] = !row[propertyName];\n\t\t\t\t}" + }, + { + "name": "name", + "type": "variable", + "value": "propertyName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "indeterminate", + "type": "variable", + "value": "indeterminate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tfield.onChange(!field.value);\n\t\t\t\t\t\t\t\t\t\t// update button should only show if there is a change in rmms status\n\t\t\t\t\t\t\t\t\t\tsetShowRMMSUpdateButton(\n\t\t\t\t\t\t\t\t\t\t\tddOrgData?.apiKey !== undefined && getValues(\"rmmsManaged\") !== monitoringOrgData?.isRMMS\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Managed by RMMS Checkbox" + }, + { + "name": "largeLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Managed by RMMS" + }, + { + "name": "dataQa", + "type": "string", + "value": "rmmsManaged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "Automated Upgrades" + }, + { + "name": "label", + "type": "string", + "value": "Automated Upgrades" + }, + { + "name": "checked", + "type": "variable", + "value": "autoChecked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "Customer Upgrades" + }, + { + "name": "label", + "type": "string", + "value": "Customer Upgrades" + }, + { + "name": "checked", + "type": "variable", + "value": "customerChecked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "hideCompletedRuns" + }, + { + "name": "checked", + "type": "variable", + "value": "hideCompletedRuns" + }, + { + "name": "dataQa", + "type": "string", + "value": "hide-completed-runs" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleToggleHideCompletedRuns()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "all" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.all" + }, + { + "name": "checked", + "type": "expression", + "value": "infra && orgs && services && users" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-all-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "infrastructure" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.infra" + }, + { + "name": "checked", + "type": "variable", + "value": "infra" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-infra-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "organization" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.orgs" + }, + { + "name": "checked", + "type": "variable", + "value": "orgs" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-orgs-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "service" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.services" + }, + { + "name": "checked", + "type": "variable", + "value": "services" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-services-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "user" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.users" + }, + { + "name": "checked", + "type": "variable", + "value": "users" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-users-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "useGlobalSearch" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.useGlobalSearch" + }, + { + "name": "checked", + "type": "variable", + "value": "globalSearchEnabled" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonGlobalSearchChange(!globalSearchEnabled);\n\t\t\t\t\t\t\t\tsetGlobalSearchEnabled(!globalSearchEnabled);\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-global-search-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requestCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "createBizOrganization.requests.checkBoxLabel" + }, + { + "name": "name", + "type": "string", + "value": "requestCheckbox" + }, + { + "name": "data-qa", + "type": "string", + "value": "requestCheckboxQa" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setIsAdvancedInsightsChecked(value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: `${createBizOrganization.requests.productCode}`,\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.requests.checkBoxTitle" + }, + { + "name": "disabled", + "type": "variable", + "value": "isFieldReadOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "isAdvancedInsightSelected ? true : false" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "{createBizOrganization.requests.checkBoxLabel}" + }, + { + "name": "name", + "type": "string", + "value": "advInsights" + }, + { + "name": "title", + "type": "string", + "value": "Advanced Insights Checkbox" + } + ] + } + ] + }, + { + "componentName": "SolaceAccordion", + "totalUsages": 86, + "usagesByMfe": { + "ep": 52, + "intg": 4, + "mc": 12, + "saas": 7, + "maas-ops-react": 11 + }, + "commonProps": [ + { + "name": "summary", + "count": 86 + }, + { + "name": "details", + "count": 86 + }, + { + "name": "expanded", + "count": 86 + }, + { + "name": "onChange", + "count": 86 + }, + { + "name": "dataQa", + "count": 52 + }, + { + "name": "border", + "count": 39 + }, + { + "name": "key", + "count": 27 + }, + { + "name": "backgroundColor", + "count": 11 + }, + { + "name": "hover", + "count": 8 + }, + { + "name": "indicatorVariant", + "count": 6 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "getEntityDetailsTitle" + }, + { + "name": "details", + "type": "variable", + "value": "getEntityDetailsPanel" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}DetailsAccordion`" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.noChange, null, null)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "applicationsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Application Domains\", appDomains.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(appDomains)" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "memsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMEMClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Modeled Event Meshes\", mems.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(mems)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "environmentsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Environments\", environments.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(environments)" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEventDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "entityType ? `customAttributes-${entityType}-accordion` : null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{`Custom Attributes (${count})`}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t{errorMsg && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{errorMsg}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{!errorMsg && <>{customAttributeValueList}}\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Appearance" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{formMethods && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityAppearance" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails(associatedEnvironmentList)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `eap-${eventApiProductVersion.id}`" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.environmentId" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `messagingService-${item.environmentId}`" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? \"error\" : undefined" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{title}\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t handleDownloadFile(evt, details, emaType, downloadButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleCopyFile(evt, details, emaType, copyButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{details}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onToggle()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tConnection File Details\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t handleDownloadFile(evt)}>\n\t\t\t\t\t\t\t\t\tDownload\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tCopy\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{confFileContent}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChange(\"confFile\")" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionFileDownloadDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "EmaPreflightCheckListAccordion" + }, + { + "name": "details", + "type": "expression", + "value": "renderSummary(emaMode)" + }, + { + "name": "expanded", + "type": "variable", + "value": "isOpen" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggle" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSideInfoBlurbSummary()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion]" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t onTitleLinkClick(messagingService)}\n\t\t\t\t\t\t\t\tdataQa=\"messagingService[Accordion][Title]\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{isCloudBased && } {!messagingService?.eventMeshId && }\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{brokerTypeLabel[messagingService.messagingServiceType] ?? \"Solace\"}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t{!messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t removeMessagingService(messagingService)} title=\"Remove\" dataQa=\"removeMessagingService\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\tConnected Modeled Event Mesh\n\t\t\t\t\t\t{eventMesh ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{eventMesh?.name}{\" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\tNone\n\t\t\t\t\t\t)}\n\t\t\t\t\t
" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "hasIndicator ? \"info\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "demoAccordionList" + }, + { + "name": "expanded", + "type": "expression", + "value": "serviceAccordionControl[item.id]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleServiceAccordionControl(item.id)" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail(item)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "summary", + "type": "expression", + "value": "renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)" + }, + { + "name": "details", + "type": "expression", + "value": "renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRuntimeAgentExpanded" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "dataQa" + }, + { + "name": "summary", + "type": "variable", + "value": "summaryElement" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"importPreviewAccordion\"" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "isSelected ? \"success\" : null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "summary" + }, + { + "name": "summary", + "type": "jsx", + "value": "{summary}" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEnumVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEnumDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiProductVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiProductDetailsTitle(selectedEventApiProduct)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogSchemaVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getSchemaDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogApplicationVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getApplicationDetailsTitle()" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiDetailsTitle(selectedEventApi)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionClick" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${configurationName}-${type}-${index}-requestHeader`" + }, + { + "name": "summary", + "type": "expression", + "value": "getRequestHeaderSummary(header, type, index)" + }, + { + "name": "details", + "type": "expression", + "value": "getRequestHeaderDetails(header, type, index)" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedHeaders[expandKey]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\tsetExpandedHeaders((prev) => {\n\t\t\t\t\t\tprev[expandKey] = !prev[expandKey];\n\n\t\t\t\t\t\treturn { ...prev };\n\t\t\t\t\t});\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "variable", + "value": "queueBindingDetails" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "expression", + "value": "getQueueBindingDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`restDeliveryPointAccordion`" + }, + { + "name": "summary", + "type": "variable", + "value": "accordionSummary" + }, + { + "name": "details", + "type": "variable", + "value": "restConsumers" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getDomainAccordionSummary(domain)" + }, + { + "name": "details", + "type": "expression", + "value": "getDomainAccordionDetails(domain)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainAccordion-${domain.id}`" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedDomainMap[domain.id] === true" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onAccordionChange(domain.id, expandedDomainMap)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"importDomainValidationAccordion\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "importDomainValidationAccordion" + }, + { + "name": "summary", + "type": "expression", + "value": "customAttributeValidations?.validationMessage" + }, + { + "name": "details", + "type": "expression", + "value": "customAttributeValidations?.validations" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`newNodeAccordion-${brokerType.value}`" + }, + { + "name": "key", + "type": "expression", + "value": "brokerType.value" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "expression", + "value": "dragNDropPanelExpansions[brokerType.value]" + }, + { + "name": "onChange", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tsetDragNDropPanelExpansions((prev) => {\n\t\t\t\t\t\t\tconst newState = { ...prev };\n\n\t\t\t\t\t\t\tnewState[brokerType.value] = !prev[brokerType.value];\n\n\t\t\t\t\t\t\treturn newState;\n\t\t\t\t\t\t})" + }, + { + "name": "summary", + "type": "jsx", + "value": "{`${brokerType.label} Objects`}" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].application);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Application\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].event);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tShared Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Conflicting Objects" + }, + { + "name": "details", + "type": "variable", + "value": "conflictingObjects" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpandClick()" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${consumer.name}-consumerAccordion`" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "getAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "`${topicDomain.length} affected Topic Domains`" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{topicDomain.map((topicDomainEntry) => (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{duplicate && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tUsed in\n\t\t\t\t\t\t\t\t\t\t\t{topicDomainEntry?.applicationDomains?.map(({ name }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t\t\t\t{renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\tTips and Tricks for Topic Addresses\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandTopicAddressHelp" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpandTopicAddressHelp(!expandTopicAddressHelp)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordianClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "request.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-events`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Published Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-subscriptions`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Subscribed Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages.applicationDomain.label}\n\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(applications)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "connectorTypeDetails?.name ?? \"\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderVendorConfigurationDetails()}" + }, + { + "name": "expanded", + "type": "variable", + "value": "showSourceDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowSourceDetails(!showSourceDetails)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "\"Solace\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.eventBrokerService}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{(serviceDetails?.name && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{serviceDetails.name}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)) || {\"-\"}}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.bindingDestination}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{getConnectorSummaryValue(solaceDestination)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "showTargetDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowTargetDetails(!showTargetDetails)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tvalue={clientCertValues.sslKeyStoreFormat}\n\t\t\t\t\t\t\treadOnly={readOnly}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sslKeyStoreFormatTypes.map((option, index) => {\n\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{option}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslKeyStorePassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslPrivateKeyPassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonBlur={() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\thasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}\n\t\t\t\t\t\t\thelperText={\n\t\t\t\t\t\t\t\t!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_spool_resource_calc\", message: \"Expanded Spool Size Billing\" })" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCalculations" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCalculations" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[id]" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-advanced-settings" + }, + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_advanced_settings\", message: \"Advanced Settings\" })" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "advancedSettings" + }, + { + "name": "onChange", + "type": "function", + "value": "(_, expanded) => setAdvancedSettings(expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${endpoint.id}Accordion`" + }, + { + "name": "key", + "type": "expression", + "value": "endpoint.id" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{endpoint.name}\n\t\t\t\t\t\t\t\t\t\t\t\t{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{i18n._(accessTypes[endpoint.accessType])}\n\t\t\t\t\t\t\t\t\t\t{endpoint.description}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa=\"actions\"\n\t\t\t\t\t\t\t\t\t\t\t\tid={`public_actions`}\n\t\t\t\t\t\t\t\t\t\t\t\titems={[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tProtocols\n\t\t\t\t\t\t\t\t\t\t\t\tStatus\n\t\t\t\t\t\t\t\t\t\t\t\tPort\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{protocols.map((port) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst value = ports.get(port.protocol);\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{port.label}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? \"Enabled\" : \"Disabled\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? value.port : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandPublicEndpoint[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_used_by_n_services\", message: plural(cluster?.serviceNames.length ?? 0, { one: \"Used by # service\", other: \"Used by # services\" }) })" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "cluster-name-services" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{cluster.serviceNames.map((serviceName) => (\n\t\t\t\t\t\t\t\t\t
{serviceName}
\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 1: Configuration on the Event Broker\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tYou must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Broker Manager's Telemetry\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-1-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep1" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep1Click" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 2: Trace Collection\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCheck Status\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{isConfigured ? Update Configuration : Deploy Configuration}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t{distributedTracingStatus === \"notConfigured\" || distributedTracingStatus === \"pending\" || !telemetryProfileName ? (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t{distributedTracingStatus === \"pending\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\tData Collection is not configured.\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"success\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"success\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-2-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep2" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep2Click" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "section.label" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "summary", + "type": "expression", + "value": "section.label" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleSection(index)" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderProperties(section.data, section.properties)}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tAdvanced Connection Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "advanced_connection_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showAdvancedProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAdvancedProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tClone Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "clone_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCloneProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCloneProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "showEndpoints" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowEndpoint" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "state.showError ? \"error\" : state.showWarning ? \"warn\" : undefined" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "brokerSSONestedAccordion" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleBrokerAccordion()" + }, + { + "name": "summary", + "type": "expression", + "value": "en.brokerSSOConfig.instructionsText" + }, + { + "name": "expanded", + "type": "variable", + "value": "isBrokerAccordionExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1. Click Manage Brokers, then select which event broker services to\n\t\t\t\t\t\t\t\tenable to use Broker SSO.
\n\t\t\t\t\t\t\t\t2. Click Enable SSO.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t3. Click Copy Broker URIs.
\n\t\t\t\t\t\t\t\t4. Add the URIs you've copied to your identity provider.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t5. After you complete these steps for your event broker services, you can use SSO to access them.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tTroubleshooting tip\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tIf a broker has more than one URI, the URIs are copied as comma-separated list. If your identity\n\t\t\t\t\t\t\t\t\tprovider does not support this format, manually enter each URI separately.\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpanded(index)" + }, + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "usersAccordion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderUserSummary(0)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{usersList.map((user, index) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t{isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{hasMore && !showMore && !isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showMore}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{showMore && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showLess}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openAuditFilterOptionsSection" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Time Range\"\n\t\t\t\t\t\t\t\tvalue={filters.timeRange.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{timeRangeLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Status\"\n\t\t\t\t\t\t\t\tvalue={filters.status.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{statusLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Category\"\n\t\t\t\t\t\t\t\tvalue={filters.category.value}\n\t\t\t\t\t\t\t\tid=\"categoryFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.category}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{autoCompleteField()}\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Event\"\n\t\t\t\t\t\t\t\tvalue={filters.event.value}\n\t\t\t\t\t\t\t\thelperText={!filters.category.value ? en.auditLogs.selectCategory : \"\"}\n\t\t\t\t\t\t\t\tid=\"eventFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowFilterOptions((state) => !state)" + }, + { + "name": "expanded", + "type": "variable", + "value": "showFilterOptions" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.auditLogs.filters}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{selectedFilters?.map((filter, index) => (\n\t\t\t\t\t\t\t\t\t deleteFilter(filter.key)}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t{selectedFilters.length > 0 ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.auditLogs.clearAll}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "token.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`" + }, + { + "name": "details", + "type": "jsx", + "value": "<>{renderDetails(false)}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenDetailsAccordion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "result.role" + }, + { + "name": "dataQa", + "type": "string", + "value": "agentStatus" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{result.role}\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpandChange(result.role)" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandStates[result.role]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "datadogIntegrationsAccordion" + }, + { + "name": "summary", + "type": "expression", + "value": "\"Datadog Integrations\"" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "datadogIntegrationsExpand" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setDatadogIntegrationsExpand(!datadogIntegrationsExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "manuallyConfigureLogFacetsAccordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "manuallyConfigureLogExpand" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setManuallyConfigureLogExpand(!manuallyConfigureLogExpand)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tManually configure Log Facets in{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tDatadog\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tFacets List to create in Datadog:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "hover", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionChange" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tUpgrade Run Details\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "upgrade-run-details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentInfoExpand" + }, + { + "name": "summary", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tConnector Deployment Info\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentDetailsRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshDetailsInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshDetailsInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setSidekickDeploymentInfoExpand(!sidekickDeploymentInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentStatusExpand" + }, + { + "name": "summary", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tConnector Deployment Status\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentStatusRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshStatusInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshStatusInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setSidekickDeploymentStatusExpand(!sidekickDeploymentStatusExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "serviceInfoExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Associated Service" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setServiceInfoExpand(!serviceInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentDetailsExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Connector Deployment Details" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setSidekickDeploymentDetailsExpand(!sidekickDeploymentDetailsExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "collectorInfoExpand" + }, + { + "name": "summary", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\tCollector Info\n\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{refreshInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setCollectorInfoExpand(!collectorInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "serviceInfoExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Associated Service" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setServiceInfoExpand(!serviceInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "collectorConfigExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Collector Configuration" + }, + { + "name": "details", + "type": "jsx", + "value": " getCollectorConfig({ infrastructureId: service?.infrastructureId as string })}\n\t\t\t\t\t\t\t/>" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setCollectorConfigExpand(!collectorConfigExpand)" + } + ] + } + ] + }, + { + "componentName": "SolaceMenu", + "totalUsages": 68, + "usagesByMfe": { + "ep": 42, + "intg": 2, + "mc": 13, + "saas": 8, + "infra": 1, + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "buttonProps", + "count": 68 + }, + { + "name": "items", + "count": 68 + }, + { + "name": "anchorOrigin", + "count": 38 + }, + { + "name": "transformOrigin", + "count": 38 + }, + { + "name": "dataQa", + "count": 27 + }, + { + "name": "id", + "count": 23 + }, + { + "name": "key", + "count": 12 + }, + { + "name": "closeOnSelect", + "count": 5 + }, + { + "name": "numOfMenuItemDisplayed", + "count": 2 + }, + { + "name": "maxWidth", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/utils/RenderActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Add Protocol\"\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "solaceAddProtocolMenuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\tisDisabled: isEmpty(selectedRowIds),\n\t\t\t\t\t\t\tdataQa: \"selectedEntityActions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: en.eventPortalResources.labels.deleteSample.actionMenuTitle\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "getMenuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"versionMoreAction\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "wrappedMenuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: \"eventDetailModalMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"moreActionMenuButton\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsForEntityDetail()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tisDisabled: graphEmpty,\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"text\",\n\t\t\t\tchildren: \"Add Filters\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "filterMenuItems" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "9" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tchildren: \"Set Up Event Management Agent\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getRunDiscoveryScanOptionsItems()" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: variant,\n\t\t\t\t\t\tchildren: \"Run Discovery Scan\",\n\t\t\t\t\t\tdataQa: \"runDiscoveryScan\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"messagingServicesDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServicesDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`messagingService_${entity.id}-moreActions`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMessagingServiceDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "expression", + "value": "getMoreOptionsItemsForMessagingService(entity, true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memMessagingServiceDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"messagingServiceMoreActionsButton\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"View Event Management Agent\",\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),\n\t\t\t\t\t\t\tdataQa: \"viewRuntimeAgentActionMenu\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"runtimeAgentMoreActionsButton\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Connect to an Event Management Agent\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\tdataQa: dataQa + \"-button\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsProps()" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-menu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"custom-solace-menu\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "actionMenuForEntityVersionList" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: numberOfSelection === 0,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: \"Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMoreActions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: buttonVariant || \"outline\",\n\t\t\t\t\t\t\tchildren: buttonText || \"Import\",\n\t\t\t\t\t\t\tisDisabled: disabled,\n\t\t\t\t\t\t\tdataQa: \"chooseImportOptionButton\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"auditImportMenu\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tdataQa: \"designerMoreAction\",\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\tisDisabled: !isChecked,\n\t\t\t\t\t\tdataQa: \"selectedDomainsActions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"Export\",\n\t\t\t\t\t\t\tonMenuItemClick: () => onExport(selectedDomainIds),\n\t\t\t\t\t\t\tdataQa: \"selectedDomainsExport\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\tdataQa: \"domainMoreAction\",\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainMoreActionMenu" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: `${selectedNode?.type ?? \"\"}NodeSidePanelMoreAction`,\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${selectedNode?.type ?? \"\"}NodeSidePanelMoreActionMenu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"appDomainEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomainEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.eventApiProduct.buttons.openEventApiProduct,\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewVersionDetail(e, item, false)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: en.common.button.moreActions,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"memListMoreAction\"\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"createApplication-menu\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: createLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tdataQa: \"createApplication-button\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.standard,\n\t\t\t\t\t\t\tonMenuItemClick: handleCreate,\n\t\t\t\t\t\t\tdataQa: \"createStandardApplication\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.restDeliveryPoint,\n\t\t\t\t\t\t\tonMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),\n\t\t\t\t\t\t\tdataQa: \"createRestDeliveryPointApplication\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"moreActionsButton\",\n\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa: `${eventBroker.id}-moreOptionMenuButton`,\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\ttitle: common.button.moreActions\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "moreOptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-moreOptionMenu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getVersionDetailMenuItem(version, mode)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "actionitems" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/utils/RenderActions.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: selectedCount < minimalCount,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: t({ id: \"id_actions\", message: \"Actions\" })\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`${eventMesh.id}_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_event_mesh_details\", message: \"Event Mesh Details\" }),\n\t\t\t\t\t\t\t\tonMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),\n\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\tdisabled: !hasWriteAccess\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: t({ id: \"id_download\", message: \"Download\" }),\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tdataQa: \"download\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "string", + "value": "download" + }, + { + "name": "items", + "type": "expression", + "value": "links.download.map((dw) => ({\n\t\t\t\t\t\t\tname: dw.name,\n\t\t\t\t\t\t\tonMenuItemClick: () => openLink(dw.url)\n\t\t\t\t\t\t}))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-edit\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleEdit(idx)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-delete\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleDelete(idx)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_set_as_default\", message: \"Set as Default\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-set-default\",\n\t\t\t\t\t\t\t\t\t\tdisabled: !item.canSetAsDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tchangeHostnameDefaultMutation.mutate(item.name);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-move\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\tsetShowMoveDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_copy_clipboard\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetShowDeleteDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`public_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-edit\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-view\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "certType === \"client\"\n\t\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tdisabled: !canConfigure,\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index),\n\t\t\t\t\t\t\t\t\t\t\tdisabled: index === 0 || !canConfigure\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\tdisabled: item.id === DEFAULT_PROFILE || !canConfigure,\n\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"actions\",\n\t\t\t\tonClick: handleMenuClick\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${service.id}_actions`" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\t\tisDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === \"unsupported\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "actionItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.requestLimitChange,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: `${environmentsStr.environmentList.moreActionLabel}`,\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"environmentMoreActions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "dataTags", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.edit,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),\n\t\t\t\t\t\t\t\tdisabled: groupMappingState\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.remove,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => removeClaimMappingHandler(rowData.id)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: `${token.name}-menu`,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `View Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onViewToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-view`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Regenerate Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onRegenerateToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-regenerate`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Delete Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onDeleteToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-delete`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tService Details\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t\tonMenuItemClick: () => window.open(`/services/${item.serviceId}`, \"_blank\")?.focus()\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: \n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "actionMenuItems()" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n variant: \"icon\",\n title: \"Actions\",\n dataQa: \"clusterDetailsActionMenuButton\",\n children: ,\n }" + }, + { + "name": "key", + "type": "string", + "value": "cloudProviderLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMenu" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{ variant: \"icon\", children: , dataQa: \"filter\" }" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PREVIEW) ? Preview : \"Preview\",\n\t\t\t\t\t\t\t\t\tdataQa: \"preview\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PREVIEW)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PRODUCTION) ? Production : \"Production\",\n\t\t\t\t\t\t\t\t\tdataQa: \"production\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PRODUCTION)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.LTS) ? LTS : \"LTS\",\n\t\t\t\t\t\t\t\t\tdataQa: \"lts\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.LTS)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.ROLLING) ? Rolling : \"Rolling\",\n\t\t\t\t\t\t\t\t\tdataQa: \"rolling\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ROLLING)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.DECLINED) ? Declined : \"Declined\",\n\t\t\t\t\t\t\t\t\tdataQa: \"declined\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.DECLINED),\n\t\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.RELEASED) ? Released : \"Released\",\n\t\t\t\t\t\t\t\t\tdataQa: \"released\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.NOT_RELEASED) ? (\n\t\t\t\t\t\t\t\t\t\tNot Released\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\"Not Released\"\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdivider: true,\n\t\t\t\t\t\t\t\t\tdataQa: \"notReleased\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.NOT_RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Views\",\n\t\t\t\t\t\t\t\t\tname:\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PRODUCTION) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.RELEASED) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PREVIEW) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.LTS) ? (\n\t\t\t\t\t\t\t\t\t\t\tActive\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\"Active\"\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdataQa: \"active\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ACTIVE)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu" + } + ] + } + ] + }, + { + "componentName": "SolaceTable", + "totalUsages": 67, + "usagesByMfe": { + "ep": 19, + "intg": 3, + "saas": 9, + "infra": 2, + "maas-ops-react": 34 + }, + "commonProps": [ + { + "name": "rows", + "count": 67 + }, + { + "name": "columns", + "count": 67 + }, + { + "name": "selectionType", + "count": 67 + }, + { + "name": "sortCallback", + "count": 67 + }, + { + "name": "renderCustomRowCells", + "count": 38 + }, + { + "name": "selectionChangedCallback", + "count": 35 + }, + { + "name": "loading", + "count": 24 + }, + { + "name": "hasColumnHiding", + "count": 23 + }, + { + "name": "showEmptyState", + "count": 20 + }, + { + "name": "renderCustomRowActionItem", + "count": 19 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "renderCustomRowActionItem", + "type": "expression", + "value": "renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "selectionType ?? SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event-flow-discrepancy-preview-table" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItems" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"metricsDashboardTable\"" + }, + { + "name": "rows", + "type": "expression", + "value": "handleProcessEntities(entities)" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "rowActionMenuItems", + "type": "null", + "value": "null" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\treturn renderRowCells(row);\n\t\t\t}" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "!entities || entities.length === 0" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "id", + "type": "string", + "value": "remTable" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRow" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "actions" + }, + { + "name": "rows", + "type": "variable", + "value": "remEntities" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[selectedMem?.id]" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx", + "props": [ + { + "name": "loading", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderCustomEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "customContentDefinitions", + "type": "variable", + "value": "customContentDefinitions" + }, + { + "name": "displayedCustomContent", + "type": "variable", + "value": "displayedCustomContent" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "variable", + "value": "customContentDisplayChangeCallback" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "customMenuActions" + }, + { + "name": "crossPageRowSelectionSupported", + "type": "expression", + "value": "auditEntityType === null ? false : true" + }, + { + "name": "totalObjectCount", + "type": "variable", + "value": "entityCount" + }, + { + "name": "deselectedRowIds", + "type": "variable", + "value": "deselectedRowIds" + }, + { + "name": "allPagesSelectedByDefault", + "type": "variable", + "value": "allPagesSelectedByDefault" + }, + { + "name": "crossPageSelectionChangedCallback", + "type": "variable", + "value": "handleCrossPageRowSelectionsChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "expression", + "value": "getFilteredRows()" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "expression", + "value": "TEMPLATE_TYPES[type].tableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "messages[type].emptyTableMessage" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "existingSharedEventIds" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: false,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\treturn renderRowCells(row, columnsHiddenInfo);\n\t\t\t\t\t}" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.eventApi.labels.emptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\trenderChildren: renderExpandedRowContent,\n\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\tsetExpandedRowIds: setExpandedRowIds,\n\t\t\t\t\t\tselectRowWhenClickOnChildren: false\n\t\t\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventAccessRequestTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableDataAvailable && !loading" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "expression", + "value": "highlightedRow?.id" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: false,\n\t\t\t\t\t\trenderChildren: (row) => renderExpandedRowContent(row),\n\t\t\t\t\t\texpandedRowIds: [],\n\t\t\t\t\t\tsetExpandedRowIds: () => {\n\t\t\t\t\t\t\tvoid 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentSchemasTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching schemas have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentApplicationsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching applications have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allConnectors" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === connectorSort.split(\":\")[0])" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "id", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allAgents" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetAgentSort(`sort=${column?.field}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === agentSort)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "expression", + "value": "connectorErrorLogs ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "function (): void {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "logsFetching" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "userManagementColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableRows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "rows", + "type": "expression", + "value": "showEmptyState ? [] : tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(columm) => handleSort(columm, drawdownData)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsTableQA" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "resultsPerPageActions" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelectionsChange" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "variable", + "value": "auditLogsRows" + }, + { + "name": "columns", + "type": "variable", + "value": "AuditLogsTableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "emptyState" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.auditLogs.loadingMessage" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "maxHeight", + "type": "string", + "value": "40rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortClaimValuesDirection" + }, + { + "name": "rows", + "type": "expression", + "value": "groupMappingState ? [addMappingRow, ...tableRows] : tableRows" + }, + { + "name": "columns", + "type": "expression", + "value": "columns(groupMappingState)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "rows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "notificationsTable" + }, + { + "name": "loading", + "type": "expression", + "value": "isLoading || isFetchingNotifications || deletingNotification" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.notifications[deletingNotification ? \"deletingNotifications\" : \"fetchingNotifications\"]" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.notifications.emptyStateMessage(showUnreadNotifications)" + }, + { + "name": "columns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "displayedCustomContent", + "type": "array", + "value": "[]" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "getRowActionMenuItem" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\t\t\trenderChildren: (data) => {\n\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tsetExpandedRowIds: expandRowHandler\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "notifications ?? []" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "distributedTracingLimits ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "limitColumn" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingLimits.emptyStateMessage}" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "tracingProfiles ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingProfile.emptyStateMessage}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ClusterListTableColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No clusters found" + }, + { + "name": "minHeight", + "type": "expression", + "value": "theme.spacing(54)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ServiceListTableColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "loading", + "type": "variable", + "value": "isPending" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No services found" + }, + { + "name": "minHeight", + "type": "expression", + "value": "theme.spacing(72)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "processOrganizationsList" + }, + { + "name": "columns", + "type": "expression", + "value": "hasSAPAccount ? columnsWithTenantIds : columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "datacCentersRowData" + }, + { + "name": "columns", + "type": "variable", + "value": "dataCenterTableColumns" + }, + { + "name": "sortCallback", + "type": "function", + "value": "()=>\"\"" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "()=>\"\"" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "orgLimitsLoading ? \"Loading data...\" : \"No data to show\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "columnSelectionHandler" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.noResults}\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.checkFilters}\n\t\t\t\t\t\t\t setClearFiltersFlag(true)}>{organizationStrings.table.emptyState.clearFilters}\n\t\t\t\t\t\t\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "serviceColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "serviceRows" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[]" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + }, + { + "name": "dataQa", + "type": "string", + "value": "ServiceMonitoringSettingsTable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ddIntegrationColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "ddIntegrationRows" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => {}" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "minHeight", + "type": "string", + "value": "fit-content" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "facetsListColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "facetsListRows" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => {}" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "minHeight", + "type": "string", + "value": "fit-content" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => {}" + }, + { + "name": "rows", + "type": "variable", + "value": "jobs" + }, + { + "name": "loading", + "type": "variable", + "value": "jobsLoading" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "columns", + "type": "variable", + "value": "memoizedColumns" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "loading", + "type": "variable", + "value": "plansLoading" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[rowId]" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "(rows) => setRowId(rows.map((row) => row.id)[0])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No services returned." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred triggering the Post-Upgrade Checks. Contact @sc-launch-pad for support." + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading Post-Upgrade Check results..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred triggering the Pre-Upgrade Checks. Contact @sc-launch-pad for support." + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading Pre-Upgrade Check results..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred retrieving the upgrade logs. Contact @sc-launch-pad for support." + }, + { + "name": "loading", + "type": "expression", + "value": "loading && rows.length === 0" + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading upgrade logs..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "maxHeight", + "type": "string", + "value": "75vh" + }, + { + "name": "loading", + "type": "expression", + "value": "loading && !services" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "maxHeight", + "type": "string", + "value": "75vh" + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "loading", + "type": "variable", + "value": "runsLoading" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableRows.length === 0 && !runsLoading" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "(run) => history.push(`/automatic-upgrades/run/${run[0].id}`)" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\ttitle=\"No scheduled upgrade runs\"\n\t\t\t\t\t\t\t\t\tdetails=\"No upgrade runs returned. Open the create modal to schedule based off an existing Plan.\"\n\t\t\t\t\t\t\t\t\tactions={[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "COLUMNS" + }, + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "showEmptyState", + "type": "variable", + "value": "showEmptyState" + }, + { + "name": "rows", + "type": "expression", + "value": "showEmptyState ? [] : tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(columm) => handleSort(columm, drawdownData)" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "rows", + "type": "expression", + "value": "emas?.data ?? []" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row) => renderRowCells(row, evmrId)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "loading", + "type": "variable", + "value": "managementAgentsIsLoading" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(rows) => renderRowCells(rows, latestImageTag, evmrId, cloudManagedType)" + }, + { + "name": "rows", + "type": "expression", + "value": "rows ?? []" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRows" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "props": [ + { + "name": "columns", + "type": "expression", + "value": "getColumns()" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "noop" + }, + { + "name": "loadingMessage", + "type": "variable", + "value": "customErrorMessage" + }, + { + "name": "emptyStateMessage", + "type": "variable", + "value": "customErrorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columnsDef" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingServicePackages" + }, + { + "name": "maxHeight", + "type": "string", + "value": "calc(100vh - 17.25rem)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rows", + "type": "variable", + "value": "filteredProds" + }, + { + "name": "selectionType", + "type": "expression", + "value": "readOnlyProducts ? SELECTION_TYPE.NONE : SELECTION_TYPE.MULTI" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyStateView" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`subscription-products-table`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "toggleOverrideColumns" + }, + { + "name": "rows", + "type": "expression", + "value": "toggleOverridesResponse.data.map((override) => ({\n\t\t\t\t\t\t\t\t\t\t\t...override,\n\t\t\t\t\t\t\t\t\t\t\tid: override.orgId // Use orgId as the id property\n\t\t\t\t\t\t\t\t\t\t}))" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderToggleOverrideRowCells" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoadingOverrides" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFn" + }, + { + "name": "selectedRowIds", + "type": "expression", + "value": "selectedRowId ? [selectedRowId] : []" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)" + }, + { + "name": "rows", + "type": "variable", + "value": "orgDetails" + }, + { + "name": "columns", + "type": "expression", + "value": "columns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingOrgs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)" + }, + { + "name": "rows", + "type": "variable", + "value": "monitoringJobs" + }, + { + "name": "columns", + "type": "expression", + "value": "columns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingJobs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(sort) => {\n\t\t\t\t\t\t\tsetConnectorQuery(\n\t\t\t\t\t\t\t\tqueryBuilder({ orgId, pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "variable", + "value": "connectors" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleSelectionChangedCallback" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columnsDef" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(sort) => {\n\t\t\t\t\t\t\t\tsetBrokerQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "brokerCompatibility?.data ?? []" + }, + { + "name": "columns", + "type": "expression", + "value": "brokerCompatibilityColumns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "brokerCompatibilityActionMenuItems" + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(sort) => {\n\t\t\t\t\t\t\t\tsetHelmChartQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "helmChartCompatibility?.data ?? []" + }, + { + "name": "columns", + "type": "expression", + "value": "helmChartCompatibilityColumns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "helmChartCompatibilityActionMenuItems" + }, + { + "name": "loading", + "type": "variable", + "value": "helmChartCompatibilityIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + } + ] + }, + { + "componentName": "SolaceAttributeBadge", + "totalUsages": 64, + "usagesByMfe": { + "ep": 36, + "intg": 2, + "mc": 8, + "saas": 4, + "infra": 1, + "maas-ops-react": 13 + }, + "commonProps": [ + { + "name": "label", + "count": 62 + }, + { + "name": "size", + "count": 24 + }, + { + "name": "fillColor", + "count": 24 + }, + { + "name": "labelColor", + "count": 21 + }, + { + "name": "boldLabel", + "count": 20 + }, + { + "name": "dataQa", + "count": 14 + }, + { + "name": "height", + "count": 13 + }, + { + "name": "variant", + "count": 10 + }, + { + "name": "...", + "count": 10 + }, + { + "name": "compressed", + "count": 9 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "tagName" + }, + { + "name": "labelColor", + "type": "variable", + "value": "tagTextColor" + }, + { + "name": "fillColor", + "type": "variable", + "value": "tagBgColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Update Required\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "messages.selectDialog.default" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "pubSubStatus" + }, + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-toDelete`" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "expression", + "value": "\"To Be Deleted\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "StateChipStyleProps[stateName]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "stateName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Current" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "To Be Removed" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "badgePropsForStatus" + }, + { + "name": "label", + "type": "variable", + "value": "status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_BLUE" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "label", + "type": "string", + "value": "New" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.environmentName" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Recommended\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"overriddenBadge\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.overridden" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Added\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.pub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${\n\t\t\t\t\t\t\t\texpandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0\n\t\t\t\t\t\t\t\t\t? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length\n\t\t\t\t\t\t\t\t\t: 0\n\t\t\t\t\t\t\t} Added`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "state" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getColor(state).fillColor ?? undefined" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getColor(state).labelColor ?? undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "{eventMesh.environmentName}" + }, + { + "name": "size", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"100px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{`${schemaVersionSelectedMap[row.id].length} Added`}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{\"Selected\"}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Source\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Destination\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "label", + "type": "expression", + "value": "\"Declined\"" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "label", + "type": "expression", + "value": "ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"connector_status_badge\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "i18n._(getEventMeshState(eventMesh))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getEventMeshStateFillColor(eventMesh)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getEventMeshStateLabelColor(eventMesh)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expired\", message: \"Expired\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expires_soon\", message: \"Expires Soon\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.warnYellow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "language.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "fillColor", + "type": "variable", + "value": "fillColor" + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "dataQa", + "type": "string", + "value": "statusChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "hasSsoError ? t({ id: \"id_service_outofsync_short\", message: \"SSO out-of-sync\" }) : i18n._(getServiceState(service))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getServiceStateFillColor(service, hasSsoError)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getServiceStateLabelColor(service, hasSsoError)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_event_mesh\", message: \"Event Mesh\" })" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "active" + }, + { + "name": "label", + "type": "string", + "value": "Active" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "inactive" + }, + { + "name": "label", + "type": "string", + "value": "Inactive" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "clustersListStatus" + }, + { + "name": "label", + "type": "variable", + "value": "state" + }, + { + "name": "fillColor", + "type": "variable", + "value": "fillColor" + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "chipInfo.chipLabel" + }, + { + "name": "fillColor", + "type": "expression", + "value": "chipInfo.fillColor" + }, + { + "name": "labelColor", + "type": "expression", + "value": "chipInfo.labelColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "formatStatus(row[key])" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getLabelColor(row[key])" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getFillColor(row[key])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "formatStatus(runState)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getLabelColor(runState)" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getFillColor(runState)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "string", + "value": "Default" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "production-env" + }, + { + "name": "label", + "type": "string", + "value": "Production" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(\"default\")" + }, + { + "name": "size", + "type": "string", + "value": "xxs" + }, + { + "name": "label", + "type": "string", + "value": "TLS Disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(\"warning\")" + }, + { + "name": "size", + "type": "string", + "value": "xxs" + }, + { + "name": "label", + "type": "string", + "value": "Not Latest" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(\"warning\")" + }, + { + "name": "label", + "type": "string", + "value": "Not Latest" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "EMA_STATUS_LABELS.success" + }, + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(POLLING_STATUS.success)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "EMA_STATUS_LABELS.error" + }, + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(POLLING_STATUS.error)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "EMA_STATUS_LABELS.inProgress" + }, + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(POLLING_STATUS.inProgress)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Latest" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.infoBlue" + } + ] + } + ] + }, + { + "componentName": "SolaceSelectAutocompleteItem", + "totalUsages": 58, + "usagesByMfe": { + "ep": 35, + "intg": 4, + "mc": 5, + "saas": 9, + "infra": 1, + "maas-ops-react": 4 + }, + "commonProps": [ + { + "name": "...", + "count": 10 + }, + { + "name": "name", + "count": 9 + }, + { + "name": "value", + "count": 9 + }, + { + "name": "supplementalText", + "count": 6 + }, + { + "name": "subText", + "count": 4 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "RESOURCE_LABEL_BY_ROLE[role]" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "subText", + "type": "expression", + "value": "RESOURCE_DESCRIPTION_BY_ROLE[role]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.scanWithEventPortal" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.scanFromEventPortal" + }, + { + "name": "subText", + "type": "string", + "value": "Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.uploadScanFile" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.uploadScanFile" + }, + { + "name": "subText", + "type": "string", + "value": "Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "eventMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "version" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isSecondVersionOptions && selectedVersionId === version.id ? \"No Difference\" : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceClientUsername.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceClientUsername" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceAuthorizationGroup.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceAuthorizationGroup" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tracingType[TracingType.Insights]" + }, + { + "name": "value", + "type": "expression", + "value": "TracingType.Insights" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isInsights ? \"Default\" : \"Not Available\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]" + }, + { + "name": "value", + "type": "expression", + "value": "TlsConnectionType.SecureSkipValidation" + }, + { + "name": "subText", + "type": "string", + "value": "Skips certificate authority validation" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "createBizOrganization.orgDetails.EnterpriseAcc" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "createBizOrganization.orgDetails.defaultAcc" + }, + { + "name": "value", + "type": "string", + "value": "enterprise" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "item.id ?? \"\"" + }, + { + "name": "supplementalText", + "type": "string", + "value": "Current Version" + }, + { + "name": "value", + "type": "expression", + "value": "connectorVersion ?? \"\"" + } + ] + } + ] + }, + { + "componentName": "SolaceCard", + "totalUsages": 56, + "usagesByMfe": { + "ep": 35, + "intg": 6, + "mc": 5, + "saas": 10 + }, + "commonProps": [ + { + "name": "backgroundColor", + "count": 32 + }, + { + "name": "showCloseButton", + "count": 25 + }, + { + "name": "onClose", + "count": 22 + }, + { + "name": "title", + "count": 20 + }, + { + "name": "dataQa", + "count": 18 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "What is an Event Management Agent?" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoBlurb" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "

{brandableTextValueConverter(\"Environments in PubSub+ Cloud\", \"string\")}

" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissEducationalCard" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "Want to subscribe to specific values?" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowInfoBlurb(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addSubscriptionInfoBlurb" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "getCardTitle(selectedAudit.auditEntityType)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissReuseIndexInfoCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowRDPInfo(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointInformation" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Upload From JSON File\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseEnumVauesHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumValuesHelp\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\n\t\t\t\t\tReferenced Schema Names Require Manual Updates\n\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? \"Conflicting Topic Address\" : \"Conflicting Objects\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "attractedEventsNoResults" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Defining Topic Domains" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResources" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Tips and Tricks for Topic Addresses\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noBrokers" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noMatchingBrokers" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.projectDefinition.help" + }, + { + "name": "dataQa", + "type": "string", + "value": "projectDefinitionHelp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setTranformationBlurbDismissedAtom(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "popover ? \"popoverInfo\" : \"infoCard\"" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!popover" + }, + { + "name": "onClose", + "type": "function", + "value": "() => (popover ? undefined : onClose && onClose)" + }, + { + "name": "title", + "type": "string", + "value": "Setting Values for Target Headers" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "popover ? \"inherit\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseDisplayMessage()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetShowEducationBlurb(false);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setNeedHelp(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Release Notes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "#ffffff" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerSSOCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.messages.firstOpenBottomInfoTitle" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardBottom" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBottomMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.messages.title" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.primary.contrastText" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tMessage Service Alerts & Notification\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Logs Retention" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + }, + { + "name": "dataQa", + "type": "string", + "value": "logsRetentionCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Who Can Receive Notifications?" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationAd" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + } + ] + }, + { + "componentName": "SolaceSelectAutocomplete", + "totalUsages": 48, + "usagesByMfe": { + "ep": 28, + "intg": 4, + "mc": 5, + "saas": 7, + "infra": 2, + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 48 + }, + { + "name": "onChange", + "count": 48 + }, + { + "name": "dataQa", + "count": 47 + }, + { + "name": "options", + "count": 47 + }, + { + "name": "itemComponent", + "count": 47 + }, + { + "name": "itemMappingCallback", + "count": 47 + }, + { + "name": "optionsLabelCallback", + "count": 47 + }, + { + "name": "fetchOptionsCallback", + "count": 47 + }, + { + "name": "value", + "count": 46 + }, + { + "name": "isOptionEqualToValueCallback", + "count": 43 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "name", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "label", + "type": "string", + "value": "Modeled Event Mesh" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEventMeshes[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "name", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "selectedEventMeshes.length === 0" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedMessagingServices[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductVersionId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceAutocomplete" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService" + }, + { + "name": "label", + "type": "string", + "value": "Event Broker Context (optional)" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "values" + }, + { + "name": "options", + "type": "variable", + "value": "matchingValues" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabledCallback" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "debouncedFetchOptionsCallback" + }, + { + "name": "shouldClearSearchOnSelectCallback", + "type": "variable", + "value": "shouldClearSearchOnSelectCallback" + }, + { + "name": "maxHeight", + "type": "string", + "value": "400px" + }, + { + "name": "validateInputCallback", + "type": "variable", + "value": "validateInputValue" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumeration" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationName" + }, + { + "name": "label", + "type": "string", + "value": "Enumeration" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalEnums" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnumOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnumChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumOption" + }, + { + "name": "getOptionDisabledCallback", + "type": "expression", + "value": "sharedSearchCriteria ? handleOptionDisabled : undefined" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "sharedSearchCriteria ? \"You can associate only shared enumerations with shared events.\" : null" + }, + { + "name": "width", + "type": "string", + "value": "65%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomain" + }, + { + "name": "options", + "type": "variable", + "value": "matchingApplicationDomains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationDomainOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "disabled", + "type": "boolean", + "value": "false" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "variable", + "value": "showHelperText" + }, + { + "name": "maxHeight", + "type": "string", + "value": "370px" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationDomainSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationVersionSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ?? \"Application Version\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationVersions" + }, + { + "name": "options", + "type": "variable", + "value": "applicationVersionOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getApplicationVersionSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\tselectedApplicationVersions?.[0] && (\n\t\t\t\t\t{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}\n\t\t\t\t)" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationVersionOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isApplicationVersionSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined" + }, + { + "name": "showGroupDivider", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.divider) ? true : false" + }, + { + "name": "disableCloseOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError || helperText || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersionSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[filterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "label", + "type": "jsx", + "value": "" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedOptions.length > 0 ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOptions" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "CustomAttributeValueAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getCustomAttributeValueOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowCustomAttributeValueOptionDivider" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeCustomAttributeValues" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchCustomAttributeValueOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isCustomAttributeValueOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tdebouncedSelectedOptions &&\n\t\t\t\t\t\tdebouncedSelectedOptions.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[customAttributeFilterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "name", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "placeholder", + "type": "expression", + "value": "displayedEnvironments?.length ? \"\" : \"Select environments\"" + }, + { + "name": "required", + "type": "expression", + "value": "!!isRequired" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!isReadOnly" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "displayedEnvironments" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnvironments" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEnvironments" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "EnvironmentMultiSelectOption" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...option,\n\t\t\t\t\t\tenvironmentOption: getEnvironmentChipObject(environmentOptions, option.id)\n\t\t\t\t\t};\n\t\t\t\t}" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEnvironmentsOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEnvironmentSelectAutocompleteOptionEqual" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tautocompleteRef.current = input;\n\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\tdisplayedEnvironments?.length > 0 && (\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tcolumnGap={8}\n\t\t\t\t\t\t\tshowAll={false}\n\t\t\t\t\t\t\tcontainerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.sharedFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSharedType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredSharedTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShareFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterSharedTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.brokerTypeFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedBrokerType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredBrokerTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerTypeFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterBrokerTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameTemplate" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\tselectTemplate(templates.find((template) => template.id === e.value.value));\n\t\t\t\t\t\t\t\t\t\t\t\t// template changed - keep queue name, clear other properties\n\t\t\t\t\t\t\t\t\t\t\t\tupdateUserConfigValues({ queueName: queueName }, true);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "isTemplateSelectionDisabled(templates, templateOutOfSync)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t// template selected\n\t\t\t\t\t\t\t\t\t\t\t\tconst template = templates.find((template) => template.id === e.value?.value);\n\t\t\t\t\t\t\t\t\t\t\t\tconst clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tsetTemplateOptionSelected({\n\t\t\t\t\t\t\t\t\t\t\t\t\tname: template.name,\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalue: template.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdescription: template.description,\n\t\t\t\t\t\t\t\t\t\t\t\t\tclientProfileName: clientProfileName\n\t\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(clientProfileName);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t// template cleared\n\t\t\t\t\t\t\t\t\t\t\t\treset(true);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "templates.length === 0" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "options", + "type": "expression", + "value": "getAutoCompleteOptions(level)" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterValues" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "value", + "type": "expression", + "value": "getAutoCompleteValue(value, level, name)" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + }, + { + "name": "limitTags", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchMems" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredGatewayMessagingService : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "name", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "label", + "type": "string", + "value": "Requestor" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedRequestors?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedRequestors" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "function", + "value": "(option) => option.name" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRequestorChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option.value === value.value" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\t\t\t\t\t\t\trequestorInputRef.current = input;\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{selectedEventMeshes?.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + }, + { + "name": "maxHeight", + "type": "string", + "value": "22rem" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "id", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchServices" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "expression", + "value": "showMIEnvironmentsFlag ? getOptionsForEnv : getOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedService" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.eventBrokerService" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t: en.connectors.helperText.serviceName" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === \"no_services\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "id", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.transformation" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedTransformationFunction || undefined" + }, + { + "name": "options", + "type": "variable", + "value": "matchingTransformationFunctions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleTransformationFunctionChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "label", + "type": "expression", + "value": "typeof data.label === \"string\"\n\t\t\t\t\t\t\t\t? data.label\n\t\t\t\t\t\t\t\t: data.type === \"input\"\n\t\t\t\t\t\t\t\t? (en.transformations.labels.sourceItem as string)\n\t\t\t\t\t\t\t\t: (en.transformations.labels.targetItem as string)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedField || undefined" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "options", + "type": "variable", + "value": "matchingData" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "maxHeight", + "type": "string", + "value": "30vh" + }, + { + "name": "name", + "type": "string", + "value": "targetVersion" + }, + { + "name": "label", + "type": "string", + "value": "Target Version" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!formError" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "helperText", + "type": "expression", + "value": "formError ? formError : \"\"" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === currentVersion" + }, + { + "name": "fetchOptionsCallback", + "type": "expression", + "value": "useDebouncedCallback(fetchOptionsCallback, 150)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\tsetFormError(\"\");\n\t\t\t\t\t\tsetVersion(event.value as SolaceSelectAutocompleteItemProps);\n\t\t\t\t\t}" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "region" + }, + { + "name": "name", + "type": "string", + "value": "region" + }, + { + "name": "dataQa", + "type": "string", + "value": "region" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "regionDisabled" + }, + { + "name": "placeholder", + "type": "expression", + "value": "getPlaceholder()" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "regionToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemToRegion" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getGroupBy" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "isOptionDisabled" + }, + { + "name": "options", + "type": "variable", + "value": "matchingRegions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterName" + }, + { + "name": "name", + "type": "string", + "value": "clusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clusterName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "clusterNameToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemMappingCallback" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_cluster_name_info\", message: \"Type a new cluster name or select an existing one.\" })" + }, + { + "name": "options", + "type": "variable", + "value": "matchingClusterNames" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "theme.spacing(30)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) =>\n\t\t\t\t!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "name", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptionsCallback" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "options", + "type": "variable", + "value": "usersDropdownList" + }, + { + "name": "title", + "type": "string", + "value": "Select a user to transfer services to" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "userGroupRoleDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupRoleDropdown" + }, + { + "name": "width", + "type": "string", + "value": "800px" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.roles" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupRoleDropdownQa" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupRoleChange" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.roleValue ? dialogState.roleValue : currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleRolesDisabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasRoleError" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasRoleError ? userGroups.ugDialog.ugRoleError : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.username" + }, + { + "name": "id", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "name", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "dataQa", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleEmailSelection(e.value as IEmailOption)" + }, + { + "name": "value", + "type": "expression", + "value": "filters.email.value ? selectedEmail : undefined" + }, + { + "name": "options", + "type": "expression", + "value": "emailSearchTerm ? matchingEmails : getEmails(usersDetails)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.defaultUserGroupLabel" + }, + { + "name": "hasErrors", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "name", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "dataQa", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!selectedUserGroup ? userGroupManagement.selectDefaultGroup : \"\"" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedUserGroup?.name" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "width", + "type": "string", + "value": "30rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "name", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroups" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tsubText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(\", \"),\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "servicesDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "servicesDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceDropdown" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleServiceCallback" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "options", + "type": "variable", + "value": "services" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "value", + "type": "variable", + "value": "dropdownValueFromParam" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "cloudProvider" + }, + { + "name": "label", + "type": "string", + "value": "Cloud Provider" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloudProviderSelect" + }, + { + "name": "width", + "type": "string", + "value": "300px" + }, + { + "name": "options", + "type": "variable", + "value": "filteredCloudProviderOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterCloudProviderOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(item: { value: string; name: string; }) => item" + }, + { + "name": "value", + "type": "variable", + "value": "filteredCloudProviders" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloudProviderChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "k8sVersion" + }, + { + "name": "label", + "type": "string", + "value": "Kubernetes Version" + }, + { + "name": "dataQa", + "type": "string", + "value": "k8sVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "300px" + }, + { + "name": "options", + "type": "variable", + "value": "filteredK8sVersionOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterK8sVersionOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(item: { value: string; name: string; }) => item" + }, + { + "name": "value", + "type": "variable", + "value": "filteredK8sVersions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleK8sVersionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterBy" + }, + { + "name": "name", + "type": "string", + "value": "filterBy" + }, + { + "name": "label", + "type": "string", + "value": "Filter By" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as { name: string; value: string }[]);\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterBy" + }, + { + "name": "name", + "type": "string", + "value": "filterBy" + }, + { + "name": "label", + "type": "string", + "value": "Filter By" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as Filter[]);\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + } + ] + } + ] + }, + { + "componentName": "SolaceTruncatableLink", + "totalUsages": 48, + "usagesByMfe": { + "ep": 46, + "intg": 2 + }, + "commonProps": [ + { + "name": "id", + "count": 48 + }, + { + "name": "text", + "count": 48 + }, + { + "name": "onClick", + "count": 31 + }, + { + "name": "dataQa", + "count": 8 + }, + { + "name": "href", + "count": 2 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedEventBroker.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedApplication.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsLabel(credentials)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeAValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputA\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeBValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointNameValue" + }, + { + "name": "text", + "type": "variable", + "value": "rdpName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}NameValue`" + }, + { + "name": "text", + "type": "expression", + "value": "entity.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "expression", + "value": "onVersionNameClick ? version.display || version.semver : {version.display || version.semver}" + }, + { + "name": "onClick", + "type": "expression", + "value": "onVersionNameClick ? () => onVersionNameClick(version) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "event.id" + }, + { + "name": "text", + "type": "expression", + "value": "event.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => eventSelectionCallback(event)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{`${applicationVersion.parent.name} `}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{applicationVersion.displayName || applicationVersion.version}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "text", + "type": "variable", + "value": "eventApiProductName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "variable", + "value": "itemName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "messagingService.id" + }, + { + "name": "text", + "type": "expression", + "value": "messagingService.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onTitleLinkClick(messagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion][Title]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityVersion.parent.id}-${entityVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id + \"_name\"" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventMeshName" + }, + { + "name": "onClick", + "type": "expression", + "value": "hasAccess ? () => handleViewDetail(row) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${associatedEvents?.[0]?.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEvents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEvents?.[0])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${associatedEvents?.[0]?.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionSummaryPopoverText=${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionName-${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(applicationVersion.parent, applicationVersion)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appName-${application.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "application.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(application)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "id", + "type": "expression", + "value": "event?.name" + }, + { + "name": "text", + "type": "expression", + "value": "event?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(event)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "associatedEventParents?.[0]?.name" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEventParents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEventParents?.[0])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaDetail?.name}`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaDetail?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(null)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaDetail?.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${applicationDetail?.parent?.name}-${applicationDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventDetail?.parent?.name}-${eventDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "eventDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionNumber}`" + }, + { + "name": "text", + "type": "expression", + "value": "`Version ${versionNumber}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionLinkClick(relation)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${row.id}-templateLink`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplate(row.id)" + }, + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.templateName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"contextSelector-title\"" + }, + { + "name": "text", + "type": "expression", + "value": "`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "expression", + "value": "item.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "canOpen ? () => onOpen(item) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "node.versionId" + }, + { + "name": "text", + "type": "expression", + "value": "node.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.eventId" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "row.application?.name ?? \"-\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "request.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "request.application.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "applicationDomainLocked ? null : () => onApplicationClick(request.application)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion.id}-link`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewSchemaVersionDetails(schema, schemaVersion)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaVersion.id}-viewDetails`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined" + }, + { + "name": "id", + "type": "expression", + "value": "eventBroker.id" + }, + { + "name": "text", + "type": "expression", + "value": "eventBroker.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${applicationVersion.id}-applicationVersion-link`" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`" + }, + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "limitString(row.name, 35)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(row.name)}_button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`row.name_button`" + } + ] + } + ] + }, + { + "componentName": "SolacePagination", + "totalUsages": 46, + "usagesByMfe": { + "ep": 17, + "intg": 2, + "mc": 4, + "saas": 6, + "infra": 2, + "maas-ops-react": 15 + }, + "commonProps": [ + { + "name": "totalResults", + "count": 46 + }, + { + "name": "pageSize", + "count": 46 + }, + { + "name": "activePage", + "count": 46 + }, + { + "name": "onPageSelection", + "count": 46 + }, + { + "name": "loading", + "count": 12 + }, + { + "name": "displayText", + "count": 5 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "tableRows.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "PAGE_SIZE" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "applicationVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "applicationCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setApplicationCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eventCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEventCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "schemaVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "schemaCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setSchemaCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventApiProductVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eapCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEapCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "pagination?.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination?.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination?.count" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "requests.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "displayText", + "type": "expression", + "value": "\"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber + 1" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => 1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "100" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "userTablePage" + }, + { + "name": "pageSize", + "type": "variable", + "value": "USER_LIST_DATA_PER_PAGE" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pageCount || 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => setUserTablePage(page)" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "meta?.pagination.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => fetchNewPage(page)" + }, + { + "name": "totalResults", + "type": "expression", + "value": "meta?.pagination.totalHitCount" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta?.pagination.pageSize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "10" + }, + { + "name": "totalResults", + "type": "expression", + "value": "rows.length" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => undefined" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "notificationsResponse?.meta?.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => {\n\t\t\t\t\t\t\t\t\tsetPageNumber(page);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "totalResults", + "type": "expression", + "value": "notificationsResponse?.meta?.count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "notificationsResponse?.meta?.pageSize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "totalClusterLength" + }, + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "totalCount" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "loading", + "type": "variable", + "value": "isPending" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "paginationData.total" + }, + { + "name": "activePage", + "type": "expression", + "value": "paginationData.currentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "paginationData.pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectDifferentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "(adminServiceResponse?.meta?.pageNumber ?? -1) + 1" + }, + { + "name": "pageSize", + "type": "expression", + "value": "adminServiceResponse?.meta?.pageSize ?? 20" + }, + { + "name": "totalResults", + "type": "expression", + "value": "adminServiceResponse?.meta?.count ?? 0" + }, + { + "name": "loading", + "type": "variable", + "value": "adminServiceResponseIsLoading" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\tsetPageNumber(selectedPage - 1);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "totalResults", + "type": "variable", + "value": "jobsCount" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => setPageNumber(page)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "activePage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setActivePage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination?.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination?.count" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "activePage" + }, + { + "name": "loading", + "type": "variable", + "value": "managementAgentsIsLoading" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setActivePage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination.count" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "paginationData?.count" + }, + { + "name": "activePage", + "type": "expression", + "value": "paginationData?.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "paginationData?.pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "page" + }, + { + "name": "totalResults", + "type": "expression", + "value": "tableRows.length" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingServicePackages" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "paginationData.total" + }, + { + "name": "activePage", + "type": "expression", + "value": "paginationData.currentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "paginationData.pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => setPageNumber(selectedPage)" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingOrgs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => setPageNumber(selectedPage)" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingJobs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "connectorCount" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\tsetConnectorQuery(queryBuilder({ orgId, pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "expression", + "value": "isLoading && isLoadingMicroIntegrations && isLoadingAgents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "brokerCompatibility?.meta?.pageNumber ?? 0" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "brokerCompatibility?.meta?.count ?? 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetBrokerQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "helmChartCompatibility?.meta?.pageNumber ?? 0" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "helmChartCompatibility?.meta?.count ?? 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetHelmChartQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading" + } + ] + } + ] + }, + { + "componentName": "SolaceChip", + "totalUsages": 42, + "usagesByMfe": { + "ep": 20, + "intg": 1, + "saas": 6, + "infra": 2, + "maas-ops-react": 13 + }, + "commonProps": [ + { + "name": "label", + "count": 42 + }, + { + "name": "key", + "count": 13 + }, + { + "name": "variant", + "count": 11 + }, + { + "name": "maxWidth", + "count": 10 + }, + { + "name": "onDelete", + "count": 9 + }, + { + "name": "dataQa", + "count": 7 + }, + { + "name": "fillColor", + "count": 7 + }, + { + "name": "clickable", + "count": 6 + }, + { + "name": "size", + "count": 6 + }, + { + "name": "labelColor", + "count": 5 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/CommonAppBar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + }, + { + "name": "state", + "type": "expression", + "value": "selected ? STATES.ACTIVE : STATES.NOT_SELECTED" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "selectedEventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "protocolName.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "messagingService.eventMeshId" + }, + { + "name": "label", + "type": "expression", + "value": "messagingService.eventMeshName" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "maxWidth", + "type": "string", + "value": "200px" + }, + { + "name": "disabled", + "type": "variable", + "value": "toBeRemoved" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "isSidePanel ? 100 : 150" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t\t\t\t{isAppDomainLocked && }\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "label", + "type": "expression", + "value": "tag.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t {AUDIT_TAGS_LABELS.Hide}\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "node.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "domainInfoMap[item.id].name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "200" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": " 1 ? \"s\" : \"\"}: ${consumersCount}`}>\n\t\t\t\t\t\t{`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`}\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "number", + "value": "110" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerChip-${eventVersionId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "chipProps.labelColor" + }, + { + "name": "fillColor", + "type": "expression", + "value": "chipProps.fillColor" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "jsx", + "value": "{chipProps.label}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "group.id" + }, + { + "name": "label", + "type": "expression", + "value": "group.name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "user.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name + \" : \" + filter.value" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => deleteFilter(filter.key)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/CommonAppBar.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "BETA" + }, + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "`${label}: ${value}`" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDeleteFunc" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQaId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "BETA" + }, + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => onDeleteFunc()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "label", + "type": "variable", + "value": "value" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => setFilters({ ...filters, [key]: \"\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "maxWidth", + "type": "string", + "value": "fit-content" + }, + { + "name": "label", + "type": "variable", + "value": "item" + }, + { + "name": "...", + "type": "spread", + "value": "setChipArray ? { onDelete: () => setChipArray(item) } : {}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${value}-chip`" + }, + { + "name": "label", + "type": "expression", + "value": "capitalCase(value)" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => modifyFilters().removeFilter(value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "email + index" + }, + { + "name": "label", + "type": "variable", + "value": "email" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "email + index" + }, + { + "name": "label", + "type": "variable", + "value": "email" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => removeEmail(email)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "feature" + }, + { + "name": "label", + "type": "variable", + "value": "feature" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "more" + }, + { + "name": "label", + "type": "expression", + "value": "integrationStrings.organizations.table.moreFeatures(features.length - 1)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "dataQa", + "type": "string", + "value": "more-features" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "feature" + }, + { + "name": "label", + "type": "variable", + "value": "feature" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`visible-${index}-${email}`" + }, + { + "name": "label", + "type": "variable", + "value": "email" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Up to Date" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Out of Date" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.warnYellow" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + } + ] + }, + { + "componentName": "SolaceTabs", + "totalUsages": 38, + "usagesByMfe": { + "ep": 22, + "intg": 4, + "mc": 3, + "saas": 2, + "infra": 1, + "maas-ops-react": 6 + }, + "commonProps": [ + { + "name": "tabs", + "count": 36 + }, + { + "name": "activeTabValue", + "count": 36 + }, + { + "name": "onTabClick", + "count": 29 + }, + { + "name": "size", + "count": 15 + }, + { + "name": "variant", + "count": 10 + }, + { + "name": "...", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabArray" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "selectedTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: \"mostUsed\" },\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: \"leastused\" }\n\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => handleTabClick(tab)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "brokerTypeOptions" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "addObjectsActiveTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleAddObjectTabClick" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "actionTabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleActionTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeStep" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setActiveStep" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t{ value: \"1\", label: t({ id: \"id_get_api\", message: \"1. Get API\" }) },\n\t\t\t\t\t{ value: \"2\", label: t({ id: \"id_connect_service\", message: \"2. Connect to Service\" }) },\n\t\t\t\t\t{ value: \"3\", label: t({ id: \"id_learn_more\", message: \"3. Learn with Tutorials\" }) }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "certType" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setCertType" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{ value: \"client\", label: t({ id: \"id_client_cert_auths\", message: \"Client Certificate Authorities\" }) },\n\t\t\t\t\t\t\t\t\t{ value: \"domain\", label: t({ id: \"id_domain_cert_auths\", message: \"Domain Certificate Authorities\" }) }\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_status\", message: \"Status\" }), value: \"status\" },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_connect\", message: \"Connect\" }), value: \"connect\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_manage\", message: \"Manage\" }), value: \"manage\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_monitoring\", message: \"Monitoring\" }), value: \"monitoring\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_configuration\", message: \"Configuration\" }), value: \"configuration\", disabled: isInProgress },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_tryme\", message: \"Try Me!\" }), value: \"tryme\", disabled: areTabsDisabled }\n\t\t\t\t\t\t]" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n { label: \"Datacenters\", value: \"datacenters\" },\n { label: \"Preupgrade Validation\", value: \"preupgrade-validation\" },\n { label: \"System Components\", value: \"system-components\" },\n { label: \"Network\", value: \"network\" },\n { label: \"Services\", value: \"services\" },\n ]" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => history.push(`/clusters/${clusterId}/${tab}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(value) => setActiveTab(value as EMA_TYPES)" + }, + { + "name": "size", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab as MonitoringTabs)" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "wanTuningFeaturesTabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTabFeature" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTabFeature(tab as WanTuningFeatures)" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + } + ] + }, + { + "componentName": "SolaceCircularProgress", + "totalUsages": 37, + "usagesByMfe": { + "ep": 7, + "intg": 3, + "mc": 11, + "saas": 6, + "infra": 1, + "maas-ops-react": 9 + }, + "commonProps": [ + { + "name": "size", + "count": 23 + }, + { + "name": "variant", + "count": 13 + }, + { + "name": "message", + "count": 5 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "disableShrink", + "count": 1 + }, + { + "name": "data-qa", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx", + "props": [ + { + "name": "dataQa", + "type": "variable", + "value": "testId" + }, + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + }, + { + "name": "disableShrink", + "type": "variable", + "value": "disableShrink" + }, + { + "name": "message", + "type": "variable", + "value": "message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Retrieving event broker service details..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Deploying license to broker..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Removing Distributed Tracing license from broker..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "variable", + "value": "configuringMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading-spinner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "variant", + "type": "variable", + "value": "loadingVariant" + } + ] + } + ] + }, + { + "componentName": "SolaceToggle", + "totalUsages": 35, + "usagesByMfe": { + "ep": 25, + "intg": 2, + "mc": 3, + "saas": 2, + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "name", + "count": 35 + }, + { + "name": "onChange", + "count": 35 + }, + { + "name": "isOn", + "count": 34 + }, + { + "name": "id", + "count": 24 + }, + { + "name": "label", + "count": 22 + }, + { + "name": "dataQa", + "count": 20 + }, + { + "name": "helperText", + "count": 6 + }, + { + "name": "disabled", + "count": 4 + }, + { + "name": "...", + "count": 3 + }, + { + "name": "title", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomToggle.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + }, + { + "name": "disabled", + "type": "variable", + "value": "disableActionToChangeGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showNewEventVersionIndicator`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowNewEventVersionIndicator?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showNewEventVersionIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}snapNodeToGrid`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSnapNodeToGrid?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "snapNodeToGrid" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMultiSelect" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Multi Select\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMultiSelect" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMultiSelect(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMoveNodes" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Move Nodes\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMoveNodes" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMoveNodes(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowSchema?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showSchema" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all_resources" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment?.showAllResources" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "messages.header.showAllResources" + }, + { + "name": "helperText", + "type": "expression", + "value": "messages.header.helperText" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderShowAllResources" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHideMatch" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideSubRelationshipsMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSubjectRelationshipHideMatch" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showPropertyNames" + }, + { + "name": "label", + "type": "expression", + "value": "application.configuration.showPropertyNames" + }, + { + "name": "isOn", + "type": "variable", + "value": "showPropertyNames" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowPropertyNames(!showPropertyNames)" + }, + { + "name": "dataQa", + "type": "string", + "value": "showPropertyNamesToggle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Advanced Properties\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showAdvancedPropertiesToggle\"" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + }, + { + "name": "disabled", + "type": "expression", + "value": "!restDeliveryPoint?.restConsumerConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.showAdvancedProperties" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`showAdvancedProperties`" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomToggle.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "isOn", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "delete_protection" + }, + { + "name": "name", + "type": "string", + "value": "delete_protection" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-protection" + }, + { + "name": "isOn", + "type": "variable", + "value": "isLocked" + }, + { + "name": "disabled", + "type": "expression", + "value": "!canConfigure" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDeleteProtection" + }, + { + "name": "stateText", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_delete_protection\", message: \"Delete Protection\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({ id: \"id_show_all_environments_help\", message: \"Enable to manage resources across environments\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "label", + "type": "expression", + "value": "brandableTextValueConverter(\"PubSub+\", \"string\") + \" \" + en.accountSettings.preAuthText" + }, + { + "name": "name", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => togglePreAuth(value.value)" + }, + { + "name": "title", + "type": "string", + "value": "Security Settings Pre Auth" + }, + { + "name": "isOn", + "type": "expression", + "value": "!preOrgConfigResponse?.data.useAuthWebUILinks" + }, + { + "name": "disabled", + "type": "expression", + "value": "preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig" + }, + { + "name": "dataQa", + "type": "string", + "value": "preAuthText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "en.notifications[showUnreadNotifications ? \"showingUnreadNotifications\" : \"showingAllNotifications\"]" + }, + { + "name": "id", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "dataQa", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "label", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "name", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setShowUnreadNotifications(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "isOn", + "type": "variable", + "value": "showUnreadNotifications" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "profileToggle" + }, + { + "name": "isOn", + "type": "expression", + "value": "resource.enabled" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResourceToggle(resource.profile)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_toggle`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "isOn", + "type": "expression", + "value": "rest.value" + }, + { + "name": "name", + "type": "string", + "value": "datacenterVisibility" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => rest.onChange(event.value)" + }, + { + "name": "label", + "type": "string", + "value": "Visible" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "name", + "type": "string", + "value": "datacenterAvailability" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => rest.onChange(event.value)" + }, + { + "name": "label", + "type": "string", + "value": "Available" + } + ] + } + ] + }, + { + "componentName": "SolaceDetailMessage", + "totalUsages": 33, + "usagesByMfe": { + "ep": 13, + "intg": 5, + "mc": 1, + "saas": 4, + "maas-ops-react": 10 + }, + "commonProps": [ + { + "name": "details", + "count": 28 + }, + { + "name": "title", + "count": 27 + }, + { + "name": "msgImg", + "count": 26 + }, + { + "name": "actions", + "count": 20 + }, + { + "name": "...", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/EmptyPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/EmptyPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "messages[configType].emptyConfigurationTitle" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages[configType].emptyLinkToDocumentation}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "{messages[configType].emptyConfigurationDetail}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{en.connectors.buttons.clearFilters}\n\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{secondSectionActionString}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "secondSectionDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping" + }, + { + "name": "details", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.learnMapping,\n\t\t\t\t\t\thref: \"https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.noConnectorFlows" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "details", + "type": "expression", + "value": "en.connectors.labels.tableEmptyDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"create-connector-flow-btn\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"create-connector-flow-btn\",\n\t\t\t\t\t\tchildren: en.connectors.create,\n\t\t\t\t\t\tonClick: onCreateConnectorFlow\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"view-all-connector-btn\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"view-all-connector-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.viewAllTypes,\n\t\t\t\t\t\tonClick: OnViewAllConnectorType\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Nothing to see here!\"" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? \"Please try returning to main page.\"" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-integration\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? \"Go to Integration\",\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? t({ id: \"id_nothing_here\", message: \"Nothing to see here!\" })" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? t({ id: \"id_return_home\", message: \"Please try returning to main page.\" })" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-mission-control\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? t({ id: \"id_goto_mc\", message: \"Go to Mission Control\" }),\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsageSub" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.subTitle}\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.message}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tchildren: drawdownUsage.noDrawdownUsage.contactUs,\n\t\t\t\t\t\tid: \"contactUs-btn\",\n\t\t\t\t\t\tonClick: () => toggleContactUsModalOpenState(),\n\t\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{supportPage.freeTrialDescription}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt2}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "supportPage.freeTrialTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "upgradeMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "No plan selected" + }, + { + "name": "details", + "type": "string", + "value": "Create or select a listed plan to view its details." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "Failed to fetch upgrade run" + }, + { + "name": "details", + "type": "string", + "value": "Run data could not be retrieved. It may have been deleted or does not exist." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "No scheduled upgrade runs" + }, + { + "name": "details", + "type": "string", + "value": "No upgrade runs returned. Open the create modal to schedule based off an existing Plan." + }, + { + "name": "actions", + "type": "array", + "value": "[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.drawdownUsageNotAvailable_subtext1" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.drawdownUsageNotAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsageSub" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "integrationStrings.sidebar.noSelection.title" + }, + { + "name": "details", + "type": "expression", + "value": "integrationStrings.sidebar.noSelection.details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "You do not have access to view this tab" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no connector deployment for this service!\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no collector for this service!\"" + } + ] + } + ] + }, + { + "componentName": "SolaceGridList", + "totalUsages": 30, + "usagesByMfe": { + "ep": 9, + "intg": 1, + "mc": 7, + "saas": 6, + "infra": 2, + "maas-ops-react": 5 + }, + "commonProps": [ + { + "name": "items", + "count": 30 + }, + { + "name": "rowMapping", + "count": 30 + }, + { + "name": "gridTemplate", + "count": 30 + }, + { + "name": "dataQa", + "count": 27 + }, + { + "name": "headers", + "count": 13 + }, + { + "name": "selectedItemId", + "count": 9 + }, + { + "name": "onSelection", + "count": 9 + }, + { + "name": "virtualizedListOption", + "count": 4 + }, + { + "name": "numOfGridListItemDisplayed", + "count": 4 + }, + { + "name": "indicatorVariantIdentifier", + "count": 3 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedMessagingServiceList" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getMessagingServiceRow" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "selectedMessagingService?.id" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelectMessagingService" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(10ch,auto) 1fr\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceListOfSelectedMEM" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderSchemaVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "schemaListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 52,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderEventVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "eventListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderAppVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "appVersionListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "entityVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "mapEntity" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "processEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(auto, auto) minmax(auto, auto) 16px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"appDomainGraphSearchResultsGrid_\" + entityType" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\theight: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,\n\t\t\t\t\t\titemHeight: SEARCH_LIST_ITEM_HEIGHT,\n\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "eventApiProductVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProductList" + }, + { + "name": "background", + "type": "string", + "value": "white" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "primitiveSchemaTypeOptions" + }, + { + "name": "onSelection", + "type": "variable", + "value": "onPrimitiveTypeChange" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getPrimitiveTypeRowComponents" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedPrimitiveType" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto" + }, + { + "name": "dataQa", + "type": "string", + "value": "primitiveTypes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedRelationshipVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "filteredAndSortedVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "affectedTransformations.map((transformation) => ({\n\t\t\t\t\t\t\tsource: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,\n\t\t\t\t\t\t\ttarget: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName\n\t\t\t\t\t\t}))" + }, + { + "name": "headers", + "type": "array", + "value": "[en.connectors.labels.source, en.connectors.labels.target]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item, index) => [\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.source}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.target}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"1fr 1fr\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "meshes" + }, + { + "name": "items", + "type": "variable", + "value": "meshes" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-meshes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "libraries" + }, + { + "name": "dataQa", + "type": "string", + "value": "libraries" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "90px 1fr 1fr 120px" + }, + { + "name": "items", + "type": "variable", + "value": "librarySummaries" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelection" + }, + { + "name": "headers", + "type": "array", + "value": "[\n\t\t\t\tt({ id: \"id_technology\", message: \"Technology\" }),\n\t\t\t\tt({ id: \"id_library\", message: \"Library\" }),\n\t\t\t\tview === \"language\" ? t({ id: \"id_protocol\", message: \"Protocol\" }) : t({ id: \"id_language\", message: \"Language\" }),\n\t\t\t\t\"\"\n\t\t\t]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item) => [\n\t\t\t\t\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{view === \"language\" ? item.protocol : item.languages}\n\t\t\t\t,\n\t\t\t\t\n\t\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t\tGet Started\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`ldap-groups-${id}`" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hostnames" + }, + { + "name": "dataQa", + "type": "string", + "value": "hostnames" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "hostnames" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "syslogs" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "clientCertAuths" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "profiles" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getServiceLimits() as LimitsData[]" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertMsgSpoolLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(true)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgSpoolLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sapAddonLimitsData" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "erpLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertConnectorLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorsLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "environments ? environments : []" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "withActionColumnMapping" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "isSidePanelOpen ? selectedId : 0" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 200px 200px 200px 24px" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentGridList" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "expression", + "value": "gridRowMaxVisible()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "_.concat(outOfSyncServices, syncedServices)" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 120px 24px" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "10" + }, + { + "name": "dataQa", + "type": "string", + "value": "out-of-sync-collectors" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "props": [ + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "expression", + "value": "datacenterQueries.data" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + }, + { + "name": "dataQa", + "type": "string", + "value": "datacenter-list" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "headers", + "type": "variable", + "value": "subnetHeaders" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "subnetGridTemplate" + }, + { + "name": "items", + "type": "expression", + "value": "cluster.virtualNetwork.subnets" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + }, + { + "name": "dataQa", + "type": "string", + "value": "subnet-list" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "250px 1fr 100px 50px" + }, + { + "name": "dataQa", + "type": "string", + "value": "platform-notification-contacts-list" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "dcTuningstate" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "items", + "type": "variable", + "value": "wanTuningDaemonSetStatus" + }, + { + "name": "headers", + "type": "array", + "value": "['Service Tier', 'Version', 'Status(D/C/R/U/A)', 'Up-To-Date Services', 'All Services']" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "4" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(100px, 150px) 100px minmax(50px, 150px) minmax(50px, 150px) minmax(120px, 1fr) " + }, + { + "name": "onSelection", + "type": "function", + "value": "(item) => {\n setSelectedItemId(item.serviceTier as ServiceTier)\n setActiveTabFeature(WanTuningFeatures.CHECK_DAEMON_SET_POD)\n dispatch(clearDaemonSetPodStatus())\n }" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedItemId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "service-tier-grid-list" + }, + { + "name": "items", + "type": "variable", + "value": "wanTuningPodStatus" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "200px 90px 400px 400px 400px" + }, + { + "name": "headers", + "type": "array", + "value": "[\"Pod Name\", \"Pod Status\", \"Attached Node\", \"Message Broker Pod\", \"Recent Events\"]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "tracingProfile" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "10" + }, + { + "name": "dataQa", + "type": "string", + "value": "tracing-destinations-table" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(5px, 15px) minmax(120px, 300px) minmax(120px, 1fr) minmax(120px, 150px) 150px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "noItemsFound" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "emptyRowMapping" + }, + { + "name": "dataQa", + "type": "string", + "value": "empty-tracing-destinations-table" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr" + } + ] + } + ] + }, + { + "componentName": "SolaceRadio", + "totalUsages": 28, + "usagesByMfe": { + "ep": 13, + "intg": 4, + "mc": 5, + "saas": 3, + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "label", + "count": 28 + }, + { + "name": "name", + "count": 28 + }, + { + "name": "value", + "count": 26 + }, + { + "name": "dataQa", + "count": 16 + }, + { + "name": "key", + "count": 14 + }, + { + "name": "disabled", + "count": 8 + }, + { + "name": "id", + "count": 7 + }, + { + "name": "subText", + "count": 5 + }, + { + "name": "checked", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Existing Application\"" + }, + { + "name": "name", + "type": "string", + "value": "existingApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingApplication" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"New Application\"" + }, + { + "name": "name", + "type": "string", + "value": "newApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newApplication" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "key", + "type": "expression", + "value": "`messagingService-${item.id}`" + }, + { + "name": "label", + "type": "jsx", + "value": " handleServiceAccordionControl(item.id)}\n\t\t\t\t\t\t\t\tdetails={renderAccordionDetail(item)}\n\t\t\t\t\t\t\t\tsummary={\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t/>" + }, + { + "name": "name", + "type": "expression", + "value": "item.id" + }, + { + "name": "value", + "type": "expression", + "value": "item.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`selectResultTypeOption_${resultType}`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{auditResultTypeCount}\n\t\t\t\t\t\t\t\t\t{AUDIT_RESULT_CHIPS[resultType]}\n\t\t\t\t\t\t\t\t\t{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "name", + "type": "variable", + "value": "resultType" + }, + { + "name": "value", + "type": "variable", + "value": "resultType" + }, + { + "name": "disabled", + "type": "expression", + "value": "auditResultTypeCount === 0 || isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === pageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "name", + "type": "variable", + "value": "key" + }, + { + "name": "value", + "type": "variable", + "value": "key" + }, + { + "name": "label", + "type": "expression", + "value": "brokerTypeLabel[key]" + }, + { + "name": "disabled", + "type": "expression", + "value": "!allowChangeBrokerType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`brokerType[${key}]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.json" + }, + { + "name": "name", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "string", + "value": "json" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.yaml" + }, + { + "name": "name", + "type": "string", + "value": "yaml" + }, + { + "name": "value", + "type": "string", + "value": "yaml" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + }, + { + "name": "subText", + "type": "expression", + "value": "option.subText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "value" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "label", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`schemaType[${value}]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Add to Existing Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "existingConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"existingConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingConsumer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Create New Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "newConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"newConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newConsumer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`\"endpointsSelector\"[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`systemType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`serviceType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "nonprod" + }, + { + "name": "id", + "type": "string", + "value": "nonprod" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "nonProductionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.nonProdSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "prod" + }, + { + "name": "id", + "type": "string", + "value": "prod" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "productionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.prodSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === selectedPageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Upgrade" + }, + { + "name": "name", + "type": "string", + "value": "Upgrade" + }, + { + "name": "value", + "type": "expression", + "value": "CollectorModificationAction.UPGRADE" + }, + { + "name": "dataQa", + "type": "string", + "value": "upgrade" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Rollback" + }, + { + "name": "name", + "type": "string", + "value": "Rollback" + }, + { + "name": "value", + "type": "expression", + "value": "CollectorModificationAction.ROLLBACK" + }, + { + "name": "dataQa", + "type": "string", + "value": "rollback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Redeploy" + }, + { + "name": "name", + "type": "string", + "value": "Redeploy" + }, + { + "name": "value", + "type": "expression", + "value": "CollectorModificationAction.REDEPLOY" + }, + { + "name": "dataQa", + "type": "string", + "value": "redeploy" + } + ] + } + ] + }, + { + "componentName": "SolaceListItem", + "totalUsages": 25, + "usagesByMfe": { + "ep": 10, + "intg": 1, + "saas": 5, + "maas-ops-react": 9 + }, + "commonProps": [ + { + "name": "sx", + "count": 12 + }, + { + "name": "divider", + "count": 8 + }, + { + "name": "key", + "count": 3 + }, + { + "name": "data-qa", + "count": 1 + }, + { + "name": "disablePadding", + "count": 1 + }, + { + "name": "disableGutters", + "count": 1 + }, + { + "name": "secondaryAction", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "entity.id" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`entityId-${entity.id}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingLeft: \"48px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ height: theme.spacing(sampleSetup ? 7 : 9) }" + }, + { + "name": "secondaryAction", + "type": "jsx", + "value": "{getSecondaryAction()}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tborderTop: index === 0 ? 0 : \"1px solid\",\n\t\t\t\t\t\t\tborderColor: theme.palette.grey[300],\n\t\t\t\t\t\t\tpl: field?.parentId ? getIndentationLevel(field?.parentId) : 3\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ display: \"flex\", alignItems: \"flex-start\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "resource.profile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`hidden-${index}-${email}`" + } + ] + } + ] + }, + { + "componentName": "SolaceSidePanelLayout", + "totalUsages": 23, + "usagesByMfe": { + "ep": 18, + "intg": 1, + "mc": 1, + "saas": 1, + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "showSidePanel", + "count": 23 + }, + { + "name": "sidePanelWidth", + "count": 23 + }, + { + "name": "sidePanelContent", + "count": 23 + }, + { + "name": "sidePanelPosition", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedMem" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedMem ? (\n\t\t\t\t\t\t undefined}\n\t\t\t\t\t\t\tuserMap={entityCreateUpdateUsersMap}\n\t\t\t\t\t\t/>\n\t\t\t\t\t) : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "394" + }, + { + "name": "sidePanelPosition", + "type": "expression", + "value": "SolacePanelPosition.LEFT" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanelContent()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEnum" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApiProduct" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedSchema" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedApplication" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApi" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEvent" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedDomain" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!highlightedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!isEmpty(selectedRowIds)" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "showPanel" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "480" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedLibrary ? (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{selectedLibrary.displayName}\n\t\t\t\t\t\t\t handleSelectLibrary(null)}>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tGet Started\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "panelOpen" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanelMessage" + }, + { + "name": "sidePanelWidth", + "type": "variable", + "value": "MAX_WIDTH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "props": [ + { + "name": "sidePanelWidth", + "type": "number", + "value": "500" + }, + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelContent", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx", + "props": [ + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRowId" + }, + { + "name": "sidePanelContent", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "componentName": "SolacePageHeader", + "totalUsages": 22, + "usagesByMfe": { + "ep": 4, + "intg": 6, + "mc": 5, + "saas": 2, + "infra": 1, + "maas-ops-react": 4 + }, + "commonProps": [ + { + "name": "title", + "count": 20 + }, + { + "name": "breadcrumbs", + "count": 16 + }, + { + "name": "environment", + "count": 10 + }, + { + "name": "borderTop", + "count": 10 + }, + { + "name": "actions", + "count": 9 + }, + { + "name": "subTitle", + "count": 5 + }, + { + "name": "release", + "count": 3 + }, + { + "name": "actionMenu", + "count": 3 + }, + { + "name": "tabs", + "count": 3 + }, + { + "name": "...", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/home/Home.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "overrideProps" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/home/Home.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "screenPath" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal AI Designer" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]" + }, + { + "name": "release", + "type": "string", + "value": "EXPERIMENTAL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "environment", + "type": "expression", + "value": "environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "actions", + "type": "expression", + "value": "(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actionMenu", + "type": "jsx", + "value": ",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.connectorFlows" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.agents.agents" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_event_meshes\", message: \"Event Meshes\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_service_details\", message: \"Service Details\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "service?.name ?? \"...\"" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]" + }, + { + "name": "tabs", + "type": "jsx", + "value": " {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_services\", message: \"Services\" })" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_compare_services\", message: \"Compare Services\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "subTitle", + "type": "variable", + "value": "subTitle" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Page Title" + }, + { + "name": "environment", + "type": "jsx", + "value": "" + }, + { + "name": "borderTop", + "type": "variable", + "value": "bgColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.accountDetails.userSettings.settings" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Cluster\"" + }, + { + "name": "subTitle", + "type": "expression", + "value": "isPending ? \"...\" : cluster?.name" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n { title: \"Clusters\", link: \"/clusters\" },\n { title: \"Cluster Details\", link: `/clusters/${clusterId}/status`, current: true, progress: isPending },\n ]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "!!actionMenuItems && (\n ,\n }}\n key=\"cloudProviderLink\" >\n \n )" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Upgrade Plans" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t handleModal()}>\n\t\t\t\t\tCreate Plan\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Upgrade Run${runId ? `: ${runId}` : \"\"}`" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t
\n\t\t\t\t\t\t{renderButton(\"Resume\", () => handleAction(resumeUpgradeRun), \"text\", status === \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Pause\", () => openModal(\"pause\"), \"text\", status !== \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Cancel\", () => openModal(\"cancel\"), \"outline\", true)}\n\t\t\t\t\t
\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Upgrades" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t handlePlanRoute()} variant=\"text\" dataQa=\"create\">\n\t\t\t\t\tManage Upgrade Plans\n\t\t\t\t,\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "integrationStrings.mainPage.pageTitle" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "componentName": "SolaceTextArea", + "totalUsages": 22, + "usagesByMfe": { + "ep": 10, + "intg": 1, + "mc": 1, + "saas": 9, + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 22 + }, + { + "name": "value", + "count": 19 + }, + { + "name": "onChange", + "count": 19 + }, + { + "name": "dataQa", + "count": 19 + }, + { + "name": "maxLength", + "count": 14 + }, + { + "name": "label", + "count": 14 + }, + { + "name": "helperText", + "count": 13 + }, + { + "name": "hasErrors", + "count": 12 + }, + { + "name": "resizable", + "count": 7 + }, + { + "name": "onBlur", + "count": 5 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`postRequestTargetValue`" + }, + { + "name": "value", + "type": "expression", + "value": "queueBindingConfiguration.postRequestTarget" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`postRequestTargetValue`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${prefix}Value`" + }, + { + "name": "value", + "type": "variable", + "value": "displayedHeaderValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${prefix}Value`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderValue" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[name]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "!isDuplicateVersion" + }, + { + "name": "maxLength", + "type": "expression", + "value": "nameMaxLength + 1" + }, + { + "name": "minRows", + "type": "number", + "value": "1" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "550px" + }, + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Revocation\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Decline\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "disabled", + "type": "expression", + "value": "reviewDecision !== ReviewDecision.declined" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Comment" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "comment" + }, + { + "name": "value", + "type": "expression", + "value": "item?.comments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleOnCommentChange(e, item)" + }, + { + "name": "label", + "type": "expression", + "value": "\"Comment\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "description ?? \"emptyDescription\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Description\"" + }, + { + "name": "value", + "type": "variable", + "value": "description" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetDescription(e.value ?? \"\");\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tsetDescription(description.trim());\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"description\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "10000" + }, + { + "name": "placeholder", + "type": "expression", + "value": "placeholder ?? \"\"" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "maxLength", + "type": "expression", + "value": "props.schema.maxLength" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textArea`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "limitChangeDetails" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.details" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onDetailsChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"limitChangeDetails\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "1500" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "environmentDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvDescriptionChange" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionErrorText()" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasDescError" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDescriptionTestId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "3000" + }, + { + "name": "label", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.details" + }, + { + "name": "name", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setContactUseMessage(value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!validateText(contactUseMessage) ? false : true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!validateText(contactUseMessage) ? \"\" : drawdownUsage.noDrawdownUsage.containsScript" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "userGroupsDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGDescriptionChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsDescriptionQa" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionCount()" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "name", + "type": "string", + "value": "additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalCommentsText(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalCommentsText" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsTextField" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "additionalCommentsText.length >= 255" + }, + { + "name": "helperText", + "type": "expression", + "value": "additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "descriptionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionError()" + }, + { + "name": "name", + "type": "string", + "value": "descriptionField" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "value", + "type": "variable", + "value": "descriptionValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDescriptionFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "5000" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageIssue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setRequestDetailsTexts(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "value", + "type": "variable", + "value": "requestDetailsTexts" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "width", + "type": "string", + "value": "40rem" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalComments(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalComments" + }, + { + "name": "width", + "type": "string", + "value": "30vw" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"sendRequest\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "1000" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.privateRegions.labels.newRequestDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setTicketBody(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + } + ] + }, + { + "componentName": "SolaceCodeEditor", + "totalUsages": 20, + "usagesByMfe": { + "ep": 12, + "intg": 1, + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "mode", + "count": 20 + }, + { + "name": "value", + "count": 20 + }, + { + "name": "readOnly", + "count": 18 + }, + { + "name": "dataQa", + "count": 16 + }, + { + "name": "id", + "count": 14 + }, + { + "name": "expandable", + "count": 8 + }, + { + "name": "helperText", + "count": 6 + }, + { + "name": "hasErrors", + "count": 6 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "hasWarnings", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "id", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "item.value ? JSON.stringify(jsonValue, null, 2) : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersion?.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`dataCollected[${row.id}]`" + }, + { + "name": "value", + "type": "expression", + "value": "row.data" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dataCollected[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "runtimeAttributes || designerAttributes" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaBody" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaReferences" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "observedConfiguration.value" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => setObservedConfiguration({ name, value })" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationName" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error?.message" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "observedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t// onChange will break this because it will compete with the other debounced error flow\n\t\t\t\t\t\t\t\thandleChangeCustomConfiguration(value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === Mode.template" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersionRefetched.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "expression", + "value": "!shownInCatalogDetailContainer" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion[content]\");\n\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isImportedSchemaVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "value", + "type": "variable", + "value": "prettifiedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion.content\");\n\t\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "id", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(servicePackage, null, 2)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "detailsDialog.org.organizationId" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(detailsDialog.org, null, 2)" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(details, null, 2)" + }, + { + "name": "helperText", + "type": "jsx", + "value": "" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "details?.isError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(\n\t\t\t\t\t\t\t\tinfrastructureRequests[`${deleteConfirmation.infrastructureId}-disable`].error,\n\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t2\n\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx", + "props": [ + { + "name": "mode", + "type": "string", + "value": "protobuf" + }, + { + "name": "value", + "type": "expression", + "value": "currentConfig.config" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(configs?.data, null, 2)" + }, + { + "name": "helperText", + "type": "jsx", + "value": "" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "configs?.isError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(infrastructureRequests[errorDetails].error, null, 2)" + } + ] + } + ] + }, + { + "componentName": "SolaceList", + "totalUsages": 19, + "usagesByMfe": { + "ep": 7, + "intg": 5, + "saas": 2, + "maas-ops-react": 5 + }, + "commonProps": [ + { + "name": "sx", + "count": 12 + }, + { + "name": "disablePadding", + "count": 5 + }, + { + "name": "key", + "count": 4 + }, + { + "name": "dense", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginTop: \"-10px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\"&& .Mui-selected\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20,\n\t\t\t\t\t\t\t\tborderRight: \"0\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"&& .Mui-selected:hover\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`payloadSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`constantSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`headerSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`defaultHeaderSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ li: { listStyleType: \"disc\" } }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ p: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ justifyContent: \"space-between\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ justifyContent: \"space-between\", display: \"flex\", flexDirection: \"column\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [] + } + ] + }, + { + "componentName": "SolaceEnvironmentChip", + "totalUsages": 19, + "usagesByMfe": { + "ep": 9, + "intg": 4, + "mc": 5, + "saas": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 12 + }, + { + "name": "...", + "count": 11 + }, + { + "name": "bgColor", + "count": 8 + }, + { + "name": "fgColor", + "count": 8 + }, + { + "name": "icon", + "count": 8 + }, + { + "name": "dataQa", + "count": 7 + }, + { + "name": "maxWidth", + "count": 4 + }, + { + "name": "onDelete", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "maxWidth" + }, + { + "name": "onDelete", + "type": "expression", + "value": "onDelete || null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "context.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "contextOption.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "dialogState.name || \"Environment Name\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + } + ] + }, + { + "componentName": "SolaceEnvironmentLabel", + "totalUsages": 18, + "usagesByMfe": { + "ep": 3, + "intg": 6, + "mc": 2, + "saas": 6, + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 16 + }, + { + "name": "fgColor", + "count": 16 + }, + { + "name": "bgColor", + "count": 16 + }, + { + "name": "icon", + "count": 16 + }, + { + "name": "variant", + "count": 7 + }, + { + "name": "...", + "count": 2 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "standard" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[environment]" + }, + { + "name": "...", + "type": "spread", + "value": "environmentOption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "title" + }, + { + "name": "label", + "type": "expression", + "value": "environment.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[environment.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "env.name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "env.fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "env.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "envOption.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "envOption.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "envOption.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "envOption.icon" + } + ] + } + ] + }, + { + "componentName": "SolaceBackDrop", + "totalUsages": 17, + "usagesByMfe": { + "intg": 3, + "saas": 7, + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "open", + "count": 17 + }, + { + "name": "data-qa", + "count": 3 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SuspenseLoader.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "connectorDetailsLoading || connectorMetricsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SuspenseLoader.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "saveInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isTokensListLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "isPageLoading || createTokenIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "tokenIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loadingOrgDetails" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loadingInfrastructures" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "isLoading && isLoadingMicroIntegrations && isLoadingAgents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "datacenterLoading" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + } + ] + } + ] + }, + { + "componentName": "SolaceRadioGroup", + "totalUsages": 16, + "usagesByMfe": { + "ep": 9, + "intg": 2, + "mc": 3, + "saas": 1, + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 16 + }, + { + "name": "onChange", + "count": 16 + }, + { + "name": "value", + "count": 15 + }, + { + "name": "id", + "count": 13 + }, + { + "name": "inline", + "count": 9 + }, + { + "name": "dataQa", + "count": 4 + }, + { + "name": "hasErrors", + "count": 3 + }, + { + "name": "helperText", + "count": 3 + }, + { + "name": "required", + "count": 3 + }, + { + "name": "label", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetIsNewApplication(e.value === \"true\");\n\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "isNewApplication ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "radioGroupName ?? \"customhookRadioGroup\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceSelectorRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceRadioGroup" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetSelectedMessagingService(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAuditResultTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "auditResultTypeToImport" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "value", + "type": "variable", + "value": "brokerType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetBrokerType(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.format" + }, + { + "name": "name", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "inline", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetFormat(e.value as SupportedAsyncApiDownloadFormat);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "stackLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "format" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "review" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReviewChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaInfo?.schemaType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetMode(e.value);\n\t\t\t\t\t\t\tresetField(\"consumerId\");\n\t\t\t\t\t\t\tresetField(\"consumerName\");\n\t\t\t\t\t\t\tresetField(\"consumerType\");\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "mode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceType" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceType" + }, + { + "name": "value", + "type": "variable", + "value": "serviceType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceTypeChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "value", + "type": "variable", + "value": "endpointsSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemType" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "string", + "value": "systemType" + }, + { + "name": "value", + "type": "variable", + "value": "systemType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSystemTypeChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "isProduction" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "getIsProductionValue(dialogState.isProduction)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvProductionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "collectorRadioGroup" + }, + { + "name": "value", + "type": "variable", + "value": "action" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => dispatch(setAction(event.value))" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + } + ] + }, + { + "componentName": "SolaceDrawer", + "totalUsages": 16, + "usagesByMfe": { + "ep": 15, + "saas": 1 + }, + "commonProps": [ + { + "name": "open", + "count": 16 + }, + { + "name": "width", + "count": 16 + }, + { + "name": "top", + "count": 16 + }, + { + "name": "height", + "count": 15 + }, + { + "name": "resizable", + "count": 15 + }, + { + "name": "maxWidth", + "count": 15 + }, + { + "name": "onResizeDone", + "count": 14 + }, + { + "name": "minWidth", + "count": 14 + }, + { + "name": "anchor", + "count": 3 + }, + { + "name": "offset", + "count": 3 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL" + }, + { + "name": "top", + "type": "expression", + "value": "\"50px\"" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + }, + { + "name": "offset", + "type": "expression", + "value": "\"0px\"" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 100px)`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SEARCH_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "!!rowDetails" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "string", + "value": "10.65%" + }, + { + "name": "width", + "type": "number", + "value": "400" + }, + { + "name": "maxWidth", + "type": "number", + "value": "500" + } + ] + } + ] + }, + { + "componentName": "SolaceBreadcrumb", + "totalUsages": 16, + "usagesByMfe": { + "intg": 4, + "mc": 3, + "saas": 2, + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "paths", + "count": 16 + }, + { + "name": "maxItems", + "count": 8 + }, + { + "name": "onRouteClick", + "count": 8 + }, + { + "name": "dataQa", + "count": 6 + }, + { + "name": "id", + "count": 5 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: \"Micro-Integrations\", link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: `/${id}`,\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "paths", + "type": "expression", + "value": "breadcrumbsPaths2()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: en.connectors.connectorFlows, link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: \"editV2\",\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_service_authentications\", message: \"Service Authentications\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_cert_auths\", message: \"Certificate Authorities\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_client_profiles\", message: \"Client Profiles\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/account-details/user-groups\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.userManagement}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.groupManagement}`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "NotificationLinksBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(route) => history.push(route)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/notifications\",\n\t\t\t\t\t\t\ttitle: en.notifications.notifications\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: notificationTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "onRouteClick", + "type": "variable", + "value": "onBreadcumbClick" + }, + { + "name": "paths", + "type": "variable", + "value": "customerDetailsPath" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "onRouteClick", + "type": "variable", + "value": "onBreadcumbClick" + }, + { + "name": "paths", + "type": "variable", + "value": "customerDetailsPath" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "3" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Environments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "3" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Connector Deployments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "4" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + service?.orgId,\n\t\t\t\t\t\t\ttitle: service?.orgId as string\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: `/organizations/${service?.orgId}/distributed-tracing`,\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing Collector Details\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "3" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + } + ] + }, + { + "componentName": "SolaceErrorBox", + "totalUsages": 13, + "usagesByMfe": { + "ep": 1, + "mc": 5, + "saas": 2, + "infra": 1, + "maas-ops-react": 4 + }, + "commonProps": [ + { + "name": "message", + "count": 13 + }, + { + "name": "showCloseButton", + "count": 2 + }, + { + "name": "onClose", + "count": 2 + }, + { + "name": "showErrorIcon", + "count": 1 + }, + { + "name": "data-qa", + "count": 1 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_disable_error\", message: \"An error occurred while disabling Distributed Tracing, please try again.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_failed_conf_collector\", message: \"Failed to configure and deploy the collector. For support, contact Solace.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_profile_not_created\", message: \"This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_no_connection\", message: \"Cannot retrieve the telemetry profile due to lack of connection.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_dt_tracing_dest_not_defined\",\n\t\t\t\t\t\t\tmessage: \"A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed.\"\n\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "showErrorIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setErrorMessage(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageWhileSavingSettings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportErrorBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "customers.accIdNotFound(customerId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "customers.aggregationIdNotFound(aggregationId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Unable to retrieve organization details from monitoring. Please try refreshing the page.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Unable to retrieve all service details from monitoring. Please try refreshing the page.\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "fetchServiceErrorBox" + } + ] + } + ] + }, + { + "componentName": "SolacePicker", + "totalUsages": 13, + "usagesByMfe": { + "ep": 11, + "saas": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 13 + }, + { + "name": "onChange", + "count": 13 + }, + { + "name": "value", + "count": 13 + }, + { + "name": "variant", + "count": 13 + }, + { + "name": "icons", + "count": 12 + }, + { + "name": "dataQa", + "count": 11 + }, + { + "name": "numOfItemsPerRow", + "count": 11 + }, + { + "name": "label", + "count": 11 + }, + { + "name": "iconKeyOrderedList", + "count": 10 + }, + { + "name": "inlineLabel", + "count": 9 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customColour-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "icons", + "type": "variable", + "value": "entityColourBlocks" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customIconLogo-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "\"No Results Found\"" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "themePicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select Color Theme\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "themePicker" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "color" + }, + { + "name": "label", + "type": "string", + "value": "Color" + }, + { + "name": "variant", + "type": "string", + "value": "colors" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.color" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvColorChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "icon" + }, + { + "name": "label", + "type": "string", + "value": "Icon" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.icon" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvIconChange" + }, + { + "name": "icons", + "type": "variable", + "value": "Icons24" + } + ] + } + ] + }, + { + "componentName": "SolaceSearchAndFilter", + "totalUsages": 13, + "usagesByMfe": { + "ep": 8, + "intg": 2, + "infra": 1, + "maas-ops-react": 2 + }, + "commonProps": [ + { + "name": "name", + "count": 13 + }, + { + "name": "value", + "count": 13 + }, + { + "name": "onChange", + "count": 13 + }, + { + "name": "type", + "count": 13 + }, + { + "name": "id", + "count": 12 + }, + { + "name": "placeholder", + "count": 11 + }, + { + "name": "dataQa", + "count": 10 + }, + { + "name": "width", + "count": 10 + }, + { + "name": "onClearAll", + "count": 4 + }, + { + "name": "onFocus", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "searchFieldPlaceholderText || \"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onFocus", + "type": "variable", + "value": "handleOnFocus" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphEmpty || disableActionToChangeGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "textboxPlaceholderText ?? \"Search\"" + }, + { + "name": "width", + "type": "variable", + "value": "searchTextBoxWidth" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMeshName" + }, + { + "name": "id", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "value", + "type": "variable", + "value": "memNameFilter" + }, + { + "name": "width", + "type": "string", + "value": "500px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "name", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "value", + "type": "variable", + "value": "filterString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByName" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationFilterByNameField" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "name", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "label", + "type": "variable", + "value": "selectApplicationVersionLabel" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by application name" + }, + { + "name": "value", + "type": "variable", + "value": "searchedApplicationName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSearchedApplicationName(e.value)" + }, + { + "name": "onClearAll", + "type": "function", + "value": "() => setSearchedApplicationName(\"\")" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "width", + "type": "expression", + "value": "\"480px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "filterbyName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "\"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "variable", + "value": "searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.connectors.searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchBox" + }, + { + "name": "name", + "type": "string", + "value": "searchBox" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchBox" + }, + { + "name": "width", + "type": "string", + "value": "400px" + }, + { + "name": "value", + "type": "variable", + "value": "searchTerm" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleSearchField(event.value)" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchAndFilterID" + }, + { + "name": "name", + "type": "string", + "value": "searchByInfrastructureId" + }, + { + "name": "value", + "type": "variable", + "value": "searchInfrastructureId" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\tsetSearchInfrastructureId(event.value);\n\t\t\t\t\t}" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByInfrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "organizationNameFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "integrationStrings.organizations.filters.nameFilter.placeholder" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.FILTER" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameFilterChange" + }, + { + "name": "width", + "type": "string", + "value": "425px" + } + ] + } + ] + }, + { + "componentName": "SolaceToggleButtonGroup", + "totalUsages": 10, + "usagesByMfe": { + "ep": 7, + "mc": 1, + "saas": 1, + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "options", + "count": 10 + }, + { + "name": "onChange", + "count": 10 + }, + { + "name": "activeValue", + "count": 10 + }, + { + "name": "dataQa", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx", + "props": [ + { + "name": "options", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Docker\",\n\t\t\t\t\tvalue: EmaInstallationTypes.docker,\n\t\t\t\t\tdataQa: \"ema-installation-type-docker\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Java\",\n\t\t\t\t\tvalue: EmaInstallationTypes.java,\n\t\t\t\t\tdataQa: \"ema-installation-type-java\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "options", + "type": "expression", + "value": "getFilterOptions()" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "FILTER_OPTIONS" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "viewOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleToggleView" + }, + { + "name": "activeValue", + "type": "variable", + "value": "selectedView" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "userManagementToggle" + }, + { + "name": "options", + "type": "variable", + "value": "TAB_OPTIONS" + }, + { + "name": "onChange", + "type": "variable", + "value": "onToggleChangeHandler" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterTriggerType" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByTriggerType" + }, + { + "name": "options", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"All\",\n\t\t\t\t\t\t\t\t\tvalue: \"all\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Customer\",\n\t\t\t\t\t\t\t\t\tvalue: \"customer\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"System\",\n\t\t\t\t\t\t\t\t\tvalue: \"system\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + } + ] + }, + { + "componentName": "SolaceTag", + "totalUsages": 10, + "usagesByMfe": { + "ep": 4, + "maas-ops-react": 6 + }, + "commonProps": [ + { + "name": "label", + "count": 10 + }, + { + "name": "fillColor", + "count": 8 + }, + { + "name": "labelColor", + "count": 8 + }, + { + "name": "variant", + "count": 3 + }, + { + "name": "clickable", + "count": 2 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"ENABLED\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"DISABLED\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "TaskStatus.COMPLETED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "TaskStatus.FAILED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${row.daemonSetStatus.desired}/${row.daemonSetStatus.currentScheduled}/${row.daemonSetStatus.ready}/${row.daemonSetStatus.upToDate}/${row.daemonSetStatus.available}`" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "(allEleInArrayAreSame(Object.values(row.daemonSetStatus))) ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "(allEleInArrayAreSame(Object.values(row.daemonSetStatus)))? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`podStatus-${index}`" + }, + { + "name": "label", + "type": "expression", + "value": "row.podStatus" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL" + } + ] + } + ] + }, + { + "componentName": "SolaceStackLabel", + "totalUsages": 10, + "usagesByMfe": { + "saas": 2, + "maas-ops-react": 8 + }, + "commonProps": [ + { + "name": "id", + "count": 10 + }, + { + "name": "required", + "count": 6 + }, + { + "name": "bold", + "count": 5 + }, + { + "name": "htmlForId", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`environment-type-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`isProduction`" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!!required" + }, + { + "name": "id", + "type": "expression", + "value": "id ?? name.toLowerCase()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "bold", + "type": "variable", + "value": "bold" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "metadata" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "currentDatacenterIdField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "sourceDatacenterIdField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + } + ] + }, + { + "componentName": "SolaceSelectAutocompleteResponsiveTags", + "totalUsages": 8, + "usagesByMfe": { + "ep": 7, + "intg": 1 + }, + "commonProps": [ + { + "name": "containerWidth", + "count": 8 + }, + { + "name": "tags", + "count": 8 + }, + { + "name": "tagMaxWidth", + "count": 8 + }, + { + "name": "overflowIndicatorLabel", + "count": 8 + }, + { + "name": "overflowIndicatorLabelSingular", + "count": 8 + }, + { + "name": "onDelete", + "count": 8 + }, + { + "name": "dataQa", + "count": 8 + }, + { + "name": "numOfRowsToShow", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.requestor}-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh]" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventMeshSearchSelect-tags\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "300" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "\"200px\"" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + } + ] + }, + { + "componentName": "SolaceLearningButton", + "totalUsages": 7, + "usagesByMfe": { + "ep": 7 + }, + "commonProps": [ + { + "name": "variant", + "count": 7 + }, + { + "name": "onClick", + "count": 7 + }, + { + "name": "dataQa", + "count": 5 + }, + { + "name": "isDisabled", + "count": 4 + }, + { + "name": "startIcon", + "count": 3 + }, + { + "name": "endIcon", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-outline\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!showLoadSampleButton" + }, + { + "name": "startIcon", + "type": "expression", + "value": "!showLoadSampleButton && " + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickLoadSamples" + }, + { + "name": "dataQa", + "type": "string", + "value": "loadSampleDataButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "ExploreOnMyOwnLink" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tdismissableCallback();\n\t\t\t\t\t\t\t\t\tMixpanel.track(\"Element Click\", { \"element-id\": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExploreSample" + }, + { + "name": "dataQa", + "type": "string", + "value": "exploreSampleButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "redirectToVideos" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!email" + }, + { + "name": "variant", + "type": "string", + "value": "dark-outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickInviteUsers" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-call-to-action\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + } + ] + }, + { + "componentName": "SolaceResponsiveItemList", + "totalUsages": 7, + "usagesByMfe": { + "ep": 5, + "intg": 2 + }, + "commonProps": [ + { + "name": "containerWidth", + "count": 7 + }, + { + "name": "items", + "count": 7 + }, + { + "name": "showAll", + "count": 7 + }, + { + "name": "numOfRowsToShow", + "count": 5 + }, + { + "name": "onItemsRendered", + "count": 5 + }, + { + "name": "onItemsOverflow", + "count": 5 + }, + { + "name": "onItemsOverflowIndicatorClick", + "count": 5 + }, + { + "name": "dataQa", + "count": 5 + }, + { + "name": "columnGap", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t option.value === env.id)}\n\t\t\t\t\t\t\t\t\thasTooltip={true}\n\t\t\t\t\t\t\t\t\tdataQa={env.id}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t};\n\t\t\t\t\t})" + }, + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})" + }, + { + "name": "columnGap", + "type": "number", + "value": "8" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + }, + { + "name": "containerWidth", + "type": "expression", + "value": "containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + } + ] + }, + { + "componentName": "SolaceLearningBanner", + "totalUsages": 7, + "usagesByMfe": { + "maas-ops-react": 7 + }, + "commonProps": [ + { + "name": "backgroundColor", + "count": 4 + }, + { + "name": "title", + "count": 3 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "showCloseButton", + "count": 1 + }, + { + "name": "onClose", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.common.white" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Plan Description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.messages.title" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.primary.contrastText" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard" + } + ] + } + ] + }, + { + "componentName": "SolaceToasts", + "totalUsages": 6, + "usagesByMfe": { + "ep": 1, + "intg": 1, + "infra": 1, + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "message", + "count": 6 + }, + { + "name": "open", + "count": 6 + }, + { + "name": "onClose", + "count": 6 + }, + { + "name": "severity", + "count": 5 + }, + { + "name": "action", + "count": 2 + }, + { + "name": "autoDismiss", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "toast.message" + }, + { + "name": "open", + "type": "expression", + "value": "toast.open" + }, + { + "name": "action", + "type": "expression", + "value": "toast.action" + }, + { + "name": "severity", + "type": "expression", + "value": "toast.severity" + }, + { + "name": "autoDismiss", + "type": "expression", + "value": "toast.autoDismiss" + }, + { + "name": "onClose", + "type": "variable", + "value": "removeToast" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "severity", + "type": "expression", + "value": "severity as SolaceToastsProps[\"severity\"]" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseSnackbar" + }, + { + "name": "action", + "type": "expression", + "value": "action as SolaceToastsProps[\"action\"]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "showToast.message" + }, + { + "name": "severity", + "type": "expression", + "value": "showToast.severity" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowToast(null)" + }, + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "severity", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Rerun Monitoring Job Failed" + }, + { + "name": "open", + "type": "variable", + "value": "showRerunAutomationErrorToast" + }, + { + "name": "onClose", + "type": "function", + "value": "() => dispatch(hideRerunAutomationErrorToast())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "showToast" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowToast(false)" + }, + { + "name": "message", + "type": "variable", + "value": "toastMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "severity", + "type": "string", + "value": "error" + }, + { + "name": "open", + "type": "variable", + "value": "showErrorToast" + }, + { + "name": "onClose", + "type": "function", + "value": "() => dispatch(closeErrorToast())" + } + ] + } + ] + }, + { + "componentName": "SolaceCategorizedSearch", + "totalUsages": 6, + "usagesByMfe": { + "ep": 6 + }, + "commonProps": [ + { + "name": "name", + "count": 6 + }, + { + "name": "searchValue", + "count": 6 + }, + { + "name": "onSearchValueChange", + "count": 6 + }, + { + "name": "selectedCategoryValue", + "count": 6 + }, + { + "name": "onCategoryChange", + "count": 6 + }, + { + "name": "categoryOptions", + "count": 6 + }, + { + "name": "searchInputWidth", + "count": 5 + }, + { + "name": "equalButtonWidth", + "count": 4 + }, + { + "name": "categoryOptionsWidth", + "count": 4 + }, + { + "name": "onSearchInputFocus", + "count": 3 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconCategorizedSearch\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChanged" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "expression", + "value": "entityFilterOptions.length > 0 ? entityFilterOptions : []" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedEntityTypeFilter" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleEntityTypeFilterChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "searchInputWidth", + "type": "expression", + "value": "\"280px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "tabOptions" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleTabChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + } + ] + } + ] + }, + { + "componentName": "SolacePopover", + "totalUsages": 6, + "usagesByMfe": { + "intg": 6 + }, + "commonProps": [ + { + "name": "maxWidth", + "count": 6 + }, + { + "name": "title", + "count": 6 + }, + { + "name": "placement", + "count": 5 + }, + { + "name": "id", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "full" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + } + ] + }, + { + "componentName": "SolaceListItemButton", + "totalUsages": 5, + "usagesByMfe": { + "ep": 5 + }, + "commonProps": [ + { + "name": "selected", + "count": 5 + }, + { + "name": "onClick", + "count": 5 + }, + { + "name": "sx", + "count": 3 + }, + { + "name": "divider", + "count": 2 + }, + { + "name": "disableGutters", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "!currentTab || currentTab === \"get-started\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.getStarted);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "currentTab === \"acme-retail-sample\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.acmeRetail);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceQueue" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceClientProfileName" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tbackground: theme.palette.ux.primary.text.w10,\n\t\t\t\t\t\t\theight: \"100%\",\n\t\t\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t\t\t\tpaddingTop: \"0\",\n\t\t\t\t\t\t\tborder: `1px solid ${theme.palette.ux.secondary.w20}`,\n\t\t\t\t\t\t\tborderBottom: index === data.items.length - 1 ? undefined : \"0\"\n\t\t\t\t\t\t}" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "variable", + "value": "selected" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedIndex(index)" + } + ] + } + ] + }, + { + "componentName": "SolaceLinearProgress", + "totalUsages": 5, + "usagesByMfe": { + "ep": 1, + "mc": 3, + "infra": 1 + }, + "commonProps": [ + { + "name": "variant", + "count": 5 + }, + { + "name": "height", + "count": 5 + }, + { + "name": "value", + "count": 4 + }, + { + "name": "color", + "count": 1 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "key", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "color", + "type": "string", + "value": "learning" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "value", + "type": "variable", + "value": "completionPercentage" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "key", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "percent >= 99 ? \"indeterminate\" : \"determinate\"" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "variable", + "value": "percent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "expression", + "value": "getCreationPercentage(service.creationState, service.createdTime as Date)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "value", + "type": "variable", + "value": "loadingPercentage" + }, + { + "name": "height", + "type": "string", + "value": "lg" + } + ] + } + ] + }, + { + "componentName": "SolaceDatePicker", + "totalUsages": 5, + "usagesByMfe": { + "ep": 1, + "saas": 1, + "maas-ops-react": 3 + }, + "commonProps": [ + { + "name": "value", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "onClear", + "count": 3 + }, + { + "name": "disableFuture", + "count": 3 + }, + { + "name": "timezone", + "count": 2 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "variant", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "value", + "type": "variable", + "value": "endOfLifeDate" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEndOfLifeDateChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "endOfLifeDateSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => clearSelectedDate()" + }, + { + "name": "onChange", + "type": "variable", + "value": "setSelectedDate" + }, + { + "name": "variant", + "type": "expression", + "value": "SolaceDatePickerVariant.FORMAT_MONTH_YEAR" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => setSelectedStartDate(null)" + }, + { + "name": "onChange", + "type": "function", + "value": "(date) => setSelectedStartDate(moment(date).startOf(\"day\"))" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedStartDate?.toISOString()" + }, + { + "name": "timezone", + "type": "string", + "value": "UTC" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => setSelectedEndDate(null)" + }, + { + "name": "onChange", + "type": "function", + "value": "(date) => setSelectedEndDate(moment(date))" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEndDate?.toISOString()" + }, + { + "name": "timezone", + "type": "string", + "value": "UTC" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts", + "props": [] + } + ] + }, + { + "componentName": "SolaceAttributeValuePairForm", + "totalUsages": 5, + "usagesByMfe": { + "ep": 2, + "intg": 1, + "saas": 1, + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 5 + }, + { + "name": "avpList", + "count": 5 + }, + { + "name": "labelForKeys", + "count": 5 + }, + { + "name": "labelForValues", + "count": 5 + }, + { + "name": "id", + "count": 4 + }, + { + "name": "onAVPListUpdate", + "count": 4 + }, + { + "name": "enableRequiredKeyFieldIndicator", + "count": 3 + }, + { + "name": "keyIsRequiredMessage", + "count": 3 + }, + { + "name": "hasErrors", + "count": 3 + }, + { + "name": "helperText", + "count": 3 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "avpKeyValidationCallback", + "type": "variable", + "value": "validateEnumKeys" + }, + { + "name": "avpValueValidationCallback", + "type": "variable", + "value": "validateEnumValues" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Enumeration value is required" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getErrorMessage(error) : null" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50,\n\t\t\t\t\t\t\t\t\t\t\t\t\tinitialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "avpList", + "type": "expression", + "value": "enumerationVersion.values" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderMapping" + }, + { + "name": "avpList", + "type": "variable", + "value": "values" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "() as unknown as string" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeader" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(avpList) => setValues([...avpList])" + }, + { + "name": "disableReorder", + "type": "boolean", + "value": "true" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key" + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "enableRequiredValueFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Required Field!" + }, + { + "name": "avpKeyValidationCallback", + "type": "function", + "value": "(currentInput, values) => keyValidator(currentInput, values)" + }, + { + "name": "avpValueValidationCallback", + "type": "function", + "value": "(currentInput, values) => valueValidator(currentInput, values)" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => onChange(e)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key" + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Key should exist with the value" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => onChange(e)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "disableReorder", + "type": "boolean", + "value": "true" + } + ] + } + ] + }, + { + "componentName": "SolaceEnvironmentSelectChip", + "totalUsages": 4, + "usagesByMfe": { + "ep": 1, + "intg": 2, + "mc": 1 + }, + "commonProps": [ + { + "name": "name", + "count": 4 + }, + { + "name": "value", + "count": 4 + }, + { + "name": "onChange", + "count": 4 + }, + { + "name": "options", + "count": 4 + }, + { + "name": "dataQa", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "MEMListEnvironmentSelector" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment?.environmentId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderEnvironmentSelector" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + } + ] + }, + { + "componentName": "SolaceStepper", + "totalUsages": 3, + "usagesByMfe": { + "ep": 1, + "intg": 2 + }, + "commonProps": [ + { + "name": "steps", + "count": 3 + }, + { + "name": "activeStep", + "count": 3 + }, + { + "name": "setActiveStep", + "count": 3 + }, + { + "name": "onClose", + "count": 3 + }, + { + "name": "onSubmit", + "count": 3 + }, + { + "name": "submitLabel", + "count": 3 + }, + { + "name": "onSecondarySubmit", + "count": 2 + }, + { + "name": "secondarySubmitLabel", + "count": 2 + }, + { + "name": "disableSubmit", + "count": 1 + }, + { + "name": "stepContentOverflow", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/StepperWrapper.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "variable", + "value": "handleSetActiveStepRequest" + }, + { + "name": "onClose", + "type": "function", + "value": "() => history.push(\"/ep/designer\")" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "messages.aiWizardButton.submit" + }, + { + "name": "disableSubmit", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/StepperWrapper.tsx", + "props": [ + { + "name": "steps", + "type": "expression", + "value": "renderSteps()" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "onSubmit" + }, + { + "name": "onSecondarySubmit", + "type": "variable", + "value": "onSecondarySubmit" + }, + { + "name": "submitLabel", + "type": "variable", + "value": "submitLabel" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? secondarySubmitLabel : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => discardChangesAndClose()" + }, + { + "name": "onSubmit", + "type": "function", + "value": "() => onSubmit(true)" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined" + }, + { + "name": "onSecondarySubmit", + "type": "function", + "value": "() => onSubmit(false)" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "en.connectors.buttons.createDeploy" + }, + { + "name": "stepContentOverflow", + "type": "expression", + "value": "showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto" + } + ] + } + ] + }, + { + "componentName": "SolaceFileUploader", + "totalUsages": 3, + "usagesByMfe": { + "intg": 3 + }, + "commonProps": [ + { + "name": "onFileChange", + "count": 3 + }, + { + "name": "maxFiles", + "count": 2 + }, + { + "name": "errorText", + "count": 2 + }, + { + "name": "dataQa", + "count": 2 + }, + { + "name": "readOnly", + "count": 2 + }, + { + "name": "fileNames", + "count": 2 + }, + { + "name": "accept", + "count": 1 + }, + { + "name": "id", + "count": 1 + }, + { + "name": "label", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "accept", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\"application/json\": [\".json\"]\n\t\t\t\t\t\t\t}" + }, + { + "name": "onFileChange", + "type": "function", + "value": "(files) => {\n\t\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\t\tsetFileImported(files);\n\t\t\t\t\t\t\t}" + }, + { + "name": "errorText", + "type": "variable", + "value": "uploadDialogErrorText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "props.id" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "onFileChange", + "type": "function", + "value": "async (files) => props.onChange(await fileUpload(files))" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "props.value ? [\"\"] : []" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "onFileChange", + "type": "variable", + "value": "handleFileChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []" + }, + { + "name": "errorText", + "type": "expression", + "value": "solaceValidationErrors.sslKeyStore" + } + ] + } + ] + }, + { + "componentName": "SolaceFeatureTag", + "totalUsages": 3, + "usagesByMfe": { + "intg": 3 + }, + "commonProps": [ + { + "name": "text", + "count": 3 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "Experimental" + } + ] + } + ] + }, + { + "componentName": "SolaceSplitPane", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "minSize", + "count": 2 + }, + { + "name": "defaultSize", + "count": 2 + }, + { + "name": "maxSize", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "-700" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "Math.max(500, leftPanelMaxWidth)" + } + ] + } + ] + }, + { + "componentName": "SolaceTextDiff", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "text1", + "count": 2 + }, + { + "name": "text2", + "count": 2 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "runtimeAttributes" + }, + { + "name": "text2", + "type": "variable", + "value": "designerAttributes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "schemaBody" + }, + { + "name": "text2", + "type": "variable", + "value": "secondSchemaBody" + } + ] + } + ] + }, + { + "componentName": "SolaceJsonSchemaForm", + "totalUsages": 2, + "usagesByMfe": { + "ep": 2 + }, + "commonProps": [ + { + "name": "formData", + "count": 2 + }, + { + "name": "formItem", + "count": 2 + }, + { + "name": "formOptions", + "count": 2 + }, + { + "name": "onChange", + "count": 2 + }, + { + "name": "transformError", + "count": 2 + }, + { + "name": "transformWidget", + "count": 2 + }, + { + "name": "readOnly", + "count": 1 + }, + { + "name": "disabled", + "count": 1 + }, + { + "name": "ajvClass", + "count": 1 + }, + { + "name": "transformTitle", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!onChange" + }, + { + "name": "disabled", + "type": "expression", + "value": "!enabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}" + }, + { + "name": "ajvClass", + "type": "variable", + "value": "Ajv2019" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}" + }, + { + "name": "transformTitle", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + } + ] + } + ] + }, + { + "componentName": "SolaceMenuItem", + "totalUsages": 1, + "usagesByMfe": { + "ep": 1 + }, + "commonProps": [ + { + "name": "key", + "count": 1 + }, + { + "name": "...", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`graphContextMenu_${menuItem.id ?? index}`" + }, + { + "name": "...", + "type": "spread", + "value": "menuItem" + } + ] + } + ] + }, + { + "componentName": "SolaceDonutChart", + "totalUsages": 1, + "usagesByMfe": { + "ep": 1 + }, + "commonProps": [ + { + "name": "data", + "count": 1 + }, + { + "name": "showTooltip", + "count": 1 + }, + { + "name": "icon", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "data", + "type": "expression", + "value": "getPieChartData()" + }, + { + "name": "showTooltip", + "type": "boolean", + "value": "true" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "componentName": "SolaceEmptyStateBanner", + "totalUsages": 1, + "usagesByMfe": { + "intg": 1 + }, + "commonProps": [ + { + "name": "bannerImage", + "count": 1 + }, + { + "name": "subtitle", + "count": 1 + }, + { + "name": "title", + "count": 1 + }, + { + "name": "description", + "count": 1 + }, + { + "name": "primaryButton", + "count": 1 + }, + { + "name": "secondaryButton", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx", + "props": [ + { + "name": "bannerImage", + "type": "jsx", + "value": "" + }, + { + "name": "subtitle", + "type": "expression", + "value": "en.connectors.labels.emptyState.subtitle" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.emptyState.title" + }, + { + "name": "description", + "type": "expression", + "value": "en.connectors.labels.emptyState.description" + }, + { + "name": "primaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.checkoutAvailableConnectors,\n\t\t\t\tonClick: onPrimaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-primary-button\"\n\t\t\t}" + }, + { + "name": "secondaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.exploreOnMyOwn,\n\t\t\t\tonClick: onSecondaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-secondary-button\"\n\t\t\t}" + } + ] + } + ] + }, + { + "componentName": "SolaceGridListMultiSelect", + "totalUsages": 1, + "usagesByMfe": { + "mc": 1 + }, + "commonProps": [ + { + "name": "id", + "count": 1 + }, + { + "name": "items", + "count": 1 + }, + { + "name": "headers", + "count": 1 + }, + { + "name": "actions", + "count": 1 + }, + { + "name": "rowMapping", + "count": 1 + }, + { + "name": "gridTemplate", + "count": 1 + }, + { + "name": "dataQa", + "count": 1 + }, + { + "name": "selectedRowIds", + "count": 1 + }, + { + "name": "onSelection", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "services" + }, + { + "name": "items", + "type": "expression", + "value": "services ?? []" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "services" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedIds" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + } + ] + } + ] + }, + { + "componentName": "SolaceChipTextArea", + "totalUsages": 1, + "usagesByMfe": { + "maas-ops-react": 1 + }, + "commonProps": [ + { + "name": "label", + "count": 1 + }, + { + "name": "id", + "count": 1 + }, + { + "name": "name", + "count": 1 + }, + { + "name": "value", + "count": 1 + }, + { + "name": "validateChip", + "count": 1 + }, + { + "name": "onChange", + "count": 1 + }, + { + "name": "hasErrors", + "count": 1 + }, + { + "name": "helperText", + "count": 1 + } + ], + "files": [ + "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx" + ], + "customization": { + "styledComponentCount": 0, + "customStylesCount": 0, + "overriddenPropertiesCounts": {} + }, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "organizationDetails.manageNotificationContactDialog.label" + }, + { + "name": "id", + "type": "string", + "value": "demoChipTextAreaId" + }, + { + "name": "name", + "type": "string", + "value": "demoChipTextArea" + }, + { + "name": "value", + "type": "variable", + "value": "dialogEmails" + }, + { + "name": "validateChip", + "type": "variable", + "value": "emailValidationFunction" + }, + { + "name": "onChange", + "type": "function", + "value": "(e: { allValues: string; chips: ChipData[] }) => {\n\t\t\t\t\thandleEmailsChange(e.allValues, e.chips);\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMessage || (updateError ? organizationDetails.manageNotificationContactDialog.errors.updateError : \"\")" + } + ] + } + ] + } + ], + "unusedComponents": [ + { + "name": "SolaceChipTextArea.styles", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceChipTextArea/SolaceChipTextArea.styles.tsx" + }, + { + "name": "WarningText", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/WarningText.tsx" + }, + { + "name": "HelperText", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/HelperText.tsx" + }, + { + "name": "SolaceStepperFooter", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceStepper/SolaceStepperFooter.tsx" + }, + { + "name": "FormChildBase", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/FormChildBase.tsx" + }, + { + "name": "SolaceAttributeValuePair", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceAttributeValuePair.tsx" + }, + { + "name": "ErrorText", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/ErrorText.tsx" + }, + { + "name": "SolaceAutoCompleteTextField", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/form/SolaceAutoCompleteTextField.tsx" + }, + { + "name": "SolaceTree", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/SolaceTree.tsx" + }, + { + "name": "SolaceNotificationCounter", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/SolaceNotificationCounter.tsx" + }, + { + "name": "NoAccess", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/NoAccess.tsx" + }, + { + "name": "SolaceCardHeader", + "path": "/Users/ishanphadte/Documents/GitHub/maas-react-components/src/components/SolaceCardHeader.tsx" + } + ], + "unusedComponentsByMfe": { + "ep": [ + "SolaceChipTextArea", + "SolaceChipTextArea.styles", + "WarningText", + "SolaceStackLabel", + "HelperText", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "ErrorText", + "SolaceAutoCompleteTextField", + "SolaceTree", + "SolaceNotificationCounter", + "NoAccess", + "SolaceGridListMultiSelect", + "SolaceEmptyStateBanner", + "SolaceBreadcrumb", + "SolaceCardHeader", + "SolaceBackDrop", + "SolaceFeatureTag", + "SolaceLearningBanner", + "SolaceFileUploader", + "SolacePopover" + ], + "intg": [ + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolaceChipTextArea", + "SolaceChipTextArea.styles", + "WarningText", + "SolaceStackLabel", + "HelperText", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceLearningButton", + "SolacePicker", + "ErrorText", + "SolaceToggleButtonGroup", + "SolaceAutoCompleteTextField", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceMenuItem", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceDrawer", + "SolaceTag", + "SolaceCardHeader", + "SolaceErrorBox", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceDonutChart" + ], + "mc": [ + "SolaceToasts", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolaceChipTextArea", + "SolaceChipTextArea.styles", + "WarningText", + "SolaceStackLabel", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceAttributeValuePairForm", + "SolaceLearningButton", + "SolacePicker", + "ErrorText", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceListItem", + "SolaceSplitPane", + "SolaceListItemButton", + "SolaceList", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceTag", + "SolaceCardHeader", + "SolaceBackDrop", + "SolaceTable", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceSearchAndFilter", + "SolaceDonutChart", + "SolaceChip", + "SolacePopover" + ], + "saas": [ + "SolaceToasts", + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolaceChipTextArea", + "SolaceChipTextArea.styles", + "WarningText", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceLearningButton", + "ErrorText", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceTree", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceTag", + "SolaceCardHeader", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceSearchAndFilter", + "SolaceDonutChart", + "SolacePopover" + ], + "infra": [ + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolaceCheckBox", + "SolaceTextArea", + "SolaceChipTextArea", + "SolaceChipTextArea.styles", + "WarningText", + "SolaceStackLabel", + "SolaceTextField", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceAttributeValuePairForm", + "SolaceLearningButton", + "SolacePicker", + "SolaceRadio", + "ErrorText", + "SolaceToggleButtonGroup", + "SolaceToggle", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceRadioGroup", + "SolaceLabel", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceListItem", + "SolaceSidePanelLayout", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceList", + "SolaceGrid", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceTag", + "SolaceBreadcrumb", + "SolaceCardHeader", + "SolaceMessageBox", + "SolaceCard", + "SolaceAccordion", + "SolaceBackDrop", + "SolaceEnvironmentChip", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceDetailMessage", + "SolaceDonutChart", + "SolaceEnvironmentLabel", + "SolacePopover" + ], + "maas-ops-react": [ + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolaceChipTextArea.styles", + "WarningText", + "HelperText", + "SolaceStepper", + "SolaceStepperFooter", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceLearningButton", + "SolacePicker", + "ErrorText", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceTree", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceSplitPane", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceDrawer", + "SolaceCardHeader", + "SolaceCard", + "SolaceEnvironmentChip", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceDonutChart", + "SolacePopover" + ], + "broker-manager": [ + "SolaceToasts", + "SolaceLinearProgress", + "SolaceTextDiff", + "SolaceJsonSchemaForm", + "SolacePagination", + "SolaceAttributeBadge", + "SolaceCheckBox", + "SolaceTextArea", + "SolaceChipTextArea", + "SolaceChipTextArea.styles", + "WarningText", + "SolaceStackLabel", + "SolaceTextField", + "HelperText", + "SolaceSelectAutocompleteItem", + "SolaceStepper", + "SolaceStepperFooter", + "SolaceSelectAutocomplete", + "FormChildBase", + "SolaceAttributeValuePair", + "SolaceAttributeValuePairForm", + "SolaceLearningButton", + "SolacePicker", + "SolaceRadio", + "ErrorText", + "SolaceToggleButtonGroup", + "SolaceButton", + "SolaceToggle", + "SolaceSelectAutocompleteResponsiveTags", + "SolaceAutoCompleteTextField", + "SolaceCodeEditor", + "SolaceRadioGroup", + "SolaceLabel", + "SolaceSelect", + "SolaceMenu", + "SolaceTree", + "SolaceDatePicker", + "SolaceNotificationCounter", + "NoAccess", + "SolaceTruncatableLink", + "SolaceMenuItem", + "SolaceListItem", + "SolaceStack", + "SolacePageHeader", + "SolaceSidePanelLayout", + "SolaceSplitPane", + "SolaceTabs", + "SolaceGridListMultiSelect", + "SolaceListItemButton", + "SolaceGridList", + "SolaceList", + "SolaceGrid", + "SolaceEnvironmentSelectChip", + "SolaceEmptyStateBanner", + "SolaceTypography", + "SolaceDrawer", + "SolaceTag", + "SolaceConfirmationDialog", + "SolaceBreadcrumb", + "SolaceCardHeader", + "SolaceMessageBox", + "SolaceCard", + "SolaceErrorBox", + "SolaceAccordion", + "SolaceBackDrop", + "SolaceEnvironmentChip", + "SolaceTable", + "SolaceFeatureTag", + "SolaceCategorizedSearch", + "SolaceTooltip", + "SolaceLearningBanner", + "SolaceResponsiveItemList", + "SolaceFileUploader", + "SolaceDetailMessage", + "SolaceSearchAndFilter", + "SolaceDonutChart", + "SolaceCircularProgress", + "SolaceChip", + "SolaceEnvironmentLabel", + "SolacePopover" + ] + }, + "overallStats": { + "totalUsages": 5043, + "mostUsedComponents": [ + { + "name": "SolaceTypography", + "count": 868 + }, + { + "name": "SolaceButton", + "count": 809 + }, + { + "name": "SolaceGrid", + "count": 405 + }, + { + "name": "SolaceTooltip", + "count": 385 + }, + { + "name": "SolaceLabel", + "count": 304 + }, + { + "name": "SolaceMessageBox", + "count": 283 + }, + { + "name": "SolaceConfirmationDialog", + "count": 235 + }, + { + "name": "SolaceTextField", + "count": 197 + }, + { + "name": "SolaceStack", + "count": 157 + }, + { + "name": "SolaceSelect", + "count": 124 + } + ], + "mostUsedProps": [ + { + "name": "variant", + "count": 1907 + }, + { + "name": "dataQa", + "count": 1192 + }, + { + "name": "title", + "count": 821 + }, + { + "name": "id", + "count": 719 + }, + { + "name": "onClick", + "count": 636 + }, + { + "name": "onChange", + "count": 621 + }, + { + "name": "name", + "count": 619 + }, + { + "name": "label", + "count": 492 + }, + { + "name": "value", + "count": 484 + }, + { + "name": "message", + "count": 307 + } + ], + "mfeUsages": { + "ep": 2412, + "intg": 494, + "mc": 446, + "saas": 695, + "infra": 65, + "maas-ops-react": 931 + }, + "totalUnusedComponents": 12 + }, + "rawData": { + "componentUsages": [ + { + "component": "SolaceToasts", + "count": 6, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/contexts/SolaceToastProvider.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "toast.message" + }, + { + "name": "open", + "type": "expression", + "value": "toast.open" + }, + { + "name": "action", + "type": "expression", + "value": "toast.action" + }, + { + "name": "severity", + "type": "expression", + "value": "toast.severity" + }, + { + "name": "autoDismiss", + "type": "expression", + "value": "toast.autoDismiss" + }, + { + "name": "onClose", + "type": "variable", + "value": "removeToast" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/contexts/SnackBarSolaceToast.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "severity", + "type": "expression", + "value": "severity as SolaceToastsProps[\"severity\"]" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseSnackbar" + }, + { + "name": "action", + "type": "expression", + "value": "action as SolaceToastsProps[\"action\"]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "showToast.message" + }, + { + "name": "severity", + "type": "expression", + "value": "showToast.severity" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowToast(null)" + }, + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "severity", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Rerun Monitoring Job Failed" + }, + { + "name": "open", + "type": "variable", + "value": "showRerunAutomationErrorToast" + }, + { + "name": "onClose", + "type": "function", + "value": "() => dispatch(hideRerunAutomationErrorToast())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "showToast" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowToast(false)" + }, + { + "name": "message", + "type": "variable", + "value": "toastMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "severity", + "type": "string", + "value": "error" + }, + { + "name": "open", + "type": "variable", + "value": "showErrorToast" + }, + { + "name": "onClose", + "type": "function", + "value": "() => dispatch(closeErrorToast())" + } + ] + } + ] + }, + { + "component": "SolaceSelectAutocompleteItem", + "count": 58, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/topology/eventBrokerUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "RESOURCE_LABEL_BY_ROLE[role]" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "subText", + "type": "expression", + "value": "RESOURCE_DESCRIPTION_BY_ROLE[role]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.scanWithEventPortal" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.scanFromEventPortal" + }, + { + "name": "subText", + "type": "string", + "value": "Event Portal connects directly to event brokers through the agent. Recommended for one-click discovery scans and required to enable runtime configuration from Event Portal." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "EMA_MODES_LABELS.uploadScanFile" + }, + { + "name": "value", + "type": "expression", + "value": "EMA_MODES.uploadScanFile" + }, + { + "name": "subText", + "type": "string", + "value": "Use a standalone agent connected to event brokers to run discovery scans and another agent connected to Event Portal to upload the data. Recommended for closed systems. Runtime configuration is not supported in offline mode." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "eventMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "version" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isSecondVersionOptions && selectedVersionId === version.id ? \"No Difference\" : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceClientUsername.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceClientUsername" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceClientUsername.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "messages.credentials.solaceAuthorizationGroup.label" + }, + { + "name": "value", + "type": "expression", + "value": "CONFIGURATION_TYPES.solaceAuthorizationGroup" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isEditing ? messages.credentials.solaceAuthorizationGroup.supplementalLabel : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tracingType[TracingType.Insights]" + }, + { + "name": "value", + "type": "expression", + "value": "TracingType.Insights" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "isInsights ? \"Default\" : \"Not Available\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[TlsConnectionType.SecureSkipValidation]" + }, + { + "name": "value", + "type": "expression", + "value": "TlsConnectionType.SecureSkipValidation" + }, + { + "name": "subText", + "type": "string", + "value": "Skips certificate authority validation" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "createBizOrganization.orgDetails.EnterpriseAcc" + }, + { + "name": "supplementalText", + "type": "expression", + "value": "createBizOrganization.orgDetails.defaultAcc" + }, + { + "name": "value", + "type": "string", + "value": "enterprise" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "item.id ?? \"\"" + }, + { + "name": "supplementalText", + "type": "string", + "value": "Current Version" + }, + { + "name": "value", + "type": "expression", + "value": "connectorVersion ?? \"\"" + } + ] + } + ] + }, + { + "component": "SolaceButton", + "count": 809, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/schemaUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "jsonSchemaSpecLink" + }, + { + "name": "href", + "type": "string", + "value": "https://json-schema.org/specification.html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/topicUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"smfTopics\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/CommandDisplayBlock.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "commandBlockCopyButton" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/services/${messagingService.solaceCloudMessagingServiceId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseMessagingServiceDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenMessagingServiceDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`${protocol}//${host}/environments`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][addSchemaRegistry]" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddSchemaRegistry" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "schemaAuthArray?.length > 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDownload(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!Object.values(namingStrategy).includes(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "onOpenVersion ?? onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "returnToApplicationButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToDomain(statusCheckData.id, entityType, statusCheckData.name, history)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Move_Objects\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisplayDiscrepancyTable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://www.solace.com" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "cancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkToApplicationVersionDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleUndo" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`, \"_self\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learningCenterLink" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(\"/learningCenter\", \"_self\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/environments.htm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "lcVideoTutorialsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"videoTutorials\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "trainingCoursesLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"courses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "epOverviewDocsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"overviewDocs\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeConfigSidePanelButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"closeDetailsDialog\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner(version)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"cancelAddEventToApplication\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"saveAddEventToApplication\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewInDesigner?.(version)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddToApplication(version)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-edit`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onEditName(entityType, index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(entityType, index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-viewall-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setDetails({ label: customAttribute.name, value: customAttributeValue?.value })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"customAttributes\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-add`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAdd(entityType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToRuntime" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/runtime`);\n\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\thistory.push(`/ep/designer`);\n\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApply" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasUnsavedChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + }, + { + "name": "key", + "type": "expression", + "value": "action.id" + }, + { + "name": "...", + "type": "spread", + "value": "action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSave" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onVersionAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "addVersionButton" + }, + { + "name": "title", + "type": "string", + "value": "Add New Version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(false)" + }, + { + "name": "title", + "type": "string", + "value": "Hide Version List" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowVersionDetails(true)" + }, + { + "name": "title", + "type": "string", + "value": "Show Version List" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-applications.htm#link_apps_graph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "changeVersionState" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onChangeVersionState" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"customAttributeDefinitionsEditorButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenCustomAttributeDialog()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateBackToOrigin" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "underline", + "type": "string", + "value": "none" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleStartOverriding" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetOverrideClientProfileName-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageClientProfile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion.clientProfileNameRemove`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handlRemoveClientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "selectedVersionInEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionEdit(selectedVersion)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editThisVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "variable", + "value": "disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableFormButtons" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmitAndCloseVersionClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveVersionAndCloseButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EmptyEntityVersionContainer.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createVersion" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "configureVarButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClear" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-clear`" + }, + { + "name": "title", + "type": "string", + "value": "Clear Topic Address" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "removeDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemove(index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicSubscriptions\", \"link\")" + }, + { + "name": "data-qa", + "type": "string", + "value": "infoBlurbLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/KafkaDelimiterWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "setKafkaPreferences" + }, + { + "name": "onClick", + "type": "expression", + "value": "onSetKafkaPreferences ? onSetKafkaPreferences : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegend.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"More Actions\"" + }, + { + "name": "...", + "type": "spread", + "value": "buttonProps" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "latestGraphUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "docUrl" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(LAUNCH_GRAPH_DEMO_EVENT, { triggerPoint: TriggerPoint.graphLegend })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "action-btn-inline-banner" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isButtonDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "onButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/InlineFullBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDismiss" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-btn-inline-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "recenterGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Center Graph\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "graphEmpty" + }, + { + "name": "dataQa", + "type": "string", + "value": "centerGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://semver.org" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}-delete`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDelete(filterType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}-delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteFilter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters(true, true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "latestJarFileLink" + }, + { + "name": "href", + "type": "expression", + "value": "eventManagementAgentResources.version.needUpgradeLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenSidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "loading || disableSave || !eventManagementAgent?.eventManagementAgentRegionId" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAgent" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveAndCreateConnectionFileButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompleteInstallationSetupClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "comnpleteInstallationSetupButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSkipButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFinishClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "finishWalkthroughButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/blob/main/docs/rest.md#scan-types" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "downloadButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt, details, emaType, downloadButtonId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "dataQa", + "type": "variable", + "value": "copyButtonId" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleCopyFile(evt, details, emaType, copyButtonId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceProducts/event-management-agent/releases" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/error-id-help" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleMessagingService(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "openMessagingServiceDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(evt) => handleDownloadFile(evt)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyFile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md#running-the-event-management-agent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-collect-runtime-data.htm#set_up_data_collection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "EMA_PREREQUISITES_LINK" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateRuntimeAgent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewModeledEventMeshes" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewModeledEventMeshes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/private-regions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => removeMessagingService(messagingService)" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeMessagingService" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "agentSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDownloadConnectionFile(item.id, item.name)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://github.com/SolaceLabs/event-management-agent/blob/main/README.md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleCollectData(selectedMessagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "runDiscoveryScan" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDiscoveryScanButtonDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/modeled-event-mesh-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connectEventBrokerButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddExistingMessagingService" + }, + { + "name": "key", + "type": "expression", + "value": "\"addMessageService\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewConnectionDetailsButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewConnectionDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteMessagingService(selectedMessagingService)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"datacenters\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventManagementAgents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveVersionEntity(entityVersion.id)" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeEntityFromListButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to manage associations" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAddMode(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => viewEntityVersionDetailsCallback?.(selectedEntityVersionForRelationshipGraph)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshObjectRelationshipGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "backToGraphView" + }, + { + "name": "dataQa", + "type": "string", + "value": "backToGraphView" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!item?.auth?.canOpenModelEventMesh" + }, + { + "name": "onClick", + "type": "variable", + "value": "onViewDetail" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewMEMDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMem" + }, + { + "name": "dataQa", + "type": "string", + "value": "createModeledEventMeshButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/account-details/private-regions\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "viewEventManagementAgentConnections" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventManagementAgentConnections" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewEMAConnections" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMemDialogOpen" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => showObjectRelationshipsForFirstObjectCallback?.()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshEventMeshDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"designerTool\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshEventMeshDetails()" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest objects and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToMessagingServiceTab" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGoToDesigner" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MEMEmptyStateMessageDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"modeledEventMesh\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAutoCollectDialogOpen(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setRefresh(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshAllAuditResults" + }, + { + "name": "title", + "type": "string", + "value": "Refresh all audit results" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"auditRuntimeData\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "hideSecondaryPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go Back" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCloseDetails" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Go to Selection Panel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCompare" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDeselectAll" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImportJob-close" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDismissJob(jobId)" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(applicationDetail.parent, applicationDetail)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(eventDetail.parent, eventDetail)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCompareVersions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"compareVersionsBtn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionItemClick(version.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBack" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"backCompareConfigDialog\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewConfiguration(isSchemaParent)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullConfiguration\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm#import_topics" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewEventBrokerConnections" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefreshAuditResult()" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAll" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/CreateNewParentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"applicationDomain\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "buttonVariant || \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "chooseImportOptionButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\thandleImport(\n\t\t\t\t\t\t\tauditResultType === AUDIT_RESULT_VALUES.partialMatch ? AUDIT_IMPORT_ACTION.updateExistingParent : AUDIT_IMPORT_ACTION.createNewParent\n\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "isSelected || stateName?.toLowerCase() !== NodeLifeCycleState.draft.toLowerCase()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onVersionSelection(applicationVersion)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-audit-runtime-data.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeselect" + }, + { + "name": "dataQa", + "type": "string", + "value": "validationErrorDeselect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/ep/runtime/modeled-event-meshes/${eventMeshId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/runtime/modeled-event-meshes/${eventMeshId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "designerLink" + }, + { + "name": "dataQa", + "type": "string", + "value": "designerLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkButton" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"/ep/catalog\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "catalogLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenCelebratoryDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditImport-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "action" + }, + { + "name": "underline", + "type": "string", + "value": "none" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoTagAction(request)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetToDefault" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm#queue_template_schemas\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm#Queue_Config_Props" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-queue-template-schema.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "linkHref" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDeleteTemplateDialog(true, row)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTemplateButton" + }, + { + "name": "title", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTemplateButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelTemplate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onSave" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveTemplate" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createConfigurationTemplate.isLoading || updateConfigurationTemplate.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenAddToApplicationModal(selectedEvent)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(title)}-${secondaryAction.completed}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsecondaryAction.onClick && secondaryAction.onClick(secondaryAction.completed ? Action.uncheck : Action.check);\n\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "secondaryAction?.disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpEMA\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"setUpMEM\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "sampleApplicationsDomainsLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableText.solace.links.sampleDocs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\thandleOpenLink(\"design\");\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "dismissExploreSample" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thandleOpenLink(\"videoTutorials\");\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "howToVideosButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUserManagement" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreTooltipLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "learnMoreCardLink" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kpiDashboardLearn\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleModeSelection(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError ||\n\t\t\t\t\t\t(templates?.length && (templateNotFound || !!templateOutOfSync)) ||\n\t\t\t\t\t\ttemplateHasSchemaErrors ||\n\t\t\t\t\t\t!!errors[FormNameConfiguration]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(type, header)" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeRequestHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addQueueBinding" + }, + { + "name": "isDisabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "overrideQueueBinding" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearOverride" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearOverrideQueueBinding" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRemoveConfiguration()" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "removeQueueBinding" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRequestHeaderDialog(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRequestHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOnAddQueueBinding" + }, + { + "name": "dataQa", + "type": "expression", + "value": "isGlobal ? \"addQueueBinding\" : \"overrideQueueBinding\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-apps-rdp.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleOnDelete" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowConsumerType(true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowConsumerType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "showConsumerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowReset" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOverrideRestDeliveryPointConfiguration" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowOverride" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveRestDeliveryPointConfiguration" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowRestConsumer(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "showRestConsumer || !configurationTypeId || !isEditing" + }, + { + "name": "dataQa", + "type": "string", + "value": "rdpShowRestConsumer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "selectAnotherTemplateAction" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSelect" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isSelectDisabled" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"customizeAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCustomize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"refreshAction\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant || \"text\"" + }, + { + "name": "onClick", + "type": "expression", + "value": "action.onClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "action.dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "custom-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.queueConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "template-learnMore" + }, + { + "name": "href", + "type": "expression", + "value": "messagesTemplate.solaceQueue.infoBlurb.linkHref" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`switchModeAction-${modeToSelect}`" + }, + { + "name": "title", + "type": "variable", + "value": "selectMessage" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setModeSelectionToConfirm(modeToSelect)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "modeToSelect === Mode.template && isTemplateSelectionDisabled(templates, templateOutOfSync)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "applyAction" + }, + { + "name": "title", + "type": "expression", + "value": "messagesCommon.button.apply" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!fetchError || templateNotFound || !!templateOutOfSync" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConsumer" + }, + { + "name": "dataQa", + "type": "string", + "value": "addConsumerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "expression", + "value": "messages[configType].emptyLinkref" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSetUserAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "openApplicationDomainButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"sampleDocs\", \"link\")" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => Mixpanel.track(\"clickSampleDocumentationLink\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "importAppDomain-btn" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => importDomainsFileRef.current?.click()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-application-domains.htm#Exporting_and_Importing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"enumerations\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUndoUpload(valuesToUndo)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "fileUploading" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersion[values]-importFromFileButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit((data) => {\n\t\t\t\t\t\t\t\tif (!validateEnumValueSets()) {\n\t\t\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tconst preparedData = prepareEntityForBackend(data);\n\n\t\t\t\t\t\t\t\treturn handleSaveEntityAndVersion(preparedData);\n\t\t\t\t\t\t\t})" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEnumeration.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/DomainNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleGoToSelectedApplicationDomain()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/ApplicationNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EventNodeSidePanelContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenFullConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainGraphSidePanel-details-editBtn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelCustomAttributesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || isWritingEpCore || saveInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveCustomAttributesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "title", + "type": "string", + "value": "Edit" + }, + { + "name": "onClick", + "type": "variable", + "value": "onEdit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}NodeSidePanelCustomAttributeEditButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClickCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSave(existingLatestNonRetiredVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isDirty || saveInProgress || isWritingEpCore" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDetailsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClosePanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "leftSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Edit Appearance" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditAppearance" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-appearance-button" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refreshGraphCallback?.(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => goToComponentLists?.()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => (appToAppRelationship ? handleDeleteApplicationLinks([newEdgeData]) : handleDeletePubSubEdges([newEdgeData]))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefreshGraph" + }, + { + "name": "title", + "type": "expression", + "value": "\"Refresh graph with the latest versions and layout\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || !!nodeIdWithUnsavedChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "aria-label", + "type": "expression", + "value": "\"Add To Graph\"" + }, + { + "name": "title", + "type": "string", + "value": "Add To Graph" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToGraph-button" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!nodeIdWithUnsavedChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMenuClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseInfoBlurb" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "findOnGraph" + }, + { + "name": "key", + "type": "expression", + "value": "\"findOnGraph\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.SEARCH)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "searchButtonDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/useGetDomainGraphNavigationActions.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "key", + "type": "expression", + "value": "DomainGraphLeftPanelMode.ADD_OBJECTS" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleLeftSidePanelOpen(DomainGraphLeftPanelMode.ADD_OBJECTS)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "leftSidePanelMode === DomainGraphLeftPanelMode.ADD_OBJECTS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchPanelCollapseButton" + }, + { + "name": "title", + "type": "string", + "value": "Collapse" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleNavigateToComponentList(e, entityType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEventApis" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventApisButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "selectedEventApiVersionIds.includes(versionData.id) ? \"text\" : \"outline\"" + }, + { + "name": "id", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "key", + "type": "expression", + "value": "`${versionData.id}-versionButton`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEventApiSelectionChange(selectedEventApiVersionIds.includes(versionData.id) ? \"remove\" : \"add\", versionData)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\te.stopPropagation();\n\t\t\t\t\tonFilterButtonClicked(item);\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterButton-${item.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApi.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "source === \"application\" ? en.application.links.extension : en.eventApi.links.extension" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "version === \"2.5.0\" ? en.application.links.asyncApi2Spec : en.application.links.asyncApi3Spec" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.application.links.asyncApi" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`planDeleteButton-${index}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onPlanDelete(index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAddPlanButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "planFields.length === 5" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAddPlanClicked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpen(true)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.eventApiProduct.labels.approvalTypes.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEventApiProduct.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "createEventApiProductButton" + }, + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createSchema.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTriggerVersionDuplication(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageReferencedSchemas" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === sidePanelManageReferencedSchemas" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetActiveTab(EVENT_ACCESS_REQUEST_TAB_ID.closed);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "revokeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onReviewClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "approveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddButtonClick" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!editableSubscriptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.add`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${consumerIndex}.${index}.remove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteButtonClick(consumerId, index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.delete`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeleteButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "subscription === \"\" || subscription === addedSubscription || !!errorMsg || findEventVersionsInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscriptionAddButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSuggestedEvents(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationDownload.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.download" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${name}-configDownload`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\tdownload(new Blob([configuration]), getConfigurationName(name), \"application/json\");\n\t\t\t}" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleInitiateOverride" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-overrideConfigButton`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-clearOverrideButton`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetOverride" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${consumer.name}-manageConfigButton`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "openedSidePanel === SidePanel.manageConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "en.common.button.remove" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configurationRemove`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveConfiguration(consumer, ConfigurationTypeId.solaceQueue, undefined)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => handleEventVersionSelect(e, item)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleEventsExpand" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sortedItems.length === 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFindEventsClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "launchUserAccessDialog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "getRrbacRoles.isLoading || getAttributeAssignments.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userAccessButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isSaveButtonDisabled()" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(onFormSubmit)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTopicDomain" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddTopicDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromUI(index)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "dataQa", + "type": "string", + "value": "deleteTopicDomain" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDeleteFromBackend(topicDomain.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editApplicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "title", + "type": "expression", + "value": "\"Launch link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTopicAddressResourceLink" + }, + { + "name": "href", + "type": "variable", + "value": "resource" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Edit link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesEdit" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "expression", + "value": "\"Delete link\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDelete" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDelete()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesAdd" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsEditing(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"kafkaEvents\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/TopicAddressHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"topicAddresses\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createEvent.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"create\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreate" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemas" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageSchemasForPrimitiveType" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`manage${keyOrValue}SchemasForPrimitiveTypeButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/SchemaDetailsInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRemoveSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`remove${keyOrValue}SchemaButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenQuickCreateSchema" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"quickCreateSchemaButton\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onBackButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "backButton" + }, + { + "name": "title", + "type": "string", + "value": "Back" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "notifyParentOfSchemaVersionSelection" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectPrimitiveTypeButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!selectedPrimitiveType || selectedPrimitiveType === selectedSchemaInfo?.primitiveType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tif (fileInputRef) fileInputRef.current.click();\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "exampleSchemasButton" + }, + { + "name": "href", + "type": "string", + "value": "https://www.jsonschemavalidator.net/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(handleSaveEntityAndVersion)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionSelect" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sharedSearchCriteria && !schema.shared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSchemaVersionRemove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Back to add subscription" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleManageSubscriptions(currentSubscription, consumerName)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Quick Create Event" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleOpenDialog(\"quickCreateEvent\")" + }, + { + "name": "dataQa", + "type": "string", + "value": "quickCreateEventButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tremove();\n\t\t\t\t\t\t\t\tremoveToast();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAutoCreateConsumers" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "autoCreateConsumersInProgress" + }, + { + "name": "dataQa", + "type": "string", + "value": "autoCreateConsumersButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageEvents" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "sidePanelOpen && openedSidePanel === SidePanel.manageEvents" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageEventsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "data-qa", + "type": "string", + "value": "topicAddressHelpCloseButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertVersionForSave)" + }, + { + "name": "data-qa", + "type": "string", + "value": "createAndSelectButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Source}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.source ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonSourceAppVersionAction({ appVersion: clonedVersionData, remove: versionData.source });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${ApplicationFlowDirection.Destination}-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.destination ? \"call-to-action\" : \"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\tdelete clonedVersionData.source;\n\t\t\t\t\t\tdelete clonedVersionData.destination;\n\t\t\t\t\t\tdelete clonedVersionData.filtered;\n\t\t\t\t\t\tonDestinationAppVersionAction({ appVersion: clonedVersionData, remove: versionData.destination });\n\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.filtered" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSendAllRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "sendRequestButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSubmit(convertFormValuesForSave)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "createApplication.isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isConfiguring || applicationVersions.length === 0 || (isRdpApplication && !restDeliveryPointEnabled)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddToEnvironmentData({ ...eventBrokerRecord })" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-addApplicationButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "declinedRequests.length + requestsToCreate.length === 0 ? \"outline\" : \"call-to-action\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageRequestButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenRequestPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`sub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.sub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonSubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.sub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`pub-${versionData.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "versionData.pub ? \"call-to-action\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "versionData.stateName.toLowerCase() === \"retired\"" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\te.stopPropagation();\n\n\t\t\t\t\t\t\t\tconst clonedVersionData = cloneDeep(versionData);\n\n\t\t\t\t\t\t\t\tdelete clonedVersionData.pub;\n\t\t\t\t\t\t\t\tdelete clonedVersionData.sub;\n\t\t\t\t\t\t\t\tonPubEventVersionAction({ event: cloneDeep(row), eventVersion: clonedVersionData, remove: versionData.pub });\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEventVersionSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-designer-events-access.htm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonAddSubscription(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageRelationshipBtnClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageLinksBtn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setInternalSearchText(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dataQa + \"-expandAll\"" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleRequestsExpand" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + }, + { + "name": "data-qa", + "type": "string", + "value": "cancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isValid || !isDirty" + }, + { + "name": "onClick", + "type": "expression", + "value": "mode === \"existingConsumer\" ? handleSubmit(prepareExistingFormvaluesForSubmit) : handleSubmit(prepareNewFormvaluesForSubmit)" + }, + { + "name": "data-qa", + "type": "string", + "value": "addSubscriptionButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "gotoRuntimeTab" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isApplicationReadyForRuntime && !isApplicationAddedToEnvironment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "launchRDPDeploymentDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "addRDPToBrokerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "\"https://docs.solace.com/Cloud/Event-Portal/event-portal-event-management-agents.htm\"" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetIsEditing(true);\n\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onToggleInputBType" + }, + { + "name": "title", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "startIcon", + "type": "expression", + "value": "showSparkle ? : undefined" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${id}_filterToggleButton`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClearFilterClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"link\"" + }, + { + "name": "href", + "type": "variable", + "value": "href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"icon\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleFilterToggle" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterToggleButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "viewTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.READ_ONLY)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "addTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.CREATE)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editTransformationButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleAddTransformation(ShowTransformation.EDIT)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "removeRelation" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/NodeElement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRelation(relation)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onAdd" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add_${inputOrOutput}_button`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemove(handle)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.buttons.transformationsLink.hrefLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "openUploadModal" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetReImport(true);\n\t\t\t\t\t\t\t\topenUploadModal();\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-edit-constant-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetConstantField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyConstantEdit" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetShowEditDialog(false);\n\t\t\t\t\t\t\tsetCustomHeaderField({});\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "edit-custom-header-button" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "applyHeaderEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`edit-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`delete-${fieldType}-button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetIdToDelete(id);\n\t\t\t\t\t\t\tsetShowDeleteDialog(true);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-custom-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "close-add-header-dialog" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-constant-button" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddConstant" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!constantNameError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "startIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleMapWithAI" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-constant-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddConstantDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "maxTargetHeaderCountReached()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`add-header-button-${direction}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tsetAddHeaderDialog(true);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.learnMore.href" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSensitiveField ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSensitiveField ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSensitiveField(!showSensitiveField)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "(e: any) => onClick && onClick(e)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "expression", + "value": "onDropPropertyClick(label)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "zeroStateDocLink" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Micro-Integrations/Managed/managed-micro-integrations-overview.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(CONNECTOR_AVAILABLE)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dataQa", + "type": "string", + "value": "goToDocumentationButtonLink" + }, + { + "name": "href", + "type": "expression", + "value": "connectorType.integrationHubUrl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDeployState" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openConnectorFlowButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${serviceDetails?.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRowIds([])" + }, + { + "name": "dataQa", + "type": "string", + "value": "closeButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.buttons.close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showClientSecret ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showClientSecret ? \"showClientSecretButton\" : \"hideClientSecretButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowClientSecret(!showClientSecret)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslKeyStorePassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslKeyStorePassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslKeyStorePassword(!showSslKeyStorePassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "showPassword ? \"eyeIcon\" : \"hideEyeIcon\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "showPassword ? \"showPasswordButton\" : \"hidePasswordButton\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setShowPassword(!showPassword)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t? connectorTypeDetails?.integrationHubUrl\n\t\t\t\t\t\t\t\t\t\t: en.connectors.buttons.integrationHub.hrefLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/ToastAction.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "intg-toast-action" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRedirect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(action.title)}`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "href", + "type": "variable", + "value": "href" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "editButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEditButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace-sso.solace.cloud/support/question" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewErrorLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneButton" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneAndDeployButton" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createconnector" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "discard" + }, + { + "name": "dataQa", + "type": "string", + "value": "discard" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "save" + }, + { + "name": "dataQa", + "type": "string", + "value": "save" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveDeploy" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onSubmit(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleDownloadLog" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createAgent" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/SolaceToast.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onDismiss()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "action.variant ?? \"text\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "action.disabled" + }, + { + "name": "href", + "type": "expression", + "value": "action.href ? action.href : undefined" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "dataTags", + "type": "expression", + "value": "action.title" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAction" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, helpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "help-no-access" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, secondaryHelpLink)" + }, + { + "name": "dataQa", + "type": "string", + "value": "secondary-help-no-access" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Configure-Message-Spools.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_deleteprotection" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_service_deletion_protection.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_migration" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/VM-Migration/cloud-vmmig-clone-api-migrate.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_broker_sso_settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_dist_tracing" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-dt-for-cloud.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_environments" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewPassword" + }, + { + "name": "title", + "type": "expression", + "value": "showPassword ? t({ id: \"id_hide_password\", message: \"Hide password\" }) : t({ id: \"id_view_password\", message: \"View password\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/StringWithCopy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopy" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_copy\", message: \"Copy\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/mesh-manager/${eventMesh.id}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_event_mesh" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-scaleup-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewScaleUpLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "type", + "type": "string", + "value": "button" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ggs_tryme.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchTryMe" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenTryMe" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectLibrary(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLibraryDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelection(item)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "open-ticket" + }, + { + "name": "href", + "type": "expression", + "value": "buildSupportURL(isSAP, service.errorId, service.id)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "routeSetParams(ROUTER_MESH_MANAGER_OPEN_LEGACY, { meshId: eventMesh.id })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/account-details/distributed-tracing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenUpgradeDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "(hasNoAutoUpgrades && hasNoUpgrades) || autoUpgradeOperationCancelled(autoUpgradeRequests)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/upgrade-event-broker.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-upgrade-open" + }, + { + "name": "onClick", + "type": "variable", + "value": "onOpen" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setViewLogs(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "view-upgrade-logs" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleViewUpgradeLogs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tutorial.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "dw.url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.api" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.tutorial" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.download[0].url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tconst fileInput = fileInputRef?.current;\n\t\t\t\t\t\tif (fileInput) {\n\t\t\t\t\t\t\tif (fileInput.value) {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tfileInput.value = \"\";\n\t\t\t\t\t\t\t\t} catch (err) {\n\t\t\t\t\t\t\t\t\t// that's fine\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tfileInput.click();\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleCancel(idx)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleSave(idx)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddGroup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || hostnames.length >= MAX_HOSTNAMES" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowCreateHostname" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-hostname" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_storage" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/configure-hostnames.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDisable" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_semp_request" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/enable-semp-over-message-bus.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateEndpoint" + }, + { + "name": "dataQa", + "type": "string", + "value": "create-endpoint" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggle" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasERPLimit || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_erp_event_addon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/erp-add-on.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "toggle_mate_link_encryption" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || mateLinkEncryption.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !canEnable" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableLdapManagement" + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-ldap-management" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_authentication.htm#configure-ldap-management-access\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAccessShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "ldap-management-access" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerClientProfiles" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(CLIENT_PROFILE_PATH)) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !curClusterName" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowClusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-cluster-name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/edit-cluster-name.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || isDisabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMessageSpoolSize" + }, + { + "name": "dataQa", + "type": "string", + "value": "edit-message-spool-size" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleDisableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "distributedTracingStatus == \"error\" || isDisableDistributedTracingInProgress || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-disable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableDistributedTracing" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isEnableDistributedTracingInProgress || !eventBrokerVersionSupportsDistributedTracing || infrastructureRequestInProgress || retrievingDistributedTracingError || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributed-tracing-enable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Features/Distributed-Tracing/Distributed-Tracing-Overview.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(TELEMETRY_PROFILE_PATH)) || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManagerTelemetryProfiles" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCheckConnectionStatus" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isConfigured || !allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleConfigureDataCollection" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "dataQa", + "type": "string", + "value": "dt-button-deploy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding-create" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || syslogs.length >= 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "usernames.length === 0 || !allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowRotatePasswords" + }, + { + "name": "dataQa", + "type": "string", + "value": "rotate_passwords" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnable" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoring-enable" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries || !canConfigure || !!configuringMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-open-broker-manager" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleOpenBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-client-auth" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowAuthentication" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleProfileShowDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "service-auth-edit-profile" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEnableStandardDomainCertAuth" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canConfigure || !allowServiceQueries" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddClientCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-client-cert-auth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/server_certs.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAddDomainCertAuth" + }, + { + "name": "dataQa", + "type": "string", + "value": "add-domain-cert-auth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowServiceQueries" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAdd" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-create" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Categories.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI(path)) || \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\ttrack(TRACK_ELEMENT_CLICK, { \"element-id\": dataQa });\n\t\t\t\t\t\t\topenWindow(getBrokerWebUI(path), serviceId);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/HostUris.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "truststoreUri ?? \"https://cacerts.digicert.com/DigiCertGlobalRootCA.crt.pem\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "open-broker-manager" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "launchBrokerManager" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!allowBrokerRequests" + }, + { + "name": "href", + "type": "expression", + "value": "(allowBrokerRequests && getBrokerWebUI()) || \"\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "openBrokerManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create_service" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCreateService" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_user_access" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/Event-Mesh/mission-control-rbac.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/RRbacExtension.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRetry" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "service.name" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(routeSetParams(detailsUI ? ROUTER_SERVICES_DETAILS : ROUTER_SERVICES_STATUS_LEGACY, { serviceId, tab: \"status\" }))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "close" + }, + { + "name": "dataQa", + "type": "string", + "value": "close" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cancel" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancel" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "createService" + }, + { + "name": "dataQa", + "type": "string", + "value": "createService" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createServiceDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_port_config" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/create-service.htm#Configure-Custom-Ports\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptionsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "cloning-documentation" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/cloud-clone-service.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCustomize" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "reset" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleResetPort" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelServiceClasses.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_services" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_pick_service_type.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_cloud" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/choose-cloud-provider.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoPanelCloudRegion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "help_regions" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/ght_regions.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceAssignmentDelete" + }, + { + "name": "title", + "type": "expression", + "value": "messages.remove" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onRemoveResourceAssignment(resourceAssignment)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"outline\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onAddResourceAssignment(displayedUserTypes[0])" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "addUser" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!ssoBrokerEnabled" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleManageBrokerButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageBrokerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleViewSettingMapping" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/configure-oauth-for-broker-services.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGotoUserGroups" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "variable", + "value": "hyperLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "aupIsLoading" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleAgree" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "id", + "type": "expression", + "value": "`limitChangeButton-${index}`" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/event-management-agents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-config.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/environments.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "/ep/runtime?sortBy=environment" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-enabled`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\thistory.push(`/ep/runtime/templates`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentTypeInfo\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"environmentsInfo\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSidePanelCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close Side Panel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleButtonClick" + }, + { + "name": "dataQa", + "type": "string", + "value": "buttonEventManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "/ep/runtime/templates" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/Event-Portal/event-portal-runtime-templates.htm" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "createEnvButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "onCreateEnvClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfChangesDone()" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "checkIfSaveDisabled()" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveProfileButton" + }, + { + "name": "id", + "type": "string", + "value": "saveButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleApplyButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave" + }, + { + "name": "onClick", + "type": "function", + "value": "() => saveNotifyPreferences()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://api.solace.dev/cloud/reference/using-the-v2-rest-apis-for-pubsub-cloud" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowMore" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleShowLess" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleGroupMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "ugCount <= 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleCreateGroup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "createGroupButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"searchIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "enableSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "id", + "type": "string", + "value": "editSsoConfigurationButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => editSSOConfiguration()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!hasLoginSubdomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setHideSecretKey((state) => !state)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[hideSecretKey ? \"showKey\" : \"hideKey\"]" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SsoConfigurationActions.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => updateSsoConfiguration({ state: \"enabled\" })" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "id", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveSsoConfigurationButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!haveStagedChangesToSave" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "testSsoConfigurationButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "testSsoConfiguration" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!isSsoConfigured" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleSsoSetup" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "id", + "type": "string", + "value": "setupSsoButton" + }, + { + "name": "dataQa", + "type": "string", + "value": "setUpSsoButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "en.accountSettings.learnMoreSSODoc" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadAuditLogs" + }, + { + "name": "dataQa", + "type": "string", + "value": "downloadAuditLogsJsonLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardFilterChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedRow(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "logDetailsCloseButton" + }, + { + "name": "title", + "type": "string", + "value": "Close" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"group-management-link\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"setup-idp-link\", \"link\")" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleGroupClaimHelpLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!claimId" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleTestAccessClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!canDiscardChanges" + }, + { + "name": "onClick", + "type": "variable", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "discardChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "!isEnabled ? () => setIsDialogOpen(true) : () => setIsEditDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!canSave || !(canDiscardChanges || !isEnabled)" + }, + { + "name": "dataQa", + "type": "string", + "value": "saveChangesButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelAddMapping" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "cancelAddClaimMapping" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!groupMappingState ||\n\t\t\t\t\t\tselectedUserGroups.length < 1 ||\n\t\t\t\t\t\t!claimValuesMapping ||\n\t\t\t\t\t\tclaimValueError ||\n\t\t\t\t\t\tclaimValuesMapping.trim().length < 1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "addGroupMappingHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "claimMappingToEdit !== -1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "cancelClaimMappingEditHandler" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => saveMappingDetails(rowData.id)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!claimValuesMapping || selectedUserGroups.length < 1 || claimValueError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormCancel" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancelButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportFormSubmit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSaveButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceCloudStatus\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/users`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestLimitChangeDialogOpen(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/support/question`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "en.overview.eventPortalSection.objectCountHelpLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/ServiceLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/account-details/service-limits`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setIsRequestUpgradeDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsAdvancedSettingsHidden((x) => !x)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "deleteAccountButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setIsDeleteAccountDialogOpen(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(\"/\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sendEmailButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!email.isValid" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleNavigateToLogin" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-notifications\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "stopNotification" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || mutating" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenConfirmationDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "discardChanges" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onDiscardChanges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "NotificationIsActive ? \"updateNotifications\" : \"activateNotifications\"" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !formIsDirty || mutating" + }, + { + "name": "onClick", + "type": "variable", + "value": "onSubmission" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"insights-email-integrations\", \"link\")" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://solace.com/contact/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "patchDocumentationUrl(isSAP, \"https://docs.solace.com/Cloud/environments.htm\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.contactSupport" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"supportPage\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"eventPortalCloudEma\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "underline", + "type": "string", + "value": "always" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tokenManagementHelpLink\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onCreateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "hasMaxNumberOfTokens" + }, + { + "name": "dataQa", + "type": "string", + "value": "createApiTokenButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCopyToken" + }, + { + "name": "dataQa", + "type": "string", + "value": "copyTokenButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"solaceOpenAPIV2\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "mode === \"create\" ? \"text\" : \"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCancel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createTokenIsLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTokenBtn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "onRegenerateTokenClick" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "regenerateTokenButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/user-settings/notify-settings`)" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationSettingsButton" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.settings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refreshNotificationSettingsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refetchNotifications()" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "markAllNotificationsReadButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => markAllRead()" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${header.key}-copy`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => navigator.clipboard.writeText(header.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "update" + }, + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-update`" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!!readOnlyAccess || item.collectorTracingProfileStatus?.startsWith(CollectorTracingProfileStatus.INIT_SYNC)" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleUpdate(item)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "`/services/${item.serviceId}`" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/DistributedTracingInfoBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "brandableTextValueConverter(\"tracingDestinationLink\", \"link\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingProfile.infoMessage.link.href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "links.otlpHttp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "viewServicesButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSynchTracingDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "tracingLimits.infoMessage.link.href" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "tracingDestinationCreationIsDisabled ? \"text\" : \"outline\"" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "tracingDestinationCreationIsDisabled" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setTracingDialog({ mode: Mode.Create, isOpen: true })" + }, + { + "name": "dataQa", + "type": "string", + "value": "createTracingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/utils/helper.tsx", + "props": [ + { + "name": "href", + "type": "variable", + "value": "link" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!link" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "openLinkInNewTab", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`link-${text}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "toggleShowExportDialog" + }, + { + "name": "dataQa", + "type": "string", + "value": "exportCSVButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearAllFilters" + }, + { + "name": "dataQa", + "type": "string", + "value": "clearAllButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "exportCloseButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "downloadCSV" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "isFetching || !!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "exportDownloadButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/datacenters/${item.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "onRefresh" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!cluster?.id || isRefreshing" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh-cluster-button" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSearchField(EMPTY_STRING)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleSearchPanel" + }, + { + "name": "dataQa", + "type": "string", + "value": "openFilterIcon" + }, + { + "name": "title", + "type": "string", + "value": "Manage Filters" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleClearAllFilters()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setClearFiltersFlag(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/spool-configs`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "startIcon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/create`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/OrganizationsMain.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/createorganization`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "moreDetailsErrorButton" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetails(errorKey)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "pushLogPipelines" + }, + { + "name": "dataQa", + "type": "string", + "value": "createUpdateLogPipelineButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "monitoringJobStatus === TaskStatus.QUEUED || monitoringJobStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "queryTestLog" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateLogFacets" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "queryTestLogStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateAllMonitorsButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setOpenDialog(true)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "notificationUpdateStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "validateDatadogResources" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateResources" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "validateStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateOrgDefaultsButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "_.isEmpty(dirtyFields) || errorFetchingOrgDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateServicesMonitoringConfigButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetDatadogProxyDialogService(service);\n\t\t\t\t\t\tsetOpenDatadogProxyDialog(true);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tsetAgentStatusDialogService(service);\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(true);\n\t\t\t\t\t\t}" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!service.monitoringAgentEnabled" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`agentVersionButton_${service.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/org-services/${row?.serviceId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateRMMSSettingsButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "configureNewDDSubOrgButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "createNewDatadogSuborg" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "createDatadogSuborgLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateAPIKeysButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "validateKeys" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "validateApiKeysStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInsightsRolesButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "createInsightsRoles" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!ddOrgData?.apiKey || createInsightsRolesLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/995065871/PE+Enable+PubSub+Insights#PE%3AEnablePubSub%2BInsights-SettinguptheDatadogSubOrgintegrations" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "createUpdateLogPipelineButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "pushLogPipelines" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "pushLogPipelinesStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "pushTestLogButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "pushTestLog" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "pushTestLogLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.datadoghq.com/logs/explorer/facets/#create-facets" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateLogFacetsButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "queryTestLog" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "queryTestLogStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "updateDDHandlesAndResourcesButton" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "notificationUpdateStatus == TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "validateMonitorsDashboardsButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "validateDatadogResources" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "validateDatadogResourcesStatus === TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "enableInsightsPolicyButton" + }, + { + "name": "onClick", + "type": "variable", + "value": "enableInsightsPolicy" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "enableInsightsPolicyStatus == TaskStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "type", + "type": "string", + "value": "submit" + }, + { + "name": "dataQa", + "type": "string", + "value": "inviteAdminUsersButton" + }, + { + "name": "onClick", + "type": "function", + "value": "() => inviteAdminUsers(adminUsersList)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "inviteAdminUsersLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => add()" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!attribute || !operator || !value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setQueryShow(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "create-plan" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleModal()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "manage-upgrade-button" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handlePlanRoute()" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "create" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!autoUpgrades" + }, + { + "name": "onClick", + "type": "variable", + "value": "setCreateOpen" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "schedule-upgrade-run" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://docs.solace.com/Cloud/drawdown.htm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/organizations/${row.orgId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/evmrs/${evmrId}/details/eventManagementAgents/${row.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/organizations/${row.orgId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/datacenters/${row.datacenterId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setOpenUpdateDialog(true)" + }, + { + "name": "variant", + "type": "string", + "value": "call-to-action" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => setOpenRollbackDialog(true)" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "editMetadata" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "dataQa", + "type": "string", + "value": "create" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setCreateDialog(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://sol-jira.atlassian.net/wiki/spaces/MPE/pages/3361506021/Runbook+for+New+Order+Fulfillment" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "href", + "type": "expression", + "value": "createBizOrganization.messages.runbookLink" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "exitFormQa" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExitFormButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsPageActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "reviewSaveFormQa" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "isFieldReadOnly" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tif (!isEmailValid || inputError || error || validation || orgDetails.error || !readyToSave) {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(false);\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetIsSaveAllowed(true);\n\t\t\t\t\t\t\t\thandleReviewSaveButton();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleClearSearchText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!isEmail(currentEmailEntry)" + }, + { + "name": "key", + "type": "expression", + "value": "\"closeIcon\"" + }, + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => addEmail()" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEmailButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "href", + "type": "expression", + "value": "`/organizations/${secondary}`" + }, + { + "name": "title", + "type": "expression", + "value": "secondary.toString()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "props.isEnabled ? \"outline\" : \"call-to-action\"" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleToggleClick" + }, + { + "name": "data-qa", + "type": "expression", + "value": "props.isEnabled ? \"disable-button\" : \"enable-button\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshSubOrgs" + }, + { + "name": "onClick", + "type": "function", + "value": "() => dispatch(fetchAllDatadogInfos())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshArtifactVersion" + }, + { + "name": "onClick", + "type": "function", + "value": "() => dispatch(fetchDatadogArtifactVersion())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refreshDT" + }, + { + "name": "onClick", + "type": "function", + "value": "() => dispatch(fetchDistributedTracingDetails())" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "distributed-tracing" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "insights-settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "title", + "type": "string", + "value": "Refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "insights-settings" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "title", + "type": "string", + "value": "Refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "href", + "type": "string", + "value": "https://app.datadoghq.com/logs?query=service%3Amaas-monitoring%20%40logger_name%3Acom.solace.maas.monitoring.%2A%20%28%40event%3AINSIGHTS_ONBOARDING%20OR%20%40event%3AINSIGHTS_OFFBOARDING%29%20&cols=host%2Cservice&index=%2A&messageDisplay=inline&refresh_mode=sliding&stream_sort=desc&viz=stream&live=true" + }, + { + "name": "variant", + "type": "string", + "value": "link" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSidekickDeploymentDetailsRefresh()" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshDetailsInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSidekickDeploymentStatusRefresh()" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshStatusInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(link)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "refetch" + }, + { + "name": "dataQa", + "type": "string", + "value": "retrieve" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handelCopy" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!details" + }, + { + "name": "dataQa", + "type": "string", + "value": "copy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/connector-deployments/${row?.deploymentId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/connector-deployments/${row?.deploymentId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`details-${request.deploymentId}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setErrorDetails(`${request.deploymentId}-disable`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleManageContacts(item.type)" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleCopyEmails(item.emails, item.type)" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!item.emails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => refetch()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleRefresh" + }, + { + "name": "dataQa", + "type": "string", + "value": "refresh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\twindow.open(`/datacenters/${row.id}`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "variant", + "type": "string", + "value": "link" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Broker, isOpen: true })" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "addBrokerButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "outline" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setAddCompatibilityDialog({ compatibilityType: CompatibilityType.Collector, isOpen: true })" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "readOnlyAccess" + }, + { + "name": "dataQa", + "type": "string", + "value": "addCollectorButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(link)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "refetch" + }, + { + "name": "dataQa", + "type": "string", + "value": "retrieve" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "onClick", + "type": "variable", + "value": "handelCopy" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!configs?.data" + }, + { + "name": "dataQa", + "type": "string", + "value": "copy" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleCollectorInfoRefresh" + }, + { + "name": "isDisabled", + "type": "variable", + "value": "refreshInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "string", + "value": "collectorDetails" + }, + { + "name": "onClick", + "type": "function", + "value": "() => window.open(`/distributed-tracing-collectors/${row?.serviceId}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "row?.id + \"_RefreshButton\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "row?.collectorLoadingStatus == CollectorLoadingStatus.IN_PROGRESS ||\n\t\t\t\t\t\t\t\t\trow?.collectorLoadingStatus == CollectorLoadingStatus.INITIAL" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleRefresh(row?.infrastructureId)" + }, + { + "name": "title", + "type": "string", + "value": "Refresh" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`details-${request.infrastructureId}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setErrorDetails(request.infrastructureId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() => history.push(`/organizations/${orgId}`)" + }, + { + "name": "title", + "type": "string", + "value": "Close" + }, + { + "name": "variant", + "type": "string", + "value": "icon" + } + ] + } + ] + }, + { + "component": "SolaceEnvironmentLabel", + "count": 18, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/EnvironmentUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "standard" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[environment]" + }, + { + "name": "...", + "type": "spread", + "value": "environmentOption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + }, + { + "name": "variant", + "type": "string", + "value": "standard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "variable", + "value": "icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "testItem.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "testItem.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "fgColor", + "type": "expression", + "value": "testItem.fgColor ?? \"#000000\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(testItem.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "title" + }, + { + "name": "label", + "type": "expression", + "value": "environment.name" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[environment.icon as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "env.name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "env.fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "env.bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(env.icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "fgColor", + "type": "expression", + "value": "fgColor ?? \"#000000\"" + }, + { + "name": "bgColor", + "type": "expression", + "value": "bgColor ?? \"#FFFFFF\"" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[(icon ?? \"DEPLOYED_CODE\") as SolaceEnvironmentIcons]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "envOption.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "envOption.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "envOption.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "envOption.icon" + } + ] + } + ] + }, + { + "component": "SolaceTypography", + "count": 868, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/designer/importDomainUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h5\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "color", + "type": "expression", + "value": "bulkMoveLimitExceeded ? \"error\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "marginTop", + "type": "number", + "value": "0.5" + }, + { + "name": "marginBottom", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessInfo.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingBottom", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"primary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontSize", + "type": "number", + "value": "12" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mb", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "sx", + "type": "expression", + "value": "fromGraphView ? { color: \"text.secondary\" } : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EmptyStatePage.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "messageDetailsAddEvents" + }, + { + "name": "width", + "type": "expression", + "value": "\"max-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginBottom: 1, color: ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/memDetailsContentUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabel\"" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "expression", + "value": "selected && 500" + }, + { + "name": "pl", + "type": "expression", + "value": "imageComponent ? 2 : 5.25" + }, + { + "name": "pr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.brand.w30 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "width", + "type": "number", + "value": "600" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: invertTextColor }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "showGraphic ? 500 : \"100%\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: invertTextColor }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.5rem\", color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: `${theme.palette.ux.primary.text.w10}` }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"h3\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "fontSize", + "type": "expression", + "value": "`24px`" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeQuestionPopup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "reuseIndexPurposeDescriptionPopup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/AddNewNodeV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "style", + "type": "object", + "value": "{ marginBottom: \"16px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DragAndDropPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`filtername-${index}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-template`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "color", + "type": "expression", + "value": "\"warning\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventAccessRequestInfoBlurb.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "expression", + "value": "\"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "id", + "type": "string", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationDomainForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/MultipleInputOutput.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/Parameters.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ ml: 1 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_fieldName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_payload_propertyType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DynamicDestinationSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/MappingFieldWrapper.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_wrapper_fieldType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_constant_propertyType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyName`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + }, + { + "name": "id", + "type": "expression", + "value": "`${convertedId}_header_propertyType`" + }, + { + "name": "pr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "paddingY", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "config.key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"apiErrorResponse\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorPrefix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"errorMessages\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"generalErrorSuffix\"" + }, + { + "name": "display", + "type": "string", + "value": "inline" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[500] }" + }, + { + "name": "id", + "type": "string", + "value": "conn_flow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connector_marketing_description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorZeroState.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "mr", + "type": "number", + "value": "4" + }, + { + "name": "id", + "type": "string", + "value": "connector_marketing_help" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "expression", + "value": "\"6px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "textVariant ? textVariant : \"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "ml", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\toverflow: \"hidden\",\n\t\t\t\t\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\t\t\t\t\tdisplay: \"-webkit-box\",\n\t\t\t\t\t\t\t\tWebkitLineClamp: \"3\",\n\t\t\t\t\t\t\t\tWebkitBoxOrient: \"vertical\"\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.deprecated.secondary.wMain, fontSize: 12 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain, fontSize: 12 }" + }, + { + "name": "ml", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "mr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ width: \"90%\", wordWrap: \"break-word\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "color", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "variant ?? \"body1\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"caption\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mb", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "pl", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "display", + "type": "string", + "value": "inline-block" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\thistory.push({\n\t\t\t\t\t\t\t\t\tpathname: `/micro-integrations/${id}/logs/${row.attributes.timestamp}`\n\t\t\t\t\t\t\t\t})" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/MultiPartsLabel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/CheckAccess.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "component", + "type": "string", + "value": "span" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/TryMe.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Sections.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Property.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "component", + "type": "string", + "value": "div" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/layout/Tiles.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "ml", + "type": "string", + "value": "-0.5rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "pt", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "minWidth", + "type": "string", + "value": "634px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/AutoRequestStatus.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "marginTop", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SEMPRequestCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/EventAddOnERPCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MateLinkEncryptionCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClientProfilesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/CertificateAuthoritiesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.text.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCardsView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "string", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "key", + "type": "expression", + "value": "`roles-${label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "role" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "component", + "type": "string", + "value": "div" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"16px\", fontWeight: \"500\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + }, + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ alignContent: \"center\" }" + }, + { + "name": "fontSize", + "type": "number", + "value": "24" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/about/AboutPage.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "4" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.ux.secondary.wMain }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsZeroState.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "3.3" + }, + { + "name": "ml", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "mt", + "type": "string", + "value": "1rem" + }, + { + "name": "sx", + "type": "object", + "value": "{ opacity: 0.8 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "securitySettingsWarning" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettingsTile.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "subTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ whiteSpace: \"initial\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogs.styles.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"bolder\", color: \"inherit\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/utils/groupManagement.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"inline-block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "item" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "0.5" + }, + { + "name": "mb", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementHeader.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"1.33rem\", marginBottom: \".3rem\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "14" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + }, + { + "name": "data-qa", + "type": "string", + "value": "supportModalSuccessMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "display", + "type": "expression", + "value": "\"contents\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "display", + "type": "expression", + "value": "\"block\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportTicketCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "className", + "type": "string", + "value": "message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "pb", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "3" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "pb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountUserCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverviewSection.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ paddingLeft: \"0\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "desc" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "variable", + "value": "index" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.style.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/RouteNotFound.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "detailsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "capitalize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noProblemText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.text.secondary }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingRight: theme.spacing() }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + }, + { + "name": "sx", + "type": "object", + "value": "{ wordBreak: \"break-all\", whiteSpace: \"normal\" }" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "messageHeading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "className", + "type": "variable", + "value": "attachReadStateClassName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "paddingBottom", + "type": "expression", + "value": "theme.spacing()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "left" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontWeight", + "type": "string", + "value": "bold" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "right" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "marginTop", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "right" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "align", + "type": "string", + "value": "right" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersLoadingMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportClustersSuccessMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: \"text.secondary\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/CommonComponents.tsx", + "props": [ + { + "name": "data-qa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "minHeight", + "type": "expression", + "value": "theme.spacing(4)" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "aggregationDetailsDescription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "noSearchResultsToShow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "3" + }, + { + "name": "paddingTop", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "marginLeft", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "marginLeft", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "1" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "caption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ alignContent: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "color", + "type": "expression", + "value": "result.healthy ? \"success\" : \"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: theme.spacing(3.6) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tpaddingTop: ddOrgData?.subOrgName ? theme.spacing(1) : theme.spacing(3.6),\n\t\t\t\t\t\t\t\twhiteSpace: \"nowrap\",\n\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\tflexDirection: \"column\"\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ whiteSpace: \"nowrap\" }" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h1" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingBottom: theme.spacing(3), paddingTop: theme.spacing(3) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\tpaddingTop: theme.spacing(3.6),\n\t\t\t\t\t\t\t\t\t\t\tmarginLeft: theme.spacing(7),\n\t\t\t\t\t\t\t\t\t\t\tdisplay: \"flex\",\n\t\t\t\t\t\t\t\t\t\t\tflexDirection: \"row\"\n\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ width: theme.spacing(10), marginRight: theme.spacing(4) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ width: theme.spacing(10), marginRight: theme.spacing(4.5) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ width: theme.spacing(10), marginRight: theme.spacing(2.5) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ marginRight: theme.spacing(4), width: theme.spacing(10) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ marginRight: theme.spacing(4.5), width: theme.spacing(10) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ marginRight: theme.spacing(2.5), width: theme.spacing(10) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"500\" }" + }, + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "row.result === \"Fail\" && { color: \"error\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "row.result === \"Fail\" && { color: \"error\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "row.level === \"HIGH\" && { fontWeight: 900 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "props": [ + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "1" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBarTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "pb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.util.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.util.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "px", + "type": "number", + "value": "2" + }, + { + "name": "py", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "mr", + "type": "number", + "value": "6" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: \"14px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h4" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "marginBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "fontSize", + "type": "string", + "value": "24px" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + }, + { + "name": "data-qa", + "type": "string", + "value": "pcuCostValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ fontSize: theme.typography.caption, color: theme.palette.grey[700] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeNameQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "fontSize", + "type": "expression", + "value": "\"14px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "pr", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "className", + "type": "string", + "value": "label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubSelection.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "style", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[600] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "fontSize", + "type": "number", + "value": "16" + }, + { + "name": "mb", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "orgDetailHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "accountHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productHeaderQa" + }, + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "mt", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "fontWeight", + "type": "number", + "value": "400" + }, + { + "name": "paddingRight", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeColumnQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "textAlign", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "productCodeNameQa" + }, + { + "name": "fontWeight", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewProductSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ float: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "paddingBottom", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading-message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "no-results-message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h5" + }, + { + "name": "fontWeight", + "type": "string", + "value": "500" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`state-group-${state.toLowerCase()}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/SavedMicroIntegrationsGrouping.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "type" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`type-count-${state.toLowerCase()}-${type}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "data-qa", + "type": "string", + "value": "no-features" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "gutterBottom", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "ref", + "type": "variable", + "value": "ref" + }, + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\tmaxWidth: \"100%\",\n\t\t\t\toverflow: \"hidden\",\n\t\t\t\ttextOverflow: \"ellipsis\",\n\t\t\t\twhiteSpace: \"nowrap\"\n\t\t\t}" + }, + { + "name": "title", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "sx", + "type": "object", + "value": "{ fontWeight: \"500\" }" + }, + { + "name": "variant", + "type": "string", + "value": "h2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "color", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"flex\", alignItems: \"center\" }" + }, + { + "name": "mb", + "type": "number", + "value": "2" + }, + { + "name": "fontWeight", + "type": "number", + "value": "500" + }, + { + "name": "fontSize", + "type": "number", + "value": "16" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[700] }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + }, + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.grey[700], display: \"flex\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ color: theme.palette.primary.main }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(6)" + }, + { + "name": "variant", + "type": "string", + "value": "h3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "mb", + "type": "expression", + "value": "theme.spacing(3)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "body1" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginBottom: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "h3" + }, + { + "name": "sx", + "type": "object", + "value": "{ mb: 2 }" + } + ] + } + ] + }, + { + "component": "SolaceConfirmationDialog", + "count": 235, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/utils/leavePage/LeavePageConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "confirmationObj.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.cancelLabel,\n\t\t\t\t\t\tdataQa: \"returnToForm\",\n\t\t\t\t\t\tonClick: () => closeModal(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: confirmationObj.okLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"leaveAndDiscard\",\n\t\t\t\t\t\tonClick: () => closeModal(true)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/DeleteModeledEventMeshDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Modeled Event Mesh" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteModeledEventMesh.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Add Existing Event Broker" + }, + { + "name": "isOpen", + "type": "expression", + "value": "open && !openMessagingServiceDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleAddExistingMessagingService();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled: isLoading || addInProgress || !!submitError?.message\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "addInProgress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "generateTitleDialog(mode)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMEM, disableSave)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/EPTopologyPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "title || \"Event Broker Connection Details\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(isLoading, mode, cancel, submitMessagingService, false, kafkaDelimiterIsNotSet)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.deployToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.move(\n\t\t\t\tselectedRowIds && selectedRowIds?.length === 1 ? entityTypeToLabel(entityType) : entityTypeToLabelPlural(entityType)\n\t\t\t)" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: onClose },\n\t\t\t\t{ label: en.common.button.move, variant: \"call-to-action\", onClick: handleSubmit, isDisabled: moveDisabled }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "startMove.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveErrorDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: onClose }]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.entities.labels.bulkMove.errorTitle(entityTypeToLabelPlural(entityType))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.add.addToEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messages.credentials.saveCredentialsAndContinue,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: onSave,\n\t\t\t\t\t\t\tdataQa: \"saveCredentialsAndContinue\",\n\t\t\t\t\t\t\tisDisabled: !!error || !!previewError || !isValid\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "`Add ${application?.name} ${selectedApplicationVersion?.version} to ${eventBroker?.name}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: common.button.add,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\t\tisDisabled: !!error || !!previewError || !!eventAccessRequestError || hasInlineError\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: () => onClose(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.action,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleOnClick,\n\t\t\t\t\tdataQa: \"updateEntityInEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError || !!previewError || !!eventAccessRequestError || submitting || !entityVersion?.id || hasInlineError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "submitting || isDeploymentPreviewLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tDetected Event Flow Mismatches\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tEdit Application\n\t\t\t\t\t\t\n\t\t\t\t\t
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(cancel)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.headers.addEventApiProduct" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, variant: \"text\", onClick: onClose },\n\t\t\t\t{ label: en.common.button.add, variant: \"call-to-action\", onClick: handleSubmit }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Add to Environment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit,\n\t\t\t\t\tdataQa: \"addEntityToEnvironment\",\n\t\t\t\t\tisDisabled: !!submitError\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleCloseWithErrors }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel}`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteEntityHook.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "applicationVersionId" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/EPCatalogPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "getTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "string", + "value": "KafkaSampleSuccessDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.selectDialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.selectDialog.select,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tisDisabled: !value,\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "deleteSampleError ? en.eventPortalResources.labels.deleteSample.deleteTitleFailed : en.eventPortalResources.labels.deleteSample.deleteTitle" + }, + { + "name": "actions", + "type": "variable", + "value": "getButtons" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "showProgressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tsetIsDialogOpen(false);\n\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Custom Attributes" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"customAttributes-cancel\", onClick: () => setIsDialogOpen(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tdataQa: \"customAttributes-save\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: disabled || isSaving === true,\n\t\t\t\t\tonClick: () => handleSave()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isSaving" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EPDashboardPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "typeof errorObject.message === \"string\" ? errorObject.message : null" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.errorDialog.button}`, dataQa: \"catalogErrorDialog\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "versionStateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Manage Lifecycle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tonClick: handleLifecycleChanges,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isSaveDisabled()\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "changeEntityVersionStateHook?.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/GraphLayoutResetWarningDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCancel },\n\t\t\t\t{ label: resetButtonLabel, variant: \"outline\", onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ConfirmExitEntityEditDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "confirmExitDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Close ${entityTypeToLabel(entityType)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Return To Form\", variant: \"outline\", onClick: handleCancel }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteVersionDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete ${entityTypeLabel} Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCancel },\n\t\t\t\t{ label: !isLastVersion || keepParent ? \"Delete Version\" : `Delete Version & ${entityTypeLabel}`, variant: \"outline\", onClick: handleDelete }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Duplicate Application Version`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ dataQa: \"save\", label: \"Save\", variant: \"call-to-action\", isDisabled: duplicateEntityVersion.isLoading || !isValid, onClick: handleSave }\n\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "duplicateEntityVersion.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Warning\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Return to Form\", onClick: onClose },\n\t\t\t\t{ label: \"Reload\", variant: \"outline\", onClick: handleReload }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Configure Variable" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EPDomainPageLayout.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: refreshGraphRequiredOnClosingErrorDialog ? \"Close & Refresh Graph\" : \"Close\", onClick: closeErrorDialog, variant: \"outline\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutConflictDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Publish Graph Layout\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "layoutConflictDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: `Return to ${entityLabel}`, onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Publish Layout\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: graphUpdating,\n\t\t\t\t\tonClick: handleContinuePublishLayout,\n\t\t\t\t\tdataQa: \"continuePublishLayout\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Changes Partially Published\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "partialPublishDialogOpen" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t{ label: \"Refresh\", variant: \"outline\", onClick: handleRefreshGraph, id: \"refreshGraph\", dataQa: \"refreshGraph\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/RemoveAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? defaultTilte" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Remove\", dataQa: \"removeAssociation\", variant: \"outline\", onClick: () => onRemove(idToRemove) }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/designer/FailDownloadAsyncApiDialog.stories.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "\"fail-download-async-api\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, variant: \"outline\" as const, onClick: action(\"onClose\") }]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "false" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "unableToDeleteDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Unable to Delete" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseUnableToDeleteDialog },\n\t\t\t\t\t{ label: \"Open Modeled Event Mesh\", variant: \"outline\", onClick: handleOpenModeledEventMesh }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/SkipInstallWalkthroughDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Skip and Install" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Skip\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleSkip\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Connection File Created" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose, dataQa: \"connectionFileDialogCloseButton\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Setting Up Offline Event Management Agent" + }, + { + "name": "isOpen", + "type": "variable", + "value": "standaloneDialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: handleStandaloneClose, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Management Agent Set Up Complete" + }, + { + "name": "isOpen", + "type": "variable", + "value": "emaSetupCompleteDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tonClick: handleEmaSetupCompleteDialogClose,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Go to Modeled Event Meshes\",\n\t\t\t\t\t\t\tonClick: handleGotoMEM,\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to Delete ${runtimeAgentName}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Management Agent Connection" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: deleteEventManagementAgent.isLoading,\n\t\t\t\t\t\t\tonClick: handleDelete\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Custom Discovery Scan" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Run Discovery Scan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: isRunDiscoveryScanButtonDisabled,\n\t\t\t\t\tonClick: initiateCustomScan\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Data Collection\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Data Collection" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", isDisabled: deleteScan.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Run Discovery Scan" + }, + { + "name": "actions", + "type": "expression", + "value": "renderDialogActionButtons(messagingServicesForDataCollection)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/EventBrokerErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteConfirmationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Event Broker From Event Portal" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleCloseDeleteConfirmationDialog },\n\t\t\t\t\t\t{ label: \"Delete From Event Portal\", variant: \"outline\", onClick: handleDeleteMessagingServiceConfirmation }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "eventManagementAgentNeedsUpdateDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "Event Management Agent Needs Update" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Close\", variant: \"text\", onClick: handleCloseEMAUpdateDialog },\n\t\t\t\t\t\t{ label: \"Open Event Management Agent\", variant: \"outline\", onClick: handleGoToEMA }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Data Collection Logs\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add Environment Association\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(\n\t\t\t\tisLoading || selectedEntityVersions?.length === 0 || selectedEntityVersions?.length === versionEntitiesAlreadyAddedCounter,\n\t\t\t\tcancel,\n\t\t\t\tupdate\n\t\t\t)" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "isAddMode ? (\n\t\t\t\t\t
\n\t\t\t\t\t\t setIsAddMode(false)}>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\tAdd Environment Association\n\t\t\t\t\t
\n\t\t\t\t) : (\n\t\t\t\t\t<>{showViewOnly ? \"View Environment Associations\" : \"Manage Environment Associations\"}\n\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "showViewOnly\n\t\t\t\t\t? [{ label: \"Close\", variant: \"call-to-action\", onClick: handleClose }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleClose },\n\t\t\t\t\t\t\t{ label: isAddMode ? \"Add\" : \"Save\", variant: \"call-to-action\", onClick: handleClick }\n\t\t\t\t\t ]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeCompareDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "auditDetail?.status === AUDIT_RESULT_VALUES.designerOnly ? \"Configuration\" : \"Runtime Configuration\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeDetailsDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"closeConfirmDialog\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"applyConfirmDialog\",\n\t\t\t\t\tonClick: () => onApply(selectedQuickAction, selectedTag, showDialogAgain, selectedAudits),\n\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgressDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Import Progress" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tdataQa: \"auditImport-close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => setAuditImportProgressDialogOpen(false)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Cancel\", variant: \"outline\", onClick: onClose, dataQa: \"closeConfigDialog\" }]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportDialogContainer.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "!!isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"cancelAuditButton\" },\n\t\t\t\t{ label: \"Import\", variant: \"call-to-action\", isDisabled: auditInError, onClick: handleImport, dataQa: \"importAuditButton\" }\n\t\t\t]" + }, + { + "name": "customAction", + "type": "variable", + "value": "customAction" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CelebratoryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "renderHeader()" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "application.configuration.setDefaultTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: application.configuration.setDefaultTemplate,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetObservedConfiguration({\n\t\t\t\t\t\t\t\t\tname: configurationName,\n\t\t\t\t\t\t\t\t\tvalue: toPrettifiedString(DEFAULT_SOLACE_QUEUE_TEMPLATE_SCHEMA)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "defaultTemplateConfirmationDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/DeleteTemplateConfirmationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.common.button.cancel, onClick: () => onClose() },\n\t\t\t\t{ label: en.common.button.delete, dataQa: \"deleteTemplate\", variant: \"outline\", onClick: handleDeleteTemplate }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterErrorDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"learningCenterErrorDialog\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "contentText", + "type": "variable", + "value": "description" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.errorTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setApiError(null) }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceQueueTemplate.useACustom : messagesConfiguration.switchToTemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: modeSelectionToConfirm === Mode.custom ? messagesConfiguration.customize : messagesConfiguration.useTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.template) {\n\t\t\t\t\t\t\t\t\tupdateUserConfigValues({}, true);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.addRequestHeader" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.button.cancel,\n\t\t\t\t\tonClick: () => handleClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tdataQa: \"add-request-header-submit\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tlabel: en.application.configuration.restDeliveryPoint.addRequestHeader,\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleAddRequestHeader();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "modeSelectionToConfirm === Mode.custom ? messagesConfiguration.solaceClientProfileName.useACustom : messagesConfiguration.useATemplate" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: messagesCommon.button.cancel,\n\t\t\t\t\t\t\tdataQa: \"cancelAction\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel:\n\t\t\t\t\t\t\t\tmodeSelectionToConfirm === Mode.custom\n\t\t\t\t\t\t\t\t\t? messagesConfiguration.solaceClientProfileName.customize\n\t\t\t\t\t\t\t\t\t: messagesConfiguration.selectTemplate,\n\t\t\t\t\t\t\tdataQa: `confirmSwitchFrom_${mode}`,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tif (modeSelectionToConfirm === Mode.custom) {\n\t\t\t\t\t\t\t\t\tsetValue(FormCustomizedClientProfileName, observedConfiguration ?? \"\");\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\treset(modeSelectionToConfirm === Mode.template);\n\t\t\t\t\t\t\t\tsetMode(modeSelectionToConfirm);\n\t\t\t\t\t\t\t\tsetModeSelectionToConfirm(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Delete Application Domain\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DeleteDomainDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Application Domain`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: \"Cancel\", onClick: onClose, id: \"cancel\", dataQa: \"cancel\" },\n\t\t\t\t\t\t{ dataQa: \"delete\", label: \"Delete\", variant: \"outline\", isDisabled: deleteApplicationDomain.isLoading, onClick: handleDelete }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deleteApplicationDomain.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone();\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Application Domain Export Preview" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"domainExport-cancel\", onClick: () => onCancel() },\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Export\",\n\t\t\t\t\tdataQa: \"domainExport-confirm\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: !!errorMsg,\n\t\t\t\t\tonClick: () => onExport()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "customAttributeValidations?.title" + }, + { + "name": "isOpen", + "type": "expression", + "value": "!!customAttributeValidations" + }, + { + "name": "actions", + "type": "expression", + "value": "customAttributeValidations?.actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportAction.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetErrorMsg(\"\");\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "appDomainCount === 1 ? \"Importing Application Domain\" : \"Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "\"The import may take several minutes.\"" + }, + { + "name": "actions", + "type": "null", + "value": "null" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImport.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Error Importing Application Domains\"" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "contentText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tonDone(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Kafka Settings\"" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: onClose },\n\t\t\t\t{ label: \"Save\", variant: \"outline\", isDisabled: hasFetchError || hasSaveError || delimiter === NOT_SET, onClick: handleSave }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "details.label" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: en.common.button.close, onClick: () => setDetails(null), variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Select Shared Events" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "expression", + "value": "generateDialogActionButtons(searchEventsForParent.isLoading, onClose, handleAddToGraph, !(selectedEvent && selectedEventVersion))" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"lg\"" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t
{`${collisionError ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "showErrorDialog" + }, + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${collisionErrors ? \"Unable to \" : \"\"}${en.eventApi.headers.download}`}
\n\t\t\t\t\t\t
" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "eventApi.id" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"md\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.eventApiProduct.labels.availability.dialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: en.common.button.cancel, onClick: () => setOpen(false) },\n\t\t\t\t\t\t{ label: en.eventApiProduct.buttons.setAsAvailable, onClick: onSubmit }\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "updatePublishState.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "error.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "contentText", + "type": "expression", + "value": "error.message" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetOpen(false);\n\t\t\t\t\t\t\t\tsetErrorDialogOpen(false);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "userNotFoundDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "User No Longer Exist" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tlabel: \"Close & Clear Filters\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\t\t\tonClick: handleCloseAndClearFilters\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Revoke Event Access\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Revoke Event Access" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Revoke Access\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: declineEventAccessRequest.isLoading\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Unable to Review Event Access Request\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: onCancel }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Review Event Access Request" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Send Review\",\n\t\t\t\t\t\t\tonClick: handleSendReview,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: sendReviewButtonDisabled,\n\t\t\t\t\t\t\tdataQa: \"sendReviewButton\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "approveEventAccessRequest.isLoading || declineEventAccessRequest.isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SubscriptionItem.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Subscription`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteSubscriptionButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(consumerId, index), dataQa: \"deleteSubscriptionButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "deleteDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`Delete Consumer`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", onClick: handleCloseDeleteDialog, id: \"cancel\", dataQa: \"cancelDeleteConsumerButton\" },\n\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: handleDelete, dataQa: \"deleteConsumerButton\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "errorObject.title || \"Error\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "errorObject.message" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "failedTopicDomains?.length > 0\n\t\t\t\t\t? [{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: \"Edit Topic Domains\", variant: \"text\", onClick: onReturn },\n\t\t\t\t\t\t\t{ label: \"Use Duplicates\", variant: \"outline\", onClick: onContinue }\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ dataQa: \"topicAddressResourcesCancel\", label: \"Cancel\", variant: \"outline\", onClick: onReset },\n\t\t\t\t{ dataQa: \"topicAddressResourcesDone\", label: ctaLabel, variant: \"call-to-action\", onClick: onDone }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/PreventNewEventVersionDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "\"Topic Address Required\"" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestsTab.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!error" + }, + { + "name": "title", + "type": "expression", + "value": "\"Error Sending Requests\"" + }, + { + "name": "contentText", + "type": "expression", + "value": "error ?? \"\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", onClick: closeErrorDialog, variant: \"outline\" }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.removeCredentials" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: common.button.cancel, onClick: () => setRemoveCredentialsData(null) },\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: common.button.remove,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\t\t\tawait deleteConfiguration.mutateAsync(removeCredentialsData).then(() => {\n\t\t\t\t\t\t\t\t\t\trefreshApplicationDeploymentPreviews.refresh();\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} catch (error) {\n\t\t\t\t\t\t\t\t\thandleBackendError(messages.credentials.removeCredentialsErrorTitle, error);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t// close the dialog\n\t\t\t\t\t\t\t\tsetRemoveCredentialsData(null);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "isEditing\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{ label: common.button.cancel, variant: \"text\", onClick: () => setOpen(false), dataQa: \"credentialsCancel\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: common.button.save,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tonClick: () => onSave(),\n\t\t\t\t\t\t\t\tisDisabled: isLoading || !isValid || !!error,\n\t\t\t\t\t\t\t\tdataQa: \"credentialsSave\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [{ label: common.button.close, variant: \"call-to-action\", onClick: () => setOpen(false), dataQa: \"credentialsClose\" }]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isLoading" + }, + { + "name": "title", + "type": "expression", + "value": "getInProgressTitle(activeStep)" + }, + { + "name": "actions", + "type": "array", + "value": "[]" + }, + { + "name": "linearProgressIndicator", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "errorMessage !== \"\"" + }, + { + "name": "title", + "type": "string", + "value": "Encountered Error while Creating Assets" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "genAiErrorMessage !== \"\"" + }, + { + "name": "title", + "type": "expression", + "value": "`Encountered Error while ${getInProgressTitle(activeStep)}`" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"call-to-action\", onClick: () => setGenAiErrorMessage(\"\") }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isMoreInformationDialogOpen" + }, + { + "name": "title", + "type": "string", + "value": "More Information Required" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setIsMoreInformationDialogOpen(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "activeStepToConfirm !== -1" + }, + { + "name": "title", + "type": "string", + "value": "Progress Reset Warning" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: () => setActiveStepToConfirm(-1)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Continue\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => handleSetActiveStep(activeStepToConfirm)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "\"Disclaimer\"" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: () => setIsDialogOpen(false) }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ViewTransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" }]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "showTransformationDialog !== ShowTransformation.NONE" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "actions", + "type": "expression", + "value": "showTransformationDialog === ShowTransformation.READ_ONLY\n\t\t\t\t\t? [{ label: en.connectors.buttons.close, onClick: onCloseDialog, variant: \"text\" }]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{ label: en.connectors.buttons.discardChanges, onClick: onCloseDialog, variant: \"text\" },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: en.connectors.buttons.apply,\n\t\t\t\t\t\t\t\tonClick: onApplyTransformation,\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"applyTransformationButton\"\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.connectors.labels.transformationDetails}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.connectors.buttons.transformationsLink.label}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "key", + "type": "string", + "value": "transformation-dialog" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.importPayloads(direction)" + }, + { + "name": "isOpen", + "type": "variable", + "value": "uploadDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"close-upload-dialog\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\tsetUploadDialog(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.import,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"upload-file\",\n\t\t\t\t\t\tonClick: handleUploadFile\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/MappingFieldPopOver.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "fieldType === FieldType.constant\n\t\t\t\t\t\t\t? en.connectors.labels.deleteConstantField\n\t\t\t\t\t\t\t: en.connectors.labels.deleteHeaderField" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.labels.deleteHeaderFieldContext" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showDeleteDialog" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\t\tsetIdToDelete(\"\");\n\t\t\t\t\t\t\t\tsetShowDeleteDialog(false);\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\tvariant: \"text\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\t\t\tonClick: () => handleDeleteButtonClick(),\n\t\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"deleteEdgeDialog-cancel\", onClick: onClose },\n\t\t\t\t{\n\t\t\t\t\tlabel: en.connectors.buttons.delete,\n\t\t\t\t\tdataQa: \"deleteEdgeDialog-delete\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: removeRelation\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.transformations.labels.deleteMapping" + }, + { + "name": "contentText", + "type": "expression", + "value": "!isEmpty(affectedTransformations) && affectedTransformations.length > 1\n\t\t\t\t\t? en.transformations.labels.multipleMappingsDeleteDialogText(affectedTransformations.length - 1)\n\t\t\t\t\t: en.transformations.labels.deleteDialogText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDeploymentError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.errorDeploymentTitle" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: connectors.buttons.close,\n\t\t\t\t\t\tdataQa: \"connectordeployerror-close\",\n\t\t\t\t\t\tonClick: () => setDeployErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Cancel\", dataQa: \"connectorStateChange-cancel\", onClick: () => setShowDeployDialog(false) },\n\t\t\t\t{\n\t\t\t\t\tlabel: action === \"deploy\" ? en.connectors.buttons.deploy : en.connectors.buttons.unDeploy,\n\t\t\t\t\tdataQa: \"connectorStateChange-deploy\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleStateChange\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "action === \"deploy\" ? en.connectors.labels.deployDialogTitle : en.connectors.labels.undeployDialogTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DeleteConnectorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.deleteDialogTitle" + }, + { + "name": "contentText", + "type": "expression", + "value": "en.connectors.deleteConfirmationMsg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.connectors.buttons.close, onClick: onClose },\n\t\t\t\t{ label: en.connectors.buttons.delete, onClick: handleDelete, variant: \"outline\" }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.connectors.labels.mapWithAI}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.cancel,\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiDialogClose(false),\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.map,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"confirm-ai-mapping\",\n\t\t\t\t\t\tonClick: handleAiMapping,\n\t\t\t\t\t\tisDisabled: isReqLoading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"An error occurred\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Open Support Ticket\",\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingError.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.errorAiMap" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.connectors.buttons.close,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"close-ai-mapping-error-dialog\",\n\t\t\t\t\t\tonClick: () => setMapAiErrorDialogClose(false)\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit ? t({ id: \"id_dlg_edit_msg_spool_title\", message: \"Edit Message Spool Size\" }) : t({ id: \"id_dlg_customize_msg_spool_title\", message: \"Customize Message Spool Size\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"customizeMessageSpoolCancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_apply\", message: \"Apply\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: isEdit ? \"customizeMessageSpoolSave\" : \"customizeMessageSpoolApply\",\n\t\t\t\t\tisDisabled: hasMessageStorageErrors || messageSpoolSize <= 0 || progress,\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: t({ id: \"id_ok\", message: \"OK\" }),\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "count ? t({ id: \"id_dlg_delete_services_title\", message: \"Delete Services\" }) : t({ id: \"id_dlg_delete_service_title\", message: \"Delete Service\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: count ? t({ id: \"id_delete_services\", message: \"Delete Services\" }) : t({ id: \"id_delete_service\", message: \"Delete Service\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"delete-service-ok\",\n\t\t\t\t\tisDisabled: matchText.trim() !== matchName,\n\t\t\t\t\tonClick: onDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rename_service_title\", message: \"Edit Service Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rename-service-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rename-service-ok\",\n\t\t\t\t\tisDisabled: hasErrors,\n\t\t\t\t\tonClick: handleRename\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_clone_service_title\", message: \"Clone Service: Pre-Check\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "expression", + "value": "isReady && (results.errors.length > 0 || results.warnings.length > 0)\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-cancel\",\n\t\t\t\t\t\t\t\tonClick: onCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_continue\", message: \"Continue\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"clone-service-continue\",\n\t\t\t\t\t\t\t\tisDisabled: results.errors.length > 0,\n\t\t\t\t\t\t\t\tonClick: onContinue\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: []" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_error_title\", message: \"An error occurred\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_open_support_ticket\", message: \"Open Support Ticket\" }),\n\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\tdataQa: \"open-ticket\",\n\t\t\t\t\tonClick: handleOpenTicket\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_environments\", message: \"Environments\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"select-environment-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_select\", message: \"Select\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"select-environment-ok\",\n\t\t\t\t\tonClick: handleSelect\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_auto_upgrade_plan_title\", message: \"Plan Upgrade\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: \"Close\", onClick: handleClose },\n\t\t\t\t{ label: \"Run Upgrade\", onClick: handleUpgrade, variant: \"call-to-action\", isDisabled: !!formError || upgradeMutation.isLoading }\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanUnavailable.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[{ variant: \"outline\", label: \"Close\", onClick: () => onClose() }]" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "id ? t({ id: \"id_dlg_client_profile_edit_title\", message: \"Edit Client Profile\" }) : t({ id: \"id_dlg_client_profile_create_title\", message: \"Create Client Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: id ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: id ? \"client-profile-save\" : \"client-profile-create\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-profile-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "addMode\n\t\t\t\t\t? t({ id: \"id_dlg_client_cert_auth_title\", message: \"Add Client Certificate Authority\" })\n\t\t\t\t\t: t({ id: \"id_dlg_client_cert_auth_edit_title\", message: \"Edit Client Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"client-cert-auth-dialog-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: () => onClose()\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "isEdit\n\t\t\t\t\t? t({ id: \"id_dlg_edit_syslog_config_title\", message: \"Edit Syslog Forwarding Destination\" })\n\t\t\t\t\t: t({ id: \"id_dlg_create_syslog_config_title\", message: \"Create Syslog Forwarding Destination\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t? [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-close\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]\n\t\t\t\t\t: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-cancel\",\n\t\t\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: isEdit ? t({ id: \"id_save\", message: \"Save\" }) : t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tdataQa: \"syslog-config-save\",\n\t\t\t\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\t\t\t\tonClick: handleSave\n\t\t\t\t\t\t\t}\n\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RequestLogsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_view_logs_title\", message: \"View Logs\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "create ? t({ id: \"id_dlg_create_endpoint_title\", message: \"Create Endpoint\" }) : t({ id: \"id_dlg_edit_endpoint_title\", message: \"Edit Endpoint\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"endpoint-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_create_hostname_title\", message: \"Create Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_create\", message: \"Create\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"create-hostname-save\",\n\t\t\t\t\tisDisabled: isLoadingCertificates || saveDisabled,\n\t\t\t\t\tonClick: handleCreate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_close\", message: \"Close\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"library-close\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_client_auth_title\", message: \"Edit Client Authentication\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"client-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClusterNameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_edit_cluster_name_title\", message: \"Edit Cluster Name\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"cluster-name-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled || progress,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Distributed Tracing\" })" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"dt-dialog-disable-confirm\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_move_hostname_title\", message: \"Move Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"create-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-hostname-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleMove\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_distributed_tracing_title\", message: \"Configure Data Collection\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-cancel\",\n\t\t\t\t\tisDisabled: inProgress,\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_dt_confirmDeploy\", message: \"Confirm and Deploy\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"dt-dialog-deploy-confirm\",\n\t\t\t\t\tonClick: handleConfirmDeploy,\n\t\t\t\t\tisDisabled: (!selectedTracingProfileId && isSubmitted) || !telemetryProfileName || inProgress\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/RotatePasswordsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_rotate_passwords_title\", message: \"Rotate Broker Passwords\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_rotate\", message: \"Rotate\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"rotate-passwords-dialog-rotate\",\n\t\t\t\t\tonClick: handleRotate\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DeleteHostnameDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_delete_hostname_title\", message: \"Delete Hostname\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"delete-hostname-cancel\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"delete-hostname-confirm\",\n\t\t\t\t\tisDisabled: progress,\n\t\t\t\t\tonClick: handleDelete\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_mgmt_access_title\", message: \"Set LDAP Group Access\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-access-access-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MateLinkEncryptionDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_mate_link_encryption_title\", message: \"Mate-Link Encryption\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_disable\", message: \"Disable\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"mate-link-encryption-disable\",\n\t\t\t\t\tonClick: handleDisable\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementProfileDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_ldap_profile_title\", message: \"Edit LDAP Profile\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"ldap-mgmt-profile-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DomainCertificateAuthorityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_dlg_domain_cert_auth_title\", message: \"Add Domain Certificate Authority\" })" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progress" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_cancel\", message: \"Cancel\" }),\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-cancel\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: t({ id: \"id_save\", message: \"Save\" }),\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"domain-cert-auth-dialog-save\",\n\t\t\t\t\tisDisabled: saveDisabled,\n\t\t\t\t\tonClick: handleSave\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_endpoint\", message: \"Delete Endpoint\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"delete-endpoint-cancel\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"delete-endpoint-confirmed\", onClick: handleDeleteEndpoint }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_syslog_config\", message: \"Deactivate Syslog Forwarding\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_syslog_config\", message: \"Deactivating syslog forwarding will cause the service to stop forwarding logs to the configured syslog server.\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"syslog-config-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t{ label: t({ id: \"id_deactivate\", message: \"Deactivate\" }), variant: \"outline\", dataQa: \"syslog-config-delete\", onClick: handleDelete }\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_disable_standard_domain_cert_auth\", message: \"Disable Standard Domain Certificate Authorities\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_disable_standard_domain_cert_auth_desc\",\n\t\t\t\t\t\t\tmessage: \"This may cause connectivity issues between your brokers. Ensure that you have added the proper certificates before disabling these certificates.\"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelConfirmDisable },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_disable\", message: \"Disable\" }), variant: \"call-to-action\", onClick: handleConfirmDisable }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_cert_auth\", message: \"Delete Certificate Authority\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_prompt_delete_cert_auth\",\n\t\t\t\t\t\t\tmessage: \"Any applications or scripts using this certificate authority will no longer be protected. Are you sure you want to permanently delete this certificate authority? \"\n\t\t\t\t\t\t})" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", isDisabled: !allowServiceQueries, onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "hasOngoingOperation" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_delete_client_profile\", message: \"Delete Client Profile\" })" + }, + { + "name": "contentText", + "type": "expression", + "value": "t({ id: \"id_prompt_delete_client_profile\", message: \"Are you sure you want to permanently delete this client profile?\" })" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_cancel\", message: \"Cancel\" }), variant: \"text\", dataQa: \"client-profile-cancel-delete\", onClick: handleCancelDelete },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_delete\", message: \"Delete\" }), variant: \"outline\", dataQa: \"client-profile-delete\", onClick: handleDelete }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.cancelButton,\n\t\t\t\t\tonClick: () => onDone(\"cancel\"),\n\t\t\t\t\tdataQa: \"cancelUserAccess\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.saveButton,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: onSave,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"saveUserAccess\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "progressIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.brokerSSOConfig.dialog.title" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{ label: en.brokerSSOConfig.dialog.fields.closeButton, onClick: dialogCloseHandler, variant: \"outline\" }\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.viewMessageSpoolDetails.buttons.close,\n\t\t\t\t\tonClick: onClose,\n\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Change Request - ${editLimitsRow.name}`" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\t\tonClick: () => setEditLimitsRow(null),\n\t\t\t\t\t\t\tisDisabled: submittingTicket\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.serviceLimits.buttons.sendRequest,\n\t\t\t\t\t\t\tonClick: onSubmit,\n\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\tisDisabled: submittingTicket || newServiceLimit === editLimitsRow.limit\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: !confirmDelete || isDeleting\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/MessageDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.environments.labels.deleteEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\"\n\t\t\t\t\t? en.environments.labels.createEnvironment\n\t\t\t\t\t: en.environments.labels.editEnvironment" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? en.environments.button.create : en.common.buttons.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled:\n\t\t\t\t\t\tisDuplicate || isLoading || hasError || hasDescError || (dialogState.type === \"create\" ? false : !isEdited)\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.labels.ASEnvironment" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isUpdating" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\tonClick: handleCloseDialog\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.save,\n\t\t\t\t\tid: \"deleteButton\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdateEnvironment,\n\t\t\t\t\tisDisabled: isError || isUpdating\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "messages.menuLabel" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogCancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"cancelConfigurationTemplatesDialog\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: messages.dialogAction,\n\t\t\t\t\tid: \"updateConfiguration\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleUpdate,\n\t\t\t\t\tdataQa: \"applyConfigurationTemplatesDialog\",\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "expression", + "value": "dialogState.type === \"create\" ? userGroups.ugDialog.createUG : userGroups.ugDialog.editUG" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDialog.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: dialogState.type === \"create\" ? userGroups.ugDialog.create : userGroups.ugDialog.save,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleCreateOrEdit,\n\t\t\t\t\tisDisabled: isLoading || hasNameError || hasRoleError || isDuplicate || hasNoNameError || isDefaultError,\n\t\t\t\t\tdataQa: \"ugDialogSaveQa\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"xl\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/DeleteUserGroupsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroups.ugDeleteDialog.deleteUG" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isDeleting" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.cancel,\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\tdataQa: \"ugDialogCancelQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroups.ugDeleteDialog.delete,\n\t\t\t\t\tid: \"deleteButtonTest\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\tisDisabled: isError || isDeleting,\n\t\t\t\t\tdataQa: \"ugDialogDeleteQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/EnableSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.enableSsoConfig" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelEnableSso\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.activate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: enableSsoConfiguration\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "xl" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.configureSsoSettings" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[\"cancel\"],\n\t\t\t\t\t\tonClick: cancelConfigureSettings\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.save,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: saveStagedSsoConfiguration,\n\t\t\t\t\t\tisDisabled: !canSaveSettings\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/TestSsoConfiguration.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings[cannotTestSso ? \"testSsoConfigError\" : \"testSsoConfig\"]" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings[cannotTestSso ? \"close\" : \"cancel\"],\n\t\t\t\t\t\tonClick: cancelSsoTest\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.test,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: testSsoConfiguration,\n\t\t\t\t\t\tisDisabled: cannotTestSso\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.setUpSso" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.cancel,\n\t\t\t\t\t\tonClick: cancelSsoSetup\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.accountSettings.sendRequest,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tonClick: sendSsoSetupRequest,\n\t\t\t\t\t\tisDisabled: !canSendRequest || submittingTicket,\n\t\t\t\t\t\tdataQa: \"sendRequestButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingNotificationModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: cancelButtonLabel || userGroupManagement.cancel,\n\t\t\t\t\tonClick: cancelHandler,\n\t\t\t\t\tdataQa: \"cancelNotificationHandlerQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionButtonLabel,\n\t\t\t\t\tid: \"notificationModalActionButton\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: actionHandler,\n\t\t\t\t\tdataQa: \"notificationModalActionButton\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/RemoveClaimMapping.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "title", + "type": "expression", + "value": "userGroupManagement.removeClaimMapping" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.cancel,\n\t\t\t\t\tonClick: () => setIsClaimMappingRemoveDialogOpen(false),\n\t\t\t\t\tdataQa: \"cancelClaimMappingQa\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: userGroupManagement.remove,\n\t\t\t\t\tid: \"deleteClaimMappingId\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: deleteClaimMapping,\n\t\t\t\t\tdataQa: \"deleteClaimMappingQa\"\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "confirmDialogOpen || errorDialogOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "sm" + }, + { + "name": "title", + "type": "expression", + "value": "confirmDialogOpen ? supportPage.dialog.dialogTitle : supportPage.dialog.error" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "submittingTicket" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: supportPage.dialog.close,\n\t\t\t\t\t\tonClick: handleClose,\n\t\t\t\t\t\tdataQa: \"supportTicketModelOKButton\",\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestLimitChangeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestLimitChangeDialogTitle" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.close,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeCloseAction\",\n\t\t\t\t\t\t\tonClick: onCloseRequestLimitChange\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: en.overview.eventPortalSection.sendRequest,\n\t\t\t\t\t\t\tdataQa: \"requestLimitChangeSendRequestAction\",\n\t\t\t\t\t\t\tonClick: onRequestLimitChange,\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tisDisabled: !limitRequestNumber\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isRequestUpgradeDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.dialogTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.cancel,\n\t\t\t\t\t\tdataQa: \"requestUpgradeCloseAction\",\n\t\t\t\t\t\tonClick: onCloseRequestUpgradeDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.banner.sendRequest,\n\t\t\t\t\t\tdataQa: \"requestUpgradeSendRequestAction\",\n\t\t\t\t\t\tonClick: RequestUpgradeHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\t(!isEventMeshFeatureChecked && !isEventPortalFeatureChecked) ||\n\t\t\t\t\t\t\t(!!contactEmail && !isValidEmail(contactEmail))\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isDeleteAccountDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.deleteAccountQuestion" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.cancel,\n\t\t\t\t\t\tdataQa: \"cancelDeleteAccountButton\",\n\t\t\t\t\t\tonClick: onCloseDeleteAccountDialog\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.overview.advancedSettingsSection.delete,\n\t\t\t\t\t\tdataQa: \"confirmDeleteAccountButton\",\n\t\t\t\t\t\tonClick: deleteAccountHandler,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tisDisabled: !password\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Deactivate Service Notifications" + }, + { + "name": "contentText", + "type": "string", + "value": "Deactivating service notifications means that no alerts or notifications will be sent related to your application functioning. This could cause application issues to go unnoticed." + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", dataQa: \"cancel\", onClick: () => setOpenConfirmationDialog(false), variant: \"text\" },\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Deactivate\",\n\t\t\t\t\t\tdataQa: \"deactivate\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tstopNotifications();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environments.moveDialogLabels.title" + }, + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.cancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"move-datacenter-cancel\",\n\t\t\t\t\tonClick: onCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: environments.moveDialogLabels.move,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"move-datacenter-ok\",\n\t\t\t\t\tonClick: handleMove,\n\t\t\t\t\tisDisabled: !!errors.environment\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "downloadDialog.errorDialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.downloadFailed" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"OK\", onClick: handleCloseDialog }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "contentText", + "type": "variable", + "value": "undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.new" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: onClose\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.privateRegions.button.sendRequest,\n\t\t\t\t\t\tonClick: onRequest,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tisDisabled: loading\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.copyToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\t\tvariant: isCopied ? \"outline\" : \"call-to-action\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tisDisabled: !isCopied,\n\t\t\t\t\t\tdataQa: \"closeTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/GenericErrorDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.genericError.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: en.common.buttons.close,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.regenerateToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Regenerate\",\n\t\t\t\t\t\tonClick: handleRegenerate,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmRegenerateTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "expression", + "value": "en.tokens.text.deleteToken.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: en.common.buttons.cancel,\n\t\t\t\t\t\tonClick: handleCancel\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Delete\",\n\t\t\t\t\t\tonClick: handleDelete,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"confirmDeleteTokenButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingProfile.title.details" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: tracingProfile.button.close,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingSynchDialog.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingSynchDialog.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: close\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "mode == Mode.Create ? tracingProfile.title.create : tracingProfile.title.edit" + }, + { + "name": "contentText", + "type": "expression", + "value": "tracingProfile.contentText" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "modifyingTracingProfile" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/ErrorDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "An error occurred" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"close-error-dialog\",\n\t\t\t\t\tonClick: handleClose,\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "data-qa", + "type": "string", + "value": "error-dialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\t\t\tonClick: () => setOpenDialog(false)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\tonClick: forceUpdateAllMonitors,\n\t\t\t\t\t\t\t\t\tdataQa: \"proceedUpdateAllMonitorsButton\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openDialog" + }, + { + "name": "title", + "type": "string", + "value": "Update Monitoring Notification" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "expression", + "value": "detailsState.showDetails" + }, + { + "name": "title", + "type": "expression", + "value": "`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowUpdateDefaultsError(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showUpdateDefaultsError" + }, + { + "name": "title", + "type": "expression", + "value": "`Update Monitoring Defaults Failed`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(onSubmit)();\n\t\t\t\t\t\t\tsetOpenConfirmationDialog(false);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirmationDialogProceedButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setOpenConfirmationDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openConfirmationDialog" + }, + { + "name": "title", + "type": "string", + "value": "Update Services Monitoring Configurations" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setOpenDatadogProxyDialog(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openDatadogProxyDialog" + }, + { + "name": "title", + "type": "expression", + "value": "\"Monitoring Proxy Endpoints\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Refresh\",\n\t\t\t\t\t\tonClick: async () => {\n\t\t\t\t\t\t\tconst updatedService = await refreshMonitoringAgentStatus(agentStatusDialogService);\n\n\t\t\t\t\t\t\tsetAgentStatusDialogService(updatedService);\n\t\t\t\t\t\t},\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\tservicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\t\t\tRequestStatus.IN_PROGRESS\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\tsetOpenAgentStatusDialog(false);\n\n\t\t\t\t\t\t\t// Errors and warnings are part of the fetched status and should persist\n\t\t\t\t\t\t\t// until a refresh. They are not reset on dialog close.\n\t\t\t\t\t\t},\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tdataQa: \"statusDialogOkButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "openAgentStatusDialog" + }, + { + "name": "title", + "type": "expression", + "value": "`Monitoring Agent Status`" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "servicesStates?.[agentStatusDialogService?.infrastructureId ?? \"\"]?.agentVersionRequestStatus ===\n\t\t\t\t\tRequestStatus.IN_PROGRESS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => updateShowDetails(false)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "expression", + "value": "detailsState.showDetails" + }, + { + "name": "title", + "type": "expression", + "value": "`Failed to perform ${errors[detailsState.showDetailError]?.stepName} step`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setShowUpdateMonitoringNotificationConfirmation(false)\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Proceed\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"updateMonitoringNotificationConfirmationProceedButton\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleSubmit(updateMonitoringNotification)();\n\t\t\t\t\t\t\tsetShowUpdateMonitoringNotificationConfirmation(false);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showUpdateMonitoringNotificationConfirmation" + }, + { + "name": "title", + "type": "expression", + "value": "`Update Monitoring Notification`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setShowInvalidHandlesDialog(false),\n\t\t\t\t\t\tdataQa: \"InvalidHandlesDialogButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "showInvalidHandlesDialog" + }, + { + "name": "title", + "type": "expression", + "value": "`Failed: Invalid Email Handles`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "cleanModal" + }, + { + "name": "title", + "type": "string", + "value": "WARNING" + }, + { + "name": "contentText", + "type": "string", + "value": "Are you sure you want to perform database cleanup?" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setCleanModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleJobClean() }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationsHeader.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "syncModal" + }, + { + "name": "title", + "type": "string", + "value": "WARNING" + }, + { + "name": "contentText", + "type": "string", + "value": "Heavy database operation will be executed. Are you sure you want to proceed?" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"outline\", onClick: () => setSyncModal(false) },\n\t\t\t\t\t{ label: \"Continue\", variant: \"call-to-action\", onClick: () => handleEntitySync() }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansUpdate.tsx", + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Save\",\n\t\t\t\t\tisDisabled: false,\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "string", + "value": "Update Upgrade Plan" + }, + { + "name": "contentText", + "type": "string", + "value": "Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansCreate.tsx", + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-plan\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create Plan\",\n\t\t\t\t\tdataQa: \"create-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "string", + "value": "Create Plan" + }, + { + "name": "contentText", + "type": "string", + "value": "Plans are re-usable sets of details, that can be applied to an instance to create an automated upgrade run." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "contentLayout", + "type": "string", + "value": "contents" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-manage-plan\",\n\t\t\t\t\tonClick: handleCancel\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Apply\",\n\t\t\t\t\tdataQa: \"apply-manage-plan\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleApply\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "jsx", + "value": " handleCancel()}>\n\t\t\t\t\t\n\t\t\t\t\tManage Broker Upgrade Scope\n\t\t\t\t" + }, + { + "name": "contentText", + "type": "string", + "value": "The filter will be applied to the upgrade run, determining the brokers included in that specific run." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/DeleteModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Plan" + }, + { + "name": "contentText", + "type": "string", + "value": "Deleting this plan will delete any runs, groups, and associated data using this plan. They will be permanently removed from the system." + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: () => handleModal() },\n\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", onClick: () => handleDelete(plan.id) }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "string", + "value": "Post-Upgrade Check Results" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "loading" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogsDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "string", + "value": "Upgrade Logs" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "inProgress" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "props": [ + { + "name": "isOpen", + "type": "boolean", + "value": "true" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "string", + "value": "Pre-Upgrade Check Results" + }, + { + "name": "actions", + "type": "array", + "value": "[{ label: \"Close\", variant: \"outline\", onClick: onClose }]" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "`${actionType === \"pause\" ? \"Pause\" : \"Cancel\"} Upgrade Run`" + }, + { + "name": "contentText", + "type": "expression", + "value": "`Are you sure you want to ${actionType} this upgrade run?`" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: handleModal },\n\t\t\t\t\t{ label: actionType === \"pause\" ? \"Pause Run\" : \"Cancel Run\", variant: \"outline\", onClick: handleAction }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsFormCreate.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel-run\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\thandleModal();\n\t\t\t\t\t\treset();\n\t\t\t\t\t\tsetError(\"\");\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Schedule Run\",\n\t\t\t\t\tdataQa: \"create-run\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSubmit(onSubmit)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "title", + "type": "string", + "value": "Schedule Upgrade Run" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/DeleteModal.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Upgrade Run" + }, + { + "name": "contentText", + "type": "string", + "value": "Are you sure you want to delete this upgrade run? This action cannot be undone." + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{ label: \"Cancel\", variant: \"text\", onClick: onClose, dataQa: \"delete-run-cancel\" },\n\t\t\t\t\t{ label: \"Delete Run\", variant: \"outline\", onClick: handleDelete, dataQa: \"delete-run-confirm\" }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/ConfirmationDialog.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tonClick: onCancel,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: actionLabel,\n\t\t\t\t\tvariant: actionVariant,\n\t\t\t\t\tonClick: onConfirm,\n\t\t\t\t\tisDisabled: isLoading\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"okAction\",\n\t\t\t\t\tonClick: () => setOpen({ open: false, servicePackage: undefined })\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Service Package Details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Edit Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Create\",\n\t\t\t\t\tdataQa: \"create\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading,\n\t\t\t\t\tonClick: handleSubmit(onCreate)\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Create Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [ + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "isOpen", + "type": "expression", + "value": "state.open" + }, + { + "name": "title", + "type": "string", + "value": "Delete Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: onClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Release\",\n\t\t\t\t\tdataQa: \"release\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tisDisabled: loading || !servicePackage?.metadata?.releaseNotes,\n\t\t\t\t\tonClick: handleRelease\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "isOpen", + "type": "variable", + "value": "open" + }, + { + "name": "title", + "type": "string", + "value": "Release New Service Package" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "maxWidth", + "type": "string", + "value": "lg" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.reviewAndSave" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.cancel,\n\t\t\t\t\tonClick: handleClose\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: createBizOrganization.save,\n\t\t\t\t\tid: \"confirmSave\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tonClick: handleSave,\n\t\t\t\t\tisDisabled: dialogState.saving\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "i18nStrings.addProductsLabel" + }, + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.cancelLabel,\n\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogCancel\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: i18nStrings.addProductsLabel,\n\t\t\t\t\tonClick: handleAddProducts,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tdataQa: \"productSubscriptionDialogAddProds\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "dialogOpen" + }, + { + "name": "title", + "type": "expression", + "value": "getDialogTitle()" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.cancel,\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tonClick: handleCancel,\n\t\t\t\t\t\tdataQa: \"cancel-button\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: integrationStrings.buttons.confirm,\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\t\thandleConfirm();\n\t\t\t\t\t\t},\n\t\t\t\t\t\tdataQa: \"confirm-button\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "data-qa", + "type": "string", + "value": "confirmation-dialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tlabel: \"OK\",\n\t\t\t\t\t\tonClick: () => setDetailsDialog({ isOpen: false, org: {} } as DetailsDialog)\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "isOpen", + "type": "expression", + "value": "detailsDialog.isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Organization Details" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "dialogState.open" + }, + { + "name": "title", + "type": "string", + "value": "Manage Connector Flow Version" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tonClick: () => onDialogClose()\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Update\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tdataQa: \"upgradeConfirmation\",\n\t\t\t\t\tonClick: handleConnectorUpgrade,\n\t\t\t\t\tisDisabled: updatedVersion === connectorTypeId\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorDetails" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "deleteConfirmation.isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Connector" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"outline\", dataQa: \"deleteConfirmation\", onClick: handleConnectorDelete }\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "props": [ + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "title", + "type": "expression", + "value": "organizationDetails.manageNotificationContactDialog.title" + }, + { + "name": "actions", + "type": "variable", + "value": "dialogActions" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "deleteDialog.title" + }, + { + "name": "contentText", + "type": "expression", + "value": "!deleteDialog?.error ? deleteDialog.contentText : \"\"" + }, + { + "name": "isOpen", + "type": "expression", + "value": "deleteDialog.isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deleteDialog.linearProgressIndicator" + }, + { + "name": "actions", + "type": "expression", + "value": "deleteDialog.actions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Import From Datacenter" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isLoading" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Delete" + }, + { + "name": "isOpen", + "type": "expression", + "value": "deleteConfirmation.isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "expression", + "value": "deletingBrokerCompatibility || deletingHelmChartCompatibility" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ isOpen: false, type: CompatibilityType.None, row: {} }),\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"cancelButton\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tlabel: modifyError.error ? \"Ok\" : \"Delete\",\n\t\t\t\t\t\tonClick: () => handleDelete(deleteConfirmation.row, deleteConfirmation.type),\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"deleteButton\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "compatibilityType == CompatibilityType.Broker ? \"Add Broker Compatibility\" : \"Add Collector Compatibility\"" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"cancel\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonClose();\n\t\t\t\t\t\tsetModifyError({ error: false, message: \"\", id: \"\" });\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Add\",\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\ttype: \"submit\",\n\t\t\t\t\tdataQa: \"addButton\",\n\t\t\t\t\tonClick:\n\t\t\t\t\t\tcompatibilityType == CompatibilityType.Broker\n\t\t\t\t\t\t\t? handleSubmit((data: BrokerCompatibility) => handleModifyCollector(data))\n\t\t\t\t\t\t\t: handleSubmit((data: CollectorCompatibility) => handleAddCollectorCompatibility(data))\n\t\t\t\t}\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "!!errorDetails" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: \"OK\", variant: \"outline\", onClick: () => setErrorDetails(\"\"), dataQa: `json-${errorDetails}` }\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "isOpen", + "type": "expression", + "value": "deleteConfirmation.isOpen" + }, + { + "name": "title", + "type": "string", + "value": "Delete Collector" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tlabel: \"Cancel\",\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tonClick: () => setDeleteConfirmation({ ...deleteConfirmation, isOpen: false })\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{ label: \"Delete\", variant: \"call-to-action\", dataQa: \"deleteConfirmation\", onClick: handleCollectorDelete }\n\t\t\t\t\t]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Modify collector" + }, + { + "name": "isOpen", + "type": "variable", + "value": "isOpen" + }, + { + "name": "linearProgressIndicator", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "contentText", + "type": "expression", + "value": "\"Infrastructure ID: \" + collector?.infrastructureId" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Close\",\n\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\tdataQa: \"close\",\n\t\t\t\t\tonClick: () => {\n\t\t\t\t\t\tonCloseHandler()\n\t\t\t\t\t\tdispatch(openUpgradeDialog({ isOpen: false }));\n\t\t\t\t\t}\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Submit\",\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: isPerformingRequest || isEdited === false,\n\t\t\t\t\tdataQa: \"submit\",\n\t\t\t\t\tonClick: () =>\n\t\t\t\t\t\thandleModifyCollector(\n\t\t\t\t\t\t\tcollector?.serviceId as string,\n\t\t\t\t\t\t\tcollector?.infrastructureId as string,\n\t\t\t\t\t\t\timageTag,\n\t\t\t\t\t\t\thelmChartVersion,\n\t\t\t\t\t\t\taction\n\t\t\t\t\t\t)\n\t\t\t\t}\n\t\t\t]" + } + ] + } + ] + }, + { + "component": "SolaceTable", + "count": 67, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "renderCustomRowActionItem", + "type": "expression", + "value": "renderCustomRowActionItem?.length > 0 ? renderCustomRowActionItem : null" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "mem?.brokerType === BrokerTypes.kafka ? SolaceTableSelectionType.SINGLE : SolaceTableSelectionType.MULTI" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "selectionType ?? SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event-flow-discrepancy-preview-table" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "renderCustomEmptyState ?? defaultEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "expression", + "value": "hasColumnHiding ?? true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItems" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"metricsDashboardTable\"" + }, + { + "name": "rows", + "type": "expression", + "value": "handleProcessEntities(entities)" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "rowActionMenuItems", + "type": "null", + "value": "null" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\treturn renderRowCells(row);\n\t\t\t}" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "!entities || entities.length === 0" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "id", + "type": "string", + "value": "remTable" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRow" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "`calc(100vh - ${HEADER_AND_PAGINATION_HEIGHT}px)`" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "actions" + }, + { + "name": "rows", + "type": "variable", + "value": "remEntities" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[selectedMem?.id]" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/entityList/AuditEntityList.tsx", + "props": [ + { + "name": "loading", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "expression", + "value": "`${entityType}Table`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.MULTI" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "variable", + "value": "highlightedRowId" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "rowActionMenuItems", + "type": "expression", + "value": "rowActionMenuItems?.length > 0 ? rowActionMenuItems : null" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "expression", + "value": "customRowCellRenderer\n\t\t\t\t\t\t\t? (row: SolaceTableRow) => {\n\t\t\t\t\t\t\t\t\treturn customRowCellRenderer(row, columnsHiddenInfo);\n\t\t\t\t\t\t\t }\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No ${entityTypeToLabelLowercase(entityType)}s have been created`" + }, + { + "name": "expandableRowOptions", + "type": "variable", + "value": "expandableRowOptions" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderCustomEmptyState" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + }, + { + "name": "customContentDefinitions", + "type": "variable", + "value": "customContentDefinitions" + }, + { + "name": "displayedCustomContent", + "type": "variable", + "value": "displayedCustomContent" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "variable", + "value": "customContentDisplayChangeCallback" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "customMenuActions" + }, + { + "name": "crossPageRowSelectionSupported", + "type": "expression", + "value": "auditEntityType === null ? false : true" + }, + { + "name": "totalObjectCount", + "type": "variable", + "value": "entityCount" + }, + { + "name": "deselectedRowIds", + "type": "variable", + "value": "deselectedRowIds" + }, + { + "name": "allPagesSelectedByDefault", + "type": "variable", + "value": "allPagesSelectedByDefault" + }, + { + "name": "crossPageSelectionChangedCallback", + "type": "variable", + "value": "handleCrossPageRowSelectionsChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "expression", + "value": "getFilteredRows()" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "columns", + "type": "expression", + "value": "TEMPLATE_TYPES[type].tableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "messages[type].emptyTableMessage" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "existingSharedEventIds" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: false,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\treturn renderRowCells(row, columnsHiddenInfo);\n\t\t\t\t\t}" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.eventApi.labels.emptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\trenderChildren: renderExpandedRowContent,\n\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\tsetExpandedRowIds: setExpandedRowIds,\n\t\t\t\t\t\tselectRowWhenClickOnChildren: false\n\t\t\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventAccessRequestTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "renderEmptyState" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableDataAvailable && !loading" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "highlightedRowId", + "type": "expression", + "value": "highlightedRow?.id" + }, + { + "name": "rowHighlightChangedCallback", + "type": "variable", + "value": "handleRowHighlight" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\tallowToggle: false,\n\t\t\t\t\t\trenderChildren: (row) => renderExpandedRowContent(row),\n\t\t\t\t\t\texpandedRowIds: [],\n\t\t\t\t\t\tsetExpandedRowIds: () => {\n\t\t\t\t\t\t\tvoid 0;\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderCustomRowCells" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentSchemasTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching schemas have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentEventsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching events have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`parentApplicationsTable`" + }, + { + "name": "rows", + "type": "variable", + "value": "displayedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "null", + "value": "null" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "handleDisplayedColumnsChanged" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "`No matching applications have been found`" + }, + { + "name": "renderCustomEmptyState", + "type": "expression", + "value": "hasFilter && clearFilterEmptyState" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\tallowToggle: true,\n\t\t\t\trenderChildren: renderExpandedRow,\n\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\tsetExpandedRowIds: setExpandedRowIds\n\t\t\t}" + }, + { + "name": "showEmptyState", + "type": "variable", + "value": "tableDataAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allConnectors" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetConnectorSort(`sort=${column?.field}:${column?.sortDirection}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === connectorSort.split(\":\")[0])" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "id", + "type": "string", + "value": "agent-list-table" + }, + { + "name": "rows", + "type": "variable", + "value": "allAgents" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(column: SolaceTableColumn | undefined) => {\n\t\t\t\t\tsetAgentSort(`sort=${column?.field}`);\n\t\t\t\t}" + }, + { + "name": "sortedColumn", + "type": "expression", + "value": "columns.find((column) => column.field === agentSort)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t}" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewErrorLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "id", + "type": "string", + "value": "connector-flow-list-table" + }, + { + "name": "rows", + "type": "expression", + "value": "connectorErrorLogs ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "function (): void {\n\t\t\t\t\t\t\treturn;\n\t\t\t\t\t\t}" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row: SolaceTableRow) => {\n\t\t\t\t\t\t\treturn renderRowCells(row);\n\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "logsFetching" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "userManagementColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableRows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "rows", + "type": "expression", + "value": "showEmptyState ? [] : tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(columm) => handleSort(columm, drawdownData)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsTableQA" + }, + { + "name": "customMenuActions", + "type": "variable", + "value": "resultsPerPageActions" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelectionsChange" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "rows", + "type": "variable", + "value": "auditLogsRows" + }, + { + "name": "columns", + "type": "variable", + "value": "AuditLogsTableColumns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "emptyState" + }, + { + "name": "showEmptyState", + "type": "boolean", + "value": "true" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.auditLogs.loadingMessage" + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "maxHeight", + "type": "string", + "value": "40rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortClaimValuesDirection" + }, + { + "name": "rows", + "type": "expression", + "value": "groupMappingState ? [addMappingRow, ...tableRows] : tableRows" + }, + { + "name": "columns", + "type": "expression", + "value": "columns(groupMappingState)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "rows.length < 1" + }, + { + "name": "minHeight", + "type": "string", + "value": "476px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "notificationsTable" + }, + { + "name": "loading", + "type": "expression", + "value": "isLoading || isFetchingNotifications || deletingNotification" + }, + { + "name": "loadingMessage", + "type": "expression", + "value": "en.notifications[deletingNotification ? \"deletingNotifications\" : \"fetchingNotifications\"]" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "en.notifications.emptyStateMessage(showUnreadNotifications)" + }, + { + "name": "columns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "NOTIFICATION_TABLE_COLUMNS" + }, + { + "name": "customContentDisplayChangeCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "displayedCustomContent", + "type": "array", + "value": "[]" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "getRowActionMenuItem" + }, + { + "name": "expandableRowOptions", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tallowToggle: true,\n\t\t\t\t\t\t\t\texpandedRowIds: expandedRowIds,\n\t\t\t\t\t\t\t\trenderChildren: (data) => {\n\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\tsetExpandedRowIds: expandRowHandler\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "notifications ?? []" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => null" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "distributedTracingLimits ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "limitColumn" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingLimits.emptyStateMessage}" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "rows", + "type": "expression", + "value": "tracingProfiles ?? []" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "customRowActionMenuItems" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => {tracingProfile.emptyStateMessage}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ClusterListTableColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No clusters found" + }, + { + "name": "minHeight", + "type": "expression", + "value": "theme.spacing(54)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ServiceListTableColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "loading", + "type": "variable", + "value": "isPending" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No services found" + }, + { + "name": "minHeight", + "type": "expression", + "value": "theme.spacing(72)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "processOrganizationsList" + }, + { + "name": "columns", + "type": "expression", + "value": "hasSAPAccount ? columnsWithTenantIds : columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "onRowSelected" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "datacCentersRowData" + }, + { + "name": "columns", + "type": "variable", + "value": "dataCenterTableColumns" + }, + { + "name": "sortCallback", + "type": "function", + "value": "()=>\"\"" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "()=>\"\"" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsProductSub.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsEpCard.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFunc" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rowData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "minHeight", + "type": "variable", + "value": "CUSTOMER_DETAILS_TABLE_MIN_HEIGHT" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "orgLimitsLoading ? \"Loading data...\" : \"No data to show\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumns", + "type": "variable", + "value": "displayedColumns" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "columnSelectionHandler" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.noResults}\n\t\t\t\t\t\t\t{organizationStrings.table.emptyState.checkFilters}\n\t\t\t\t\t\t\t setClearFiltersFlag(true)}>{organizationStrings.table.emptyState.clearFilters}\n\t\t\t\t\t\t\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "serviceColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "serviceRows" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[]" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + }, + { + "name": "dataQa", + "type": "string", + "value": "ServiceMonitoringSettingsTable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "ddIntegrationColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "ddIntegrationRows" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => {}" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "minHeight", + "type": "string", + "value": "fit-content" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "facetsListColumns" + }, + { + "name": "rows", + "type": "variable", + "value": "facetsListRows" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => {}" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "minHeight", + "type": "string", + "value": "fit-content" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "sortCallback", + "type": "function", + "value": "() => {}" + }, + { + "name": "rows", + "type": "variable", + "value": "jobs" + }, + { + "name": "loading", + "type": "variable", + "value": "jobsLoading" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "columns", + "type": "variable", + "value": "memoizedColumns" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "loading", + "type": "variable", + "value": "plansLoading" + }, + { + "name": "selectedRowIds", + "type": "array", + "value": "[rowId]" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "(rows) => setRowId(rows.map((row) => row.id)[0])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansPreview.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "No services returned." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheckTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred triggering the Post-Upgrade Checks. Contact @sc-launch-pad for support." + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading Post-Upgrade Check results..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheckTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred triggering the Pre-Upgrade Checks. Contact @sc-launch-pad for support." + }, + { + "name": "loading", + "type": "variable", + "value": "loading" + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading Pre-Upgrade Check results..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/UpgradeLogTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => void 0" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + }, + { + "name": "emptyStateMessage", + "type": "string", + "value": "An error has occurred retrieving the upgrade logs. Contact @sc-launch-pad for support." + }, + { + "name": "loading", + "type": "expression", + "value": "loading && rows.length === 0" + }, + { + "name": "loadingMessage", + "type": "string", + "value": "Loading upgrade logs..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "maxHeight", + "type": "string", + "value": "75vh" + }, + { + "name": "loading", + "type": "expression", + "value": "loading && !services" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "maxHeight", + "type": "string", + "value": "75vh" + }, + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "loading", + "type": "variable", + "value": "runsLoading" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "showEmptyState", + "type": "expression", + "value": "tableRows.length === 0 && !runsLoading" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "(run) => history.push(`/automatic-upgrades/run/${run[0].id}`)" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\ttitle=\"No scheduled upgrade runs\"\n\t\t\t\t\t\t\t\t\tdetails=\"No upgrade runs returned. Open the create modal to schedule based off an existing Plan.\"\n\t\t\t\t\t\t\t\t\tactions={[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "COLUMNS" + }, + { + "name": "rows", + "type": "variable", + "value": "rows" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderRowCells" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "showEmptyState", + "type": "variable", + "value": "showEmptyState" + }, + { + "name": "rows", + "type": "expression", + "value": "showEmptyState ? [] : tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(columm) => handleSort(columm, drawdownData)" + }, + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageTable" + }, + { + "name": "renderCustomEmptyState", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\ttitle={drawdownUsage.noDrawdownUsage}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "tableCols" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "rows", + "type": "expression", + "value": "emas?.data ?? []" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(row) => renderRowCells(row, evmrId)" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "disabledRowIds", + "type": "variable", + "value": "disabledRowIds" + }, + { + "name": "independentRowHighlight", + "type": "boolean", + "value": "true" + }, + { + "name": "loading", + "type": "variable", + "value": "managementAgentsIsLoading" + }, + { + "name": "renderCustomRowCells", + "type": "function", + "value": "(rows) => renderRowCells(rows, latestImageTag, evmrId, cloudManagedType)" + }, + { + "name": "rows", + "type": "expression", + "value": "rows ?? []" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRows" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "props": [ + { + "name": "columns", + "type": "expression", + "value": "getColumns()" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "noop" + }, + { + "name": "loadingMessage", + "type": "variable", + "value": "customErrorMessage" + }, + { + "name": "emptyStateMessage", + "type": "variable", + "value": "customErrorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "sortedColumn", + "type": "variable", + "value": "sortedColumn" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "paginatedRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columnsDef" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingServicePackages" + }, + { + "name": "maxHeight", + "type": "string", + "value": "calc(100vh - 17.25rem)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rows", + "type": "variable", + "value": "filteredProds" + }, + { + "name": "selectionType", + "type": "expression", + "value": "readOnlyProducts ? SELECTION_TYPE.NONE : SELECTION_TYPE.MULTI" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelections" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedRowIds" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "renderCustomEmptyState", + "type": "variable", + "value": "customEmptyStateView" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`subscription-products-table`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "toggleOverrideColumns" + }, + { + "name": "rows", + "type": "expression", + "value": "toggleOverridesResponse.data.map((override) => ({\n\t\t\t\t\t\t\t\t\t\t\t...override,\n\t\t\t\t\t\t\t\t\t\t\tid: override.orgId // Use orgId as the id property\n\t\t\t\t\t\t\t\t\t\t}))" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderToggleOverrideRowCells" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoadingOverrides" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SELECTION_TYPE.NONE" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() => undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "rows", + "type": "variable", + "value": "tableData" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "sortFn" + }, + { + "name": "selectedRowIds", + "type": "expression", + "value": "selectedRowId ? [selectedRowId] : []" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)" + }, + { + "name": "rows", + "type": "variable", + "value": "orgDetails" + }, + { + "name": "columns", + "type": "expression", + "value": "columns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "rowActionMenuItems" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingOrgs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\tsort == SolaceTableSortDirection.DCS\n\t\t\t\t\t\t\t\t\t? setSort(SolaceTableSortDirection.ASC)\n\t\t\t\t\t\t\t\t\t: setSort(SolaceTableSortDirection.DCS)" + }, + { + "name": "rows", + "type": "variable", + "value": "monitoringJobs" + }, + { + "name": "columns", + "type": "expression", + "value": "columns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderCustomRowActionItem" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingJobs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(sort) => {\n\t\t\t\t\t\t\tsetConnectorQuery(\n\t\t\t\t\t\t\t\tqueryBuilder({ orgId, pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "variable", + "value": "connectors" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "variable", + "value": "handleSelectionChangedCallback" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columnsDef" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.SINGLE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(sort) => {\n\t\t\t\t\t\t\t\tsetBrokerQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "brokerCompatibility?.data ?? []" + }, + { + "name": "columns", + "type": "expression", + "value": "brokerCompatibilityColumns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "brokerCompatibilityActionMenuItems" + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "function", + "value": "(sort) => {\n\t\t\t\t\t\t\t\tsetHelmChartQuery(\n\t\t\t\t\t\t\t\t\tqueryBuilder({ pageSize, pageNumber, field: sort?.field, sortDirection: sort?.sortDirection })\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + }, + { + "name": "rows", + "type": "expression", + "value": "helmChartCompatibility?.data ?? []" + }, + { + "name": "columns", + "type": "expression", + "value": "helmChartCompatibilityColumns as any" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "rowActionMenuItems", + "type": "variable", + "value": "helmChartCompatibilityActionMenuItems" + }, + { + "name": "loading", + "type": "variable", + "value": "helmChartCompatibilityIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "selectionChangedCallback", + "type": "function", + "value": "() => undefined" + }, + { + "name": "sortCallback", + "type": "variable", + "value": "handleSort" + }, + { + "name": "rows", + "type": "variable", + "value": "tableRows" + }, + { + "name": "columns", + "type": "variable", + "value": "columns" + }, + { + "name": "selectionType", + "type": "expression", + "value": "SolaceTableSelectionType.NONE" + }, + { + "name": "renderCustomRowActionItem", + "type": "variable", + "value": "renderSchemaRowActions" + }, + { + "name": "renderCustomRowCells", + "type": "variable", + "value": "renderSchemaRowCells" + }, + { + "name": "hasColumnHiding", + "type": "boolean", + "value": "true" + }, + { + "name": "displayedColumnsChangedCallback", + "type": "variable", + "value": "displayedColumnsChanged" + } + ] + } + ] + }, + { + "component": "SolaceCard", + "count": 56, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/RuntimeEntityList.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "What is an Event Management Agent?" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoBlurb" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "

{brandableTextValueConverter(\"Environments in PubSub+ Cloud\", \"string\")}

" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissEducationalCard" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/SubscriptionEditorList.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "string", + "value": "Want to subscribe to specific values?" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowInfoBlurb(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "addSubscriptionInfoBlurb" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/SetupAgentsBanner.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "getCardTitle(selectedAudit.auditEntityType)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SidePanelSummaryActionCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/SubjectVersionInfoCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInstructionMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MatchFoundTile.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateInfoBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissReuseIndexInfoCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowRDPInfo(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointInformation" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.warning.w10" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Upload From JSON File\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseEnumVauesHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumValuesHelp\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\n\t\t\t\t\tReferenced Schema Names Require Manual Updates\n\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "reasonKey === AsyncAPIDownloadCollisionReason.ambiguousChannelTopic ? \"Conflicting Topic Address\" : \"Conflicting Objects\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "attractedEventsNoResults" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Defining Topic Domains" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResources" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Tips and Tricks for Topic Addresses\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopicAddressHelp" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noBrokers" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBrokers-noMatchingBrokers" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "messages.projectDefinition.help" + }, + { + "name": "dataQa", + "type": "string", + "value": "projectDefinitionHelp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/LearningBlurb.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setTranformationBlurbDismissedAtom(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "popover ? \"popoverInfo\" : \"infoCard\"" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!popover" + }, + { + "name": "onClose", + "type": "function", + "value": "() => (popover ? undefined : onClose && onClose)" + }, + { + "name": "title", + "type": "string", + "value": "Setting Values for Target Headers" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "popover ? \"inherit\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseDisplayMessage()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummarySection.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tsetShowEducationBlurb(false);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.learning.w10" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setNeedHelp(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "What is an Automated Upgrade?" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Release Notes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "#ffffff" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerSSOCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.messages.firstOpenBottomInfoTitle" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardBottom" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBottomMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.messages.title" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.primary.contrastText" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "string", + "value": "rgba(236, 240, 252, 1)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tMessage Service Alerts & Notification\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/LogsRetention.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Logs Retention" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#fff" + }, + { + "name": "dataQa", + "type": "string", + "value": "logsRetentionCard" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Who Can Receive Notifications?" + }, + { + "name": "dataQa", + "type": "string", + "value": "notificationAd" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + } + ] + }, + { + "component": "SolaceTooltip", + "count": 385, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServicePopOver.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventManagementAgent?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody(memName)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environmentOption.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Remove" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Remove`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltipTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.preview.aclProfile" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "aclProfileConfig" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "messages.credentials.clientCredentials" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientCredentialConfig" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueConfig-${identifier}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "queueBindingTitle" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`queueBindingConfig-${queueBindingTitle}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "identifier" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`rdpConfig-${identifier}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "POPOVER_CONTENT" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{isConfigPushEnabled ? messages.add.brokerConfigurationHelpEnabled : messages.add.brokerConfigurationHelpDisabled}\n\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.applicationVersionRemovalWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "{messages.add.noConfigurationWarning}" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventVersion?.displayName || eventVersion?.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "subscriptions[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-subscriptions`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{subscriptions.slice(1).map((sub, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{sub}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "discrepancies[0]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${id}-discrepancies`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{discrepancies.slice(1).map((discrepancy, index) => (\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t{discrepancy}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "getHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "getTitle(title, description)" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Configuring\"" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "string", + "value": "Update event broker to configure recent changes to this application" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "resourceName" + }, + { + "name": "data-qa", + "type": "string", + "value": "resourceNameTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "placement", + "type": "variable", + "value": "placement" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "selectedEntity.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "onVersionHover ? onVersionHover(version.id) : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${version.id}-${index}`" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`Matching text for '${searchText}'`}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/MultiLineTruncatableText/MultiLineTruncatableText.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "children" + }, + { + "name": "open", + "type": "variable", + "value": "open" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOnOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleOnClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModalFooter.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t{searchText && {`Matching text for '${searchText}'`}}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{parsedMatchedFragments(field.fragments, theme).map((fragment, _index) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn
;\n\t\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isSubscribeReadOnly ? \"Already subscribing to event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "isPublishReadOnly ? \"Already publishing event\" : \"\"" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Add the custom attribute to All application domains or only the Current application domain.\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"customAttributeScopeTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttribute.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue?.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "getStringValuesTooltipContent(customAttributeValue?.stringValues)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "caName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestVersion" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\tLink applications to show an organizational relationship in the graph view.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about linked applications\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "right-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressInfo.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "addressLevelType !== TopicAddressLevelType.variable || disabledEditor || disableTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "enterDelay", + "type": "number", + "value": "800" + }, + { + "name": "enterNextDelay", + "type": "number", + "value": "800" + }, + { + "name": "disableFocusListener", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "graphViewToggle" + }, + { + "name": "title", + "type": "string", + "value": "Graph View" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "selected === \"graph\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/GraphToggleButton.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "listViewToggle" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disableHoverOnListView" + }, + { + "name": "title", + "type": "expression", + "value": "entityName ? : \"Components\"" + }, + { + "name": "variant", + "type": "expression", + "value": "entityName ? \"html\" : \"text\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoom.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom Out" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphZoomV2.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Zoom In" + }, + { + "name": "disableHoverListener", + "type": "variable", + "value": "disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLayoutPartialPublishDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "removedNode.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.parentName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.versionName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshSelectAutocompleteItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "customAttributeName" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/NonApplicableFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "\"Filters relevant only to other object types\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/CustomAttributeFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": " 25 ? customAttributeName : null} selectedFilters={selectedCustomAttributeValues} />" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventApiProductName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.parent?.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "renderProtocolPopover(messagingService.supportedProtocols ?? [])" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainIcon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainIcon-${applicationDomainName}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "itemName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.displayName || item.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainChip-${applicationDomainName}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/predefinedIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/icons/loaders/sampleIconPickerHelper.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "value.label" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "\"The event broker must be in a modeled event mesh to receive runtime data or send configuration data.\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "brokerType" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row.modeledEventMesh.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "(runtimeAgent as EventManagementAgent)?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSempUrlFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getMsgVpnFromEPCore(messagingService)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "{renderUnavailableMessagingServices()}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "STATUS_DESC_DISPLAY_MAP[status]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "timeMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityVersion.displayName || entityVersion.version" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "getTooltipVariant(item)" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/MEMSidePanel.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`${capitalize(AUDIT_ENTITY_TYPE_LABELS_LOWERCASE[auditEntityType])} is found in multiple ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\t\t\t\tAUDIT_ENTITY_TYPE_MAP[auditEntityType]\n\t\t\t\t\t\t\t)}.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverTitle" + }, + { + "name": "placement", + "type": "string", + "value": "left" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "secondaryPanelTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditSingleSelectionContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getSidePanelTitle()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`domainName-${domain.id}`" + }, + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionSummaryPopover-${application.id}`" + }, + { + "name": "placement", + "type": "string", + "value": "left-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"text\"" + }, + { + "name": "title", + "type": "jsx", + "value": "
Only the first {getAuditResultLimit(resultType).toLocaleString()} will be imported.
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${jobId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "popoverContent" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`auditImportPopover-${createdTime}`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/NormalFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/SingleSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "!applicable ? `Filter does not apply to ${entityTypeToLabel(entityType)}s` : \"\"" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "renderSubjectRelationshipHelp()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(tag)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "getTooltipMessage(hideAuditTag)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationVersion.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "applicationVersion.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipBody" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/PreviewGeneratedEntity.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "variable", + "value": "entityName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "rowIdentifierValue" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "parentName" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${row.designObjects.parentName} ${numAdditionalParents}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "enumEntity.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(enumEntity.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApiProduct.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "schema.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(schema.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "application.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "en.application.applicationType[application.applicationType]" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(application.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "eventApi.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "event.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"You do not have access to this Application Domain\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"left\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "getApplicationDomainNameById(event.applicationDomainId, applicationDomains)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "secondaryAction?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "selectedDetails.accessDenied && selectedDetails?.tooltip" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "reuseIndexTooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.dividend}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t÷\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.definitionSection.formula.divisor}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.title}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.description}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.kpiMetricsDashboard.reuseIndices.tooltip.purposeSection.link}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getTooltipContent()" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "placement", + "type": "string", + "value": "right" + }, + { + "name": "dataQa", + "type": "string", + "value": "queueBindingHelpTooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "domain.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "string", + "value": "Unable to edit when custom attributes have unsaved changes" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "version" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionInfo?.displayName || versionInfo?.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "customAttributeValue.customAttributeDefinitionName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "getCustomAttributesHelpTooltipContent()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${configuredCustomAttributeCount} of ${totalCustomAttributeCount} configured`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "`Unable to edit when ${entityType} has unsaved changes`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributePanelTitle.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "unsavedChangesWarningMsg" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"version\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "getVersionValues()?.[versionObjectName][\"displayName\"]" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.latestNonRetiredVersion ? row.latestNonRetiredVersion.displayName || row.latestNonRetiredVersion.version : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tEvent version already added to {applicationDomainsMap?.[domainIdForParent]?.name}.\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/ExpandedSharedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "node.displayName || node.versionSemver" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "nodeWarningTypeDescription[warnings?.[0]]" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "SecondaryTextHoverContent()" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/ExpandedEventApiItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/IncludedEventApiListDetails.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "level.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tAll object names are renamed with the chosen naming strategy to ensure objects with the same name can be differentiated in the file.\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn about downloading AsyncAPI documents\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tPrepend Application Domain Name\n\t\t\t\t\t\t\tUse this option when the file contains objects with the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\tAppend Major Version Number\n\t\t\t\t\t\t\tUse this option when the file contains more than one version of the same name.\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"namingStrategyTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.parent?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"availability-Tooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltipContent" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"small\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"top-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"approvalTypes-Tooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.requestor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "formatISOTimeFromNow(row.createdTime)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "EVENT_ACCESS_REQUEST_STATUS_LABELS[row.reviewStatus]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[request.applicationDomainId]?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "eventMesh.environmentName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "warning" + }, + { + "name": "placement", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "consumer.name" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainUserStats.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "renderTooltipBody()" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "key", + "type": "expression", + "value": "`tooltip-${name}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicatonDomainPopoverContent(name)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"full\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "entityConfigSidePanelProps.title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionExpandedRow.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "expression", + "value": "handleVersionListHover()" + }, + { + "name": "placement", + "type": "string", + "value": "right-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Application Domain\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "displayName ? displayName : version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "viewedSchema.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + }, + { + "name": "dataQa", + "type": "string", + "value": "viewedSchemaName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap[schemaParent.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "sharedSchema ? \"This event is shared. Only shared schemas can be created\" : \"\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`${schemaVersionSelectedMap[row.id].length} Added`" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Selected\"" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedApplicationItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "applicationDomainsMap?.[row.applicationDomainId]?.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row.name" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.configuration.description" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "expression", + "value": "messages.action.addApplication" + }, + { + "name": "placement", + "type": "string", + "value": "top" + }, + { + "name": "disableHoverListener", + "type": "expression", + "value": "!!applicationVersion?.id" + }, + { + "name": "disableFocusListener", + "type": "expression", + "value": "!!applicationVersion?.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.approved" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.pending" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.declined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "RequestStatusLabel.toBeRequested" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "consumerName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "variable", + "value": "subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event Access Requests\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"searchEventsTooltip\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "eventName ? \"Event is not shared across application domains\" : \"You do not have access to view this event because it is not shared\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "request.subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "versionData.displayName" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ExpandedEventItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "applicationName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "version.displayName || version.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "title", + "type": "expression", + "value": "\"Event is not the latest version\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.rich" + }, + { + "name": "title", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "item.name" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "messages.info" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/MultiSelectFilterChip.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"html\"" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "open", + "type": "variable", + "value": "tooltipOpen" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleTooltipOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleTooltipClose" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"medium\"" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/BaseDisplayField.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.source" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "TooltipVariant.overflow" + }, + { + "name": "title", + "type": "expression", + "value": "item.target" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DropElement.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.nonDroppableTooltip" + }, + { + "name": "open", + "type": "expression", + "value": "isActive && !canDrop" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.source" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectors.labels.target" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "role.title" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`roleIcon-${resourceRole || \"none\"}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Configuration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "variable", + "value": "maxQueueMsgsInfo" + }, + { + "name": "placement", + "type": "expression", + "value": "\"bottom-start\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "small" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"service-auth-tooltip\"" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "expression", + "value": "\"right\"" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{helpMessage}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_tiles\", message: \"Grid View\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_view_list\", message: \"List View\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "email" + }, + { + "name": "placement", + "type": "string", + "value": "top-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(service.id as string)?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "environment.label || \"n/a\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "servicesInMeshes.get(serviceId)?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "userAccessInfo.userAccessText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled\n\t\t\t\t\t\t\t\t\t\t? t({ id: \"id_release_revoked_icon_auto\", message: \"The event broker requires an upgrade. Plan upgrade on the service's Status tab.\" })\n\t\t\t\t\t\t\t\t\t\t: t({ id: \"id_release_revoked_icon\", message: \"The event broker requires an upgrade.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "userName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "chipProps.tooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{roleIdNameMap &&\n\t\t\t\t\t\t\t\t\tuser.roles\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, user.roles.length)\n\t\t\t\t\t\t\t\t\t\t.map((role) => {roleIdNameMap[role]})}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${testItem.id}-${testItem.name}-template-warning`" + }, + { + "name": "title", + "type": "expression", + "value": "environmentsStr.configurationTemplates.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeTemplatesWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`The environment type cannot be changed.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "environment.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "textValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "dataQa", + "type": "string", + "value": "pcuCalculationTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "user.email" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsRoleRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.roles.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.roles.length).map((item) => (\n\t\t\t\t\t\t\t\t\t\t{mappedRolesData[item].name}\n\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "rowData.claimValues" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingUserGroupRowItem.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{rowData.userGroups\n\t\t\t\t\t\t\t\t\t\t.slice(NUMBER_OF_ITEMS_TO_DISPLAY, rowData.userGroups.length)\n\t\t\t\t\t\t\t\t\t\t.map(({ name, value }) => (\n\t\t\t\t\t\t\t\t\t\t\t{name}\n\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(c.status)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "getStatusLabel(mc.status)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection[\n\t\t\t\t\t\t\t\t\t\t\tuser?.eventPortal2AccessEnabled ? \"totalObjectsTooltip1\" : \"totalObjectsTooltip2\"\n\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.totalObjectsCountText}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.overview.eventPortalSection.objectsCountLearnLinkText}\n\t\t\t\t\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.styles.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.readyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.notReadyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.inMaintenanceTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcOperational" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.privateRegions.labels.dcNotoperational" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "row?.epCapabilities == Status.ERROR ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.eventManagementAgentErrorText}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.privateRegions.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "variant", + "type": "string", + "value": "rich" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "placement", + "type": "string", + "value": "bottom-start" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "title", + "type": "expression", + "value": "tracingProfileUsedByService ? tooltips.inUseTracingDestination : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "tracingDestinationLimitReached\n\t\t\t\t\t\t\t\t\t? tooltips.maxTracingDestinationReached(tooltips.tracingDestinationsLimit)\n\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "dateStr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${item.name}-key4`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "path.title" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/SolaceHeader.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "path.title" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailOrgCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tenantId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDatacenters/CustomerDatacenters.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`${item}`" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`tooltip${key}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsServicesCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "serviceNameTooltip" + }, + { + "name": "title", + "type": "expression", + "value": "name.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "customerId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "accountName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "txt" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "txt" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "txt" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "dateStr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Expired ${-daysUntilExpiry} day${-daysUntilExpiry !== 1 ? 's' : ''} ago`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Expiring in ${daysUntilExpiry} day${daysUntilExpiry !== 1 ? 's' : ''}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "configRequest" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "variable", + "value": "configRequest" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.infrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.monitoringMode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceClassId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.servicePackageId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.solaceDatadogAgentImage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.solaceDatadogAgentVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/components/ServiceOperationIdTooltip.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "time" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.[key]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "secondary.toString()" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "String(row[key])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "textValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "variant", + "type": "string", + "value": "html" + }, + { + "name": "dataQa", + "type": "string", + "value": "pcuCalculationTooltip" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.title}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{drawdownUsage.messages.message}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "`TLS verification skipped. This creates an insecure connection to event brokers with custom certificates.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "`Latest Image Tag: ${latestVersion}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "expression", + "value": "popoverContent(row as ManagedEventManagementAgent)" + }, + { + "name": "maxWidth", + "type": "string", + "value": "full" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "displayName" + }, + { + "name": "placement", + "type": "string", + "value": "top" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "row?.released ? \"Released\" : \"Not Released\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "value ? \"text\" : \"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "value ? time : \"Not Released\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.[key]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.[key]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.organizationId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "datadogSubOrgAttributes().variant" + }, + { + "name": "title", + "type": "expression", + "value": "datadogSubOrgAttributes().tooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.monitoring" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "datadogArtifactAttributes().tooltip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "row?.aup === \"N/A\" ? \"html\" : \"overflow\"" + }, + { + "name": "title", + "type": "expression", + "value": "row?.aup === \"N/A\" ? \"Not Applicable\" : row?.aup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "expression", + "value": "row.distributedTracingEnabled == undefined ? \"Use the refresh button to fetch this info\" : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "text" + }, + { + "name": "title", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "typedRow.org_id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "variable", + "value": "version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "string", + "value": "N/A" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "string", + "value": "N/A" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.deploymentId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.infrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.requestAction" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.deploymentStatus" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.updatedOn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "rich" + }, + { + "name": "title", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{hiddenEmails.map((email, index) => (\n\t\t\t\t\t\t\t\t{email}\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "organizationDetails.notificationContacts.tooltips.copyEmail" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`podName-${index}`" + }, + { + "name": "title", + "type": "expression", + "value": "row.podName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`attachedNode-${index}`" + }, + { + "name": "title", + "type": "expression", + "value": "row.attachedNode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`pod-${index}-${idx}`" + }, + { + "name": "title", + "type": "variable", + "value": "item" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`messageBrokerPod-${index}`" + }, + { + "name": "title", + "type": "variable", + "value": "messageBrokerPod" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`events-${index}`" + }, + { + "name": "title", + "type": "expression", + "value": "row.events?.join()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.provider.toUpperCase()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serverCertificateId ?? \"Default Global\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.accessType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "_.isEmpty(row?.cloudAgentVersion) ? \"Not Configured\" : row?.cloudAgentVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.datacenterType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "tooltip" + }, + { + "name": "variant", + "type": "string", + "value": "html" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.datacenterId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.infrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "overflow" + }, + { + "name": "title", + "type": "expression", + "value": "row?.tracingBackendType" + } + ] + } + ] + }, + { + "component": "SolaceLabel", + "count": 304, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Domain`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessApproval`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "parentShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"eventMesh[description]-label\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMesh[environment]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"bulkMoveCurrentAppDomainLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerConfiguration\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventBrokerName\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationName\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationVersion\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"directClients\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventQueues\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"kafkaConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationA\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfile\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RDPName\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"RESTConsumerType\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"clientProfileLabel\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"queueConsumers\"" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Name`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Version`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "roleHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionVersion]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDisplayName]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/catalog/CatalogEntityVersionDetailsView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${version.id}[versionDescription]-label`" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "version" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityPreview.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}Preview`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customColour]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customColour]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}[customIconLogo]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityType}[customIconLogo]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[versionState]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[versionState]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${entityName}[endOfLifeDate]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionView.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[stateName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[stateName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "linkedApplications-label" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[state]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[state]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"newVersion-label\"" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "\"newVersion\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DescriptionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileNameLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "defaultClientProfileName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphLegendItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "multiSelectKey" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`entityVersion-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[endOfLife]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "env" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshOfMessagingServiceToBeDeleted-none-label" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]-label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[agentMode]-label" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[EventBrokers]-title" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`serviceLabel-${messagingService.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connectedMem\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgentIdLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationDomainsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"applicationDomainLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-applabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"appVersionSummary-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelObjecs\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"updateLabelAction\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"environmentListLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsNameLabel" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsDescriptionLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "detailsEnvironementAssociationLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductBrokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiBrokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requiresApproval" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`postRequestTarget-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}TypeLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}NameLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${prefix}ValueLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"postRequestTarget-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"requestTargetEvaluation-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointConfigurationEmpty" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointConfigurationType-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointConfigurationType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`restDeliveryPointName-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`restDeliveryPointName`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "template" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"templateLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "customModeNone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectAllDomainsLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"selectedDomainsLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "sectionId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filename-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "kafkaDelimiter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumeration[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumeration[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "enumerationVersion[values]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "enumerationVersion[values]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[displayName]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionObjectName}[description]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${versionObjectName}[description]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearchLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "domainsSearch" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"filter-popup-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApi[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApi[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declaredEAPVersions-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "declaredEAPVersions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + }, + { + "name": "required", + "type": "expression", + "value": "!isEmpty(getValues(`${versionObjectName}.name`))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "planNameLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "availabilityLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "approvalType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageDeliveryMode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "queueType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxTTL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "maxMsgSpoolUsage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProduct[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventApiProductShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schema[schemaType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schema[schemaType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaTypeLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsLoadingLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEventsNoPermission\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"attractedEvents\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-name`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`consumers[${index}]-consumerType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${consumer.name}-templateLabel`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "suggested-events" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain[description]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "applicationDomain[description]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`brokerTypeLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`topicDomainLabel-${topicDomain.id}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"name-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resource-label\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"description-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesMessageLabel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"topicAddressResourcesPreview\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "event[requiresApproval]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "event[requiresApproval]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "topicAddressResource" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventShared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"eventVersion[topicAddressLevels]-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaType-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "keySchemaType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "appearsIn-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "appearsIn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "\"domainsSearch[label]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[details]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[shared]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[description]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsBody.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`schemaVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`schemaVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "schemaVersion[content]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "schemaVersion[content]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[version]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[version]`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`eventVersion[topicAddress]-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`eventVersion[topicAddress]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "associateWithEvent" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noCredentials`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventBroker.id}-noApplicationVersion`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[name]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[name]" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application[brokerType]-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "application[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "not-declared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "declared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectedMem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"subscription\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventFlows-label" + }, + { + "name": "htmlForId", + "type": "string", + "value": "eventFlows" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/EventForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "application" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ApplicationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventTopic" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "subscriptionEvent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationDomainLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "targetHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "headerExpression" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${props.id}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-key`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "type" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${detail.label}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_status\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_direction\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_description\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`connector-${config.label}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_eventBrokerService\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"connector_sidepanel_bindingDestination\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"sslKeyStoreFileUploaderLabel\"" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${label}_label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsLabel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "keyTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "valueTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SolaceMdEditor/SolaceMdEditor.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/icons/RoleIcon.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`role-label-${resourceRole}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/FileUploader.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${id}-label\"`" + }, + { + "name": "htmlForId", + "type": "variable", + "value": "htmlForId" + }, + { + "name": "required", + "type": "variable", + "value": "required" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoints.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "endpoints" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryptionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "mateLinkEncryption" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "certAuthoritiesLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloneCertificateAuthorities" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "environment" + }, + { + "name": "required", + "type": "expression", + "value": "!!serviceId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "htmlForId", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "noWrap", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "expression", + "value": "`${nameCheck}-label`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "regionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "region" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "serviceName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersionLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloudLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "cloud" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterNameLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "clusterName" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemTypeLabel" + }, + { + "name": "htmlForId", + "type": "string", + "value": "systemType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "nameHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "typeHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "accessHeader" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"resourceAssignmentListLoading\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/components/CommonFormControl.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "activeStorageAddOns" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "unusedStorage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "current-environment-label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`description-label-${selectedItem.id}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`state-label-${selectedItem.id}`" + } + ] + } + ] + }, + { + "component": "SolaceAccordion", + "count": 86, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SelectedEntityVersion.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "getEntityDetailsTitle" + }, + { + "name": "details", + "type": "variable", + "value": "getEntityDetailsPanel" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}DetailsAccordion`" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeAdded, null, CHIP_COLORS.SUCCESS_BG_GREEN)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeDeleted, null, CHIP_COLORS.ERROR_BG_RED)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.toBeUpdated, null, CHIP_COLORS.INFO_LIGHT_BG_BLUE)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "summary", + "type": "expression", + "value": "getSummary(group, item, messages.preview.noChange, null, null)" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(item, group)" + }, + { + "name": "expanded", + "type": "expression", + "value": "accordionOpenStatus[key]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChangeAccordion(key)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "key" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "applicationsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Application Domains\", appDomains.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(appDomains)" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "memsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMEMClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Modeled Event Meshes\", mems.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(mems)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "expanded", + "type": "variable", + "value": "environmentsExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderEntitySummary(\"Environments\", environments.length)" + }, + { + "name": "details", + "type": "expression", + "value": "renderEntityDetails(environments)" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsToDelete" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModal.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEventDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "entityType ? `customAttributes-${entityType}-accordion` : null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{`Custom Attributes (${count})`}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t{errorMsg && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{errorMsg}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\t{!errorMsg && <>{customAttributeValueList}}\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/EntityAppearance.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Appearance" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{formMethods && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityAppearance" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "summary" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "isErrorDetailsExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "(event, expanded) => errorDetailsMessageExpandHandler(expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/ClientProfileName.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails(associatedEnvironmentList)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `eap-${eventApiProductVersion.id}`" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.environmentId" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? `messagingService-${item.environmentId}`" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "environmentAuth.canViewConfigPushJobStatus && isPollingError(environmentSummaryConfigPushStatus) ? \"error\" : undefined" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "item.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{title}\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t handleDownloadFile(evt, details, emaType, downloadButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleCopyFile(evt, details, emaType, copyButtonId)}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\n\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{details}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onToggle()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ConnectionFileDownloadDialog.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tConnection File Details\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t handleDownloadFile(evt)}>\n\t\t\t\t\t\t\t\t\tDownload\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tCopy\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "
{confFileContent}
" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleChange(\"confFile\")" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionFileDownloadDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/PreflightCheckListAccordion.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "EmaPreflightCheckListAccordion" + }, + { + "name": "details", + "type": "expression", + "value": "renderSummary(emaMode)" + }, + { + "name": "expanded", + "type": "variable", + "value": "isOpen" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggle" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSideInfoBlurbSummary()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion]" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t onTitleLinkClick(messagingService)}\n\t\t\t\t\t\t\t\tdataQa=\"messagingService[Accordion][Title]\"\n\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{isCloudBased && } {!messagingService?.eventMeshId && }\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{brokerTypeLabel[messagingService.messagingServiceType] ?? \"Solace\"}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t{!messagingService.eventManagementAgentId && (\n\t\t\t\t\t\t\t\t removeMessagingService(messagingService)} title=\"Remove\" dataQa=\"removeMessagingService\">\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\tConnected Modeled Event Mesh\n\t\t\t\t\t\t{eventMesh ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{eventMesh?.name}{\" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\tNone\n\t\t\t\t\t\t)}\n\t\t\t\t\t
" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "hasIndicator ? \"info\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "demoAccordionList" + }, + { + "name": "expanded", + "type": "expression", + "value": "serviceAccordionControl[item.id]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleServiceAccordionControl(item.id)" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail(item)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "summary", + "type": "expression", + "value": "renderRuntimeAgentSummary(runtimeAgent as EventManagementAgent)" + }, + { + "name": "details", + "type": "expression", + "value": "renderRuntimeAgentDetails(runtimeAgent as EventManagementAgent)" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingMessagingServiceList" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRuntimeAgentExpanded" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/SharedComponents.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "dataQa" + }, + { + "name": "summary", + "type": "variable", + "value": "summaryElement" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/simplified/ImportPreviewAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"importPreviewAccordion\"" + }, + { + "name": "summary", + "type": "expression", + "value": "renderSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderDetails()" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "isSelected ? \"success\" : null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplateHelp.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "summary" + }, + { + "name": "summary", + "type": "jsx", + "value": "{summary}" + }, + { + "name": "details", + "type": "variable", + "value": "details" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEnumVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getEnumDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiProductVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiProductDetailsTitle(selectedEventApiProduct)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiProductDetailsPanel(selectedEventApiProduct, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogSchemaVersionDetails" + }, + { + "name": "summary", + "type": "variable", + "value": "getSchemaDetailsTitle" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogApplicationVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getApplicationDetailsTitle()" + }, + { + "name": "details", + "type": "expression", + "value": "getDetailsPanel(true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/Utils.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "catalogEventApiVersionDetails" + }, + { + "name": "summary", + "type": "expression", + "value": "getEventApiDetailsTitle(selectedEventApi)" + }, + { + "name": "details", + "type": "expression", + "value": "eventApiDetailsPanel(selectedEventApi, applicationDomainName, true)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAccordionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionClick" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${configurationName}-${type}-${index}-requestHeader`" + }, + { + "name": "summary", + "type": "expression", + "value": "getRequestHeaderSummary(header, type, index)" + }, + { + "name": "details", + "type": "expression", + "value": "getRequestHeaderDetails(header, type, index)" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedHeaders[expandKey]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\tsetExpandedHeaders((prev) => {\n\t\t\t\t\t\tprev[expandKey] = !prev[expandKey];\n\n\t\t\t\t\t\treturn { ...prev };\n\t\t\t\t\t});\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "variable", + "value": "queueBindingDetails" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "summary", + "type": "variable", + "value": "queueBindingSummary" + }, + { + "name": "details", + "type": "expression", + "value": "getQueueBindingDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`restDeliveryPointAccordion`" + }, + { + "name": "summary", + "type": "variable", + "value": "accordionSummary" + }, + { + "name": "details", + "type": "variable", + "value": "restConsumers" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getDomainAccordionSummary(domain)" + }, + { + "name": "details", + "type": "expression", + "value": "getDomainAccordionDetails(domain)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`domainAccordion-${domain.id}`" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandedDomainMap[domain.id] === true" + }, + { + "name": "onChange", + "type": "function", + "value": "() => onAccordionChange(domain.id, expandedDomainMap)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/import/DomainImportValidateDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"importDomainValidationAccordion\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "importDomainValidationAccordion" + }, + { + "name": "summary", + "type": "expression", + "value": "customAttributeValidations?.validationMessage" + }, + { + "name": "details", + "type": "expression", + "value": "customAttributeValidations?.validations" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/AddNewNode.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`newNodeAccordion-${brokerType.value}`" + }, + { + "name": "key", + "type": "expression", + "value": "brokerType.value" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "expression", + "value": "dragNDropPanelExpansions[brokerType.value]" + }, + { + "name": "onChange", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tsetDragNDropPanelExpansions((prev) => {\n\t\t\t\t\t\t\tconst newState = { ...prev };\n\n\t\t\t\t\t\t\tnewState[brokerType.value] = !prev[brokerType.value];\n\n\t\t\t\t\t\t\treturn newState;\n\t\t\t\t\t\t})" + }, + { + "name": "summary", + "type": "jsx", + "value": "{`${brokerType.label} Objects`}" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].application);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Application\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].event);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tNew Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\tonNodeClick(e, DraggableNewNodeId[brokerType.value].eventExternal);\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tShared Event\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.application || activeDraggingId === DraggableNewNodeId.kafka.application) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.event || activeDraggingId === DraggableNewNodeId.kafka.event) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t{(activeDraggingId === DraggableNewNodeId.solace.eventExternal || activeDraggingId === DraggableNewNodeId.kafka.eventExternal) && (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "Conflicting Objects" + }, + { + "name": "details", + "type": "variable", + "value": "conflictingObjects" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/Subscriptions.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpandClick()" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${consumer.name}-consumerAccordion`" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "getAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "getAccordionDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "`${topicDomain.length} affected Topic Domains`" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{topicDomain.map((topicDomainEntry) => (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{duplicate && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tUsed in\n\t\t\t\t\t\t\t\t\t\t\t{topicDomainEntry?.applicationDomains?.map(({ name }) => (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t\t\t\t{renderOtherApplicationDomains(topicDomainEntry?.applicationDomainCount, topicDomainEntry?.applicationDomains)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "accordionExpanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleAccordion()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"topicAddressHelp\"" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\tTips and Tricks for Topic Addresses\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandTopicAddressHelp" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpandTopicAddressHelp(!expandTopicAddressHelp)" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.default" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordianClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetail()" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "request.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleItemClick" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "variable", + "value": "accordionDetails" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "indicatorVariant ?? null" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? null" + }, + { + "name": "hover", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-events`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Published Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${application.applicationName}-subscriptions`" + }, + { + "name": "summary", + "type": "jsx", + "value": "{\"Subscribed Events\"}" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "expression", + "value": "application.applicationName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ReviewForm.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages.applicationDomain.label}\n\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails(applications)" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "variable", + "value": "applicationDomainName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "connectorTypeDetails?.name ?? \"\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderVendorConfigurationDetails()}" + }, + { + "name": "expanded", + "type": "variable", + "value": "showSourceDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowSourceDetails(!showSourceDetails)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "\"Solace\"" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.eventBrokerService}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{(serviceDetails?.name && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{serviceDetails.name}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)) || {\"-\"}}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{en.connectors.labels.bindingDestination}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{getConnectorSummaryValue(solaceDestination)}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "showTargetDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowTargetDetails(!showTargetDetails)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "en.connectors.labels.advancedAuthenticationProperties" + }, + { + "name": "dataQa", + "type": "string", + "value": "advancedAuthenticationPropsAccordion" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tvalue={clientCertValues.sslKeyStoreFormat}\n\t\t\t\t\t\t\treadOnly={readOnly}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t{sslKeyStoreFormatTypes.map((option, index) => {\n\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{option}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslKeyStorePassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\ttype={showSslPrivateKeyPassword ? \"text\" : \"password\"}\n\t\t\t\t\t\t\tendAdornment={[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t/>\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tonBlur={() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\thasErrors={!readOnly && !!solaceValidationErrors.clientCertUsername}\n\t\t\t\t\t\t\thelperText={\n\t\t\t\t\t\t\t\t!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t/>\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_spool_resource_calc\", message: \"Expanded Spool Size Billing\" })" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCalculations" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCalculations" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[id]" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientProfileDialog.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "client-profile-advanced-settings" + }, + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_advanced_settings\", message: \"Advanced Settings\" })" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "advancedSettings" + }, + { + "name": "onChange", + "type": "function", + "value": "(_, expanded) => setAdvancedSettings(expanded)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${endpoint.id}Accordion`" + }, + { + "name": "key", + "type": "expression", + "value": "endpoint.id" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{endpoint.name}\n\t\t\t\t\t\t\t\t\t\t\t\t{isInProgress && isInProgress.serviceConnectionEndpoint.name === endpoint.name && }\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{i18n._(accessTypes[endpoint.accessType])}\n\t\t\t\t\t\t\t\t\t\t{endpoint.description}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa=\"actions\"\n\t\t\t\t\t\t\t\t\t\t\t\tid={`public_actions`}\n\t\t\t\t\t\t\t\t\t\t\t\titems={[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]}\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tProtocols\n\t\t\t\t\t\t\t\t\t\t\t\tStatus\n\t\t\t\t\t\t\t\t\t\t\t\tPort\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{protocols.map((port) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst value = ports.get(port.protocol);\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{port.label}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? \"Enabled\" : \"Disabled\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{value?.port ? value.port : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandPublicEndpoint[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "(_e, expanded) => setExpandPublicEndpoint([...expandPublicEndpoint.slice(0, index), expanded, ...expandPublicEndpoint.slice(index + 1)] as boolean[])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ClusterNameCard.tsx", + "props": [ + { + "name": "summary", + "type": "expression", + "value": "t({ id: \"id_used_by_n_services\", message: plural(cluster?.serviceNames.length ?? 0, { one: \"Used by # service\", other: \"Used by # services\" }) })" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setExpanded(!expanded)" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "cluster-name-services" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{cluster.serviceNames.map((serviceName) => (\n\t\t\t\t\t\t\t\t\t
{serviceName}
\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 1: Configuration on the Event Broker\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tYou must configure Telemetry Profiles and Topic Filters in Broker Manager before moving to step 2.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Broker Manager's Telemetry\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-1-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep1" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep1Click" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tStep 2: Trace Collection\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCheck Status\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{isConfigured ? Update Configuration : Deploy Configuration}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t{distributedTracingStatus === \"notConfigured\" || distributedTracingStatus === \"pending\" || !telemetryProfileName ? (\n\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t{distributedTracingStatus === \"pending\" ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\tData Collection is not configured.\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"success\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{collectorRunningStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"success\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"error\" && }\n\t\t\t\t\t\t\t\t\t\t{brokerConnectionStatus === \"pending\" && (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "step-2-accordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "expandStep2" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpandStep2Click" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "section.label" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "summary", + "type": "expression", + "value": "section.label" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleSection(index)" + }, + { + "name": "details", + "type": "jsx", + "value": "{renderProperties(section.data, section.properties)}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormAdvancedOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tAdvanced Connection Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "advanced_connection_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showAdvancedProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAdvancedProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormCloneOptions.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tClone Options\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "clone_options" + }, + { + "name": "expanded", + "type": "variable", + "value": "showCloneProps" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowCloneProps" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpoint.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "showEndpoints" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowEndpoint" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldProtocol.tsx", + "props": [ + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "indicatorVariant", + "type": "expression", + "value": "state.showError ? \"error\" : state.showWarning ? \"warn\" : undefined" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "brokerSSONestedAccordion" + }, + { + "name": "onChange", + "type": "function", + "value": "() => toggleBrokerAccordion()" + }, + { + "name": "summary", + "type": "expression", + "value": "en.brokerSSOConfig.instructionsText" + }, + { + "name": "expanded", + "type": "variable", + "value": "isBrokerAccordionExpanded" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t1. Click Manage Brokers, then select which event broker services to\n\t\t\t\t\t\t\t\tenable to use Broker SSO.
\n\t\t\t\t\t\t\t\t2. Click Enable SSO.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t3. Click Copy Broker URIs.
\n\t\t\t\t\t\t\t\t4. Add the URIs you've copied to your identity provider.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t5. After you complete these steps for your event broker services, you can use SSO to access them.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tTroubleshooting tip\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tIf a broker has more than one URI, the URIs are copied as comma-separated list. If your identity\n\t\t\t\t\t\t\t\t\tprovider does not support this format, manually enter each URI separately.\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "summary", + "type": "jsx", + "value": "" + }, + { + "name": "expanded", + "type": "expression", + "value": "expanded[index]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpanded(index)" + }, + { + "name": "border", + "type": "boolean", + "value": "true" + }, + { + "name": "details", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "usersAccordion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderUserSummary(0)" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{usersList.map((user, index) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.name}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.firstName ? `${user.firstName} ${user.lastName}` : \"-\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.userToolTip.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{user.email}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tplacement=\"bottom\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t{isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{hasMore && !showMore && !isLoading && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showMore}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t{showMore && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{userGroups.viewDetailsDialog.usersDropdown.showLess}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "openAuditFilterOptionsSection" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Time Range\"\n\t\t\t\t\t\t\t\tvalue={filters.timeRange.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{timeRangeLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Status\"\n\t\t\t\t\t\t\t\tvalue={filters.status.value}\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{statusLabels?.map(({ label, value }, index) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{label}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Category\"\n\t\t\t\t\t\t\t\tvalue={filters.category.value}\n\t\t\t\t\t\t\t\tid=\"categoryFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{auditCategoriesEventTypes?.map((item: { category: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.category}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{autoCompleteField()}\n\t\t\t\t\t\t\t handleFilterChange(e)}\n\t\t\t\t\t\t\t\ttitle=\"Event\"\n\t\t\t\t\t\t\t\tvalue={filters.event.value}\n\t\t\t\t\t\t\t\thelperText={!filters.category.value ? en.auditLogs.selectCategory : \"\"}\n\t\t\t\t\t\t\t\tid=\"eventFilter\"\n\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t{eventsOptions?.types?.map((item: { name: string; description: string }, index: number) => (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowFilterOptions((state) => !state)" + }, + { + "name": "expanded", + "type": "variable", + "value": "showFilterOptions" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{en.auditLogs.filters}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{selectedFilters?.map((filter, index) => (\n\t\t\t\t\t\t\t\t\t deleteFilter(filter.key)}\n\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t))}\n\t\t\t\t\t\t\t\t{selectedFilters.length > 0 ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.auditLogs.clearAll}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "token.id" + }, + { + "name": "expanded", + "type": "variable", + "value": "expanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "square", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "summary", + "type": "expression", + "value": "`${categoryName} (${numberOfSelectedPermissions}/${permissions.length})`" + }, + { + "name": "details", + "type": "jsx", + "value": "<>{renderDetails(false)}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/CopyTokenDialog.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "summary", + "type": "expression", + "value": "renderAccordionSummary()" + }, + { + "name": "details", + "type": "expression", + "value": "renderAccordionDetails()" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenDetailsAccordion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "result.role" + }, + { + "name": "dataQa", + "type": "string", + "value": "agentStatus" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{result.role}\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleExpandChange(result.role)" + }, + { + "name": "expanded", + "type": "expression", + "value": "expandStates[result.role]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "border", + "type": "boolean", + "value": "false" + }, + { + "name": "dataQa", + "type": "string", + "value": "datadogIntegrationsAccordion" + }, + { + "name": "summary", + "type": "expression", + "value": "\"Datadog Integrations\"" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "expanded", + "type": "variable", + "value": "datadogIntegrationsExpand" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setDatadogIntegrationsExpand(!datadogIntegrationsExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "manuallyConfigureLogFacetsAccordion" + }, + { + "name": "expanded", + "type": "variable", + "value": "manuallyConfigureLogExpand" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setManuallyConfigureLogExpand(!manuallyConfigureLogExpand)" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tManually configure Log Facets in{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\tDatadog\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tFacets List to create in Datadog:\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t {}}\n\t\t\t\t\t\t\t\t\t\t\t\tselectionType={SELECTION_TYPE.NONE}\n\t\t\t\t\t\t\t\t\t\t\t\tminHeight=\"fit-content\"\n\t\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "hover", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "expanded", + "type": "variable", + "value": "isExpanded" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAccordionChange" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "summary", + "type": "jsx", + "value": "\n\t\t\t\t\t\tUpgrade Run Details\n\t\t\t\t\t" + }, + { + "name": "dataQa", + "type": "string", + "value": "upgrade-run-details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentInfoExpand" + }, + { + "name": "summary", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tConnector Deployment Info\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentDetailsRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshDetailsInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshDetailsInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setSidekickDeploymentInfoExpand(!sidekickDeploymentInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentStatusExpand" + }, + { + "name": "summary", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tConnector Deployment Status\n\t\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\t handleSidekickDeploymentStatusRefresh()}\n\t\t\t\t\t\t\t\t\t\t\tisDisabled={refreshStatusInProgress}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{refreshStatusInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setSidekickDeploymentStatusExpand(!sidekickDeploymentStatusExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "serviceInfoExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Associated Service" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setServiceInfoExpand(!serviceInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "sidekickDeploymentDetailsExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Connector Deployment Details" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setSidekickDeploymentDetailsExpand(!sidekickDeploymentDetailsExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "collectorInfoExpand" + }, + { + "name": "summary", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\tCollector Info\n\t\t\t\t\t\t\t\t event.stopPropagation()}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{refreshInProgress ? (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setCollectorInfoExpand(!collectorInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "serviceInfoExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Associated Service" + }, + { + "name": "details", + "type": "jsx", + "value": "" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setServiceInfoExpand(!serviceInfoExpand)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "expanded", + "type": "variable", + "value": "collectorConfigExpand" + }, + { + "name": "summary", + "type": "string", + "value": "Collector Configuration" + }, + { + "name": "details", + "type": "jsx", + "value": " getCollectorConfig({ infrastructureId: service?.infrastructureId as string })}\n\t\t\t\t\t\t\t/>" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setCollectorConfigExpand(!collectorConfigExpand)" + } + ] + } + ] + }, + { + "component": "SolaceAttributeBadge", + "count": 64, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "tagName" + }, + { + "name": "labelColor", + "type": "variable", + "value": "tagTextColor" + }, + { + "name": "fillColor", + "type": "variable", + "value": "tagBgColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ErrorBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.error]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/ConfiguringBadge.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "CONFIGURATION_PUSH_STATUS_LABELS[POLLING_STATUS.inProgress]" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/badges/UpdateBadge.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Update Required\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "messages.selectDialog.default" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "pubSubStatus" + }, + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-toDelete`" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "expression", + "value": "\"To Be Deleted\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "StateChipStyleProps[stateName]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "stateName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Current" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "To Be Removed" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Unavailable\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "false" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/components/EmaConnectionStatusBadge.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "badgePropsForStatus" + }, + { + "name": "label", + "type": "variable", + "value": "status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_BLUE" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SMOKE_GREY" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "status" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "label", + "type": "string", + "value": "New" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.environmentName" + }, + { + "name": "variant", + "type": "string", + "value": "filled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"filled\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Recommended\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"overriddenBadge\"" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_LIGHT_BG_BLUE" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.INFO_BLUE_LABEL" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.overridden" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Added\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.pub" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${\n\t\t\t\t\t\t\t\texpandedDataMap?.[row.id] && expandedDataMap?.[row.id].length > 0\n\t\t\t\t\t\t\t\t\t? expandedDataMap[row.id].filter((e) => selectedEventApiVersionIds?.includes(e.id)).length\n\t\t\t\t\t\t\t\t\t: 0\n\t\t\t\t\t\t\t} Added`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "state" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getColor(state).fillColor ?? undefined" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getColor(state).labelColor ?? undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "{eventMesh.environmentName}" + }, + { + "name": "size", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"100px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{`${schemaVersionSelectedMap[row.id].length} Added`}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemasTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t{\"Selected\"}\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEventsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Source\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplicationsTable.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Destination\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordion.tsx", + "props": [ + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "label", + "type": "expression", + "value": "\"Declined\"" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isSub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Sub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isSub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "isPub ? \"filled\" : \"outlined\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Pub\"" + }, + { + "name": "size", + "type": "expression", + "value": "\"xs\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "compressed", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "!isPub" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "label", + "type": "expression", + "value": "ConnectorStateLabel[state as keyof typeof ConnectorStateLabel]" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"connector_status_badge\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/DefaultAttributeBadge.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_default\", message: \"Default\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "i18n._(getEventMeshState(eventMesh))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getEventMeshStateFillColor(eventMesh)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getEventMeshStateLabelColor(eventMesh)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expired\", message: \"Expired\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_expires_soon\", message: \"Expires Soon\" })" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.warnYellow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "language.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "fillColor", + "type": "variable", + "value": "fillColor" + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "dataQa", + "type": "string", + "value": "statusChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "hasSsoError ? t({ id: \"id_service_outofsync_short\", message: \"SSO out-of-sync\" }) : i18n._(getServiceState(service))" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getServiceStateFillColor(service, hasSsoError)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getServiceStateLabelColor(service, hasSsoError)" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_event_mesh\", message: \"Event Mesh\" })" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "active" + }, + { + "name": "label", + "type": "string", + "value": "Active" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "inactive" + }, + { + "name": "label", + "type": "string", + "value": "Inactive" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "expression", + "value": "environmentsStr.labels.defaultEnvironment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "clustersListStatus" + }, + { + "name": "label", + "type": "variable", + "value": "state" + }, + { + "name": "fillColor", + "type": "variable", + "value": "fillColor" + }, + { + "name": "labelColor", + "type": "variable", + "value": "labelColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "chipInfo.chipLabel" + }, + { + "name": "fillColor", + "type": "expression", + "value": "chipInfo.fillColor" + }, + { + "name": "labelColor", + "type": "expression", + "value": "chipInfo.labelColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "formatStatus(row[key])" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getLabelColor(row[key])" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getFillColor(row[key])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "formatStatus(runState)" + }, + { + "name": "labelColor", + "type": "expression", + "value": "getLabelColor(runState)" + }, + { + "name": "fillColor", + "type": "expression", + "value": "getFillColor(runState)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "default-env" + }, + { + "name": "label", + "type": "string", + "value": "Default" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "production-env" + }, + { + "name": "label", + "type": "string", + "value": "Production" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(\"default\")" + }, + { + "name": "size", + "type": "string", + "value": "xxs" + }, + { + "name": "label", + "type": "string", + "value": "TLS Disabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(\"warning\")" + }, + { + "name": "size", + "type": "string", + "value": "xxs" + }, + { + "name": "label", + "type": "string", + "value": "Not Latest" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(\"warning\")" + }, + { + "name": "label", + "type": "string", + "value": "Not Latest" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "EMA_STATUS_LABELS.success" + }, + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(POLLING_STATUS.success)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "EMA_STATUS_LABELS.error" + }, + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(POLLING_STATUS.error)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "EMA_STATUS_LABELS.inProgress" + }, + { + "name": "...", + "type": "spread", + "value": "generateStatusChipProps(POLLING_STATUS.inProgress)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Latest" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.infoBlue" + } + ] + } + ] + }, + { + "component": "SolaceMessageBox", + "count": 283, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "submitWarning.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/PasswordConnectionBox.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\tEvent Portal does not require your authentication passwords. After Event Portal generates the connection file, replace\n\t\t\t\t\tthe environment variables with your passwords in the installation command, so you can keep them secure.{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\tLearn more about authentication passwords\n\t\t\t\t\t\n\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "\"Before you connect a Kafka event broker, Kafka delimiter preferences must be set for the account in Designer.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.bulkMoveInfo[entityType]" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMessageBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{`${discrepancyCount} event flow mismatches detected that may result in unintended behavior in the runtime. Review them to make sure event flows are configured as intended.`}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tView Mismatches\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "getErrorMessage(errors)" + }, + { + "name": "dataQa", + "type": "string", + "value": "previewErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"aclProfileMessageBox\"" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t{messages.preview.aclProfileInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{messages.preview.learnMoreAboutACLProfiles}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseAclProfileInfoMessage()" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "eventAccessRequestError" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventAccessRequestErrorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityListMultiSelect.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.entities.labels.bulkMove.inProgress" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeleteEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Deleting this event deletes all event broker configuration data for topic addresses not used in any other event.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "addHelpText" + }, + { + "name": "onClose", + "type": "function", + "value": "() => onCloseAddHelp()" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinitionsDialogView.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "deleteHelpText" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/NodeAppearanceEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"After an object version is Retired, you cannot associate it to other object versions.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`This version will be replaced in the graph view with the latest non-retired version or this ${entityTypeToLabelLowercase(\n\t\t\t\t\t\t\t\tentityType\n\t\t\t\t\t\t\t)} will be removed from the graph view if all versions are in retired state.`" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "stateChangeErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "color", + "type": "expression", + "value": "theme.palette.ux.error.w100" + }, + { + "name": "details", + "type": "expression", + "value": "getDetails()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Changing object versions back to Draft state is not recommended. Consider creating a new Draft version of the object instead.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionListContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to close object details. ${numberOfEditing} ${numberOfEditing > 1 ? \"versions\" : \"version\"} open for editing`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUnsavedWarning(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionDetailsCommon.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects must be in Draft state to edit most attributes. Duplicate this version to create a new draft version that you can edit.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/RefreshEntityConfirmationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "\"Any unsaved changes will be lost if you reload the page.\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"unsavedWarning\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enumErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "enumWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/TopicAddressLevelTooltipContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/list/EntitySidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(item.name)" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleDismissErrorStatus" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"deletionErrorMsgBoxSidePanel\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedGatewayMessaggingServices" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedVersions.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorReferencedVersions" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EventManagementAgentUpgradeVersionIndicator.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t{eventManagementAgentResources.version.needUpgradePrompt}\n\t\t\t\t\t\n\t\t\t\t\t\t{eventManagementAgentResources.version.needUpgradeLinkText}\n\t\t\t\t\t\n\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Connection details updated. Download the file and run it with the Event Management Agent to update the connection.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Unable to create connections to Event Management Agents." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "validationError.eventBrokerError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The event broker must be in a modeled event mesh to receive runtime data or send configuration data." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tUnable to delete connection to{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tselectedMessagingServices.filter((service) => {\n\t\t\t\t\t\t\t\t\t\t\t\treturn service.id === messagingServiceToBeDeleted || service.serviceId === messagingServiceToBeDeleted;\n\t\t\t\t\t\t\t\t\t\t\t})[0]?.name\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t. It is associated with one or more objects in the environment.\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughInstallEMA.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`Event Management agent ${emsStatus}`" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/WalkthroughRunDiscoveryScanEMA.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Event Management Agent installation setup complete" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstallScanFromEPModeAgent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Ensure that your filename is wrapped in quotation marks or does not contain spaces or special characters to avoid OS-dependent filename restriction errors.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/runtimeAgentsUtils.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"The next steps require you be on the system hosting the connected agent.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\tYou can also connect datacenters to Event Portal to enable discovery, audit, and configuration for event brokers created in those\n\t\t\t\t\t\t\t\t\t\tdatacenters.\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tView Datacenters\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setViewDatacentersInfoBanner(false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "string", + "value": "One or more Event Management Agent connection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that the agent connects to." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/DeleteRuntimeAgentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\tConnection file is updated. Download the file and update the Event Management Agent with it to update the list of event brokers that\n\t\t\t\t\t\t\t\tthe agent connects to.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t handleDownloadConnectionFile(item.id, item.name)}>\n\t\t\t\t\t\t\t\t\t\tDownload Connection File\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/AgentSidePanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{ConnectionStatusLabel.connectionIncomplete}\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t\t\tInstall the Event Management Agent and run the connection file to connect to Event Portal.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDownload and install the Event Management Agent.\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t

\n\t\t\t\t\t\t\t" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DeleteDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "string", + "value": "Event management agent not connected to Event Portal. View logs for details." + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{dataCollectionErrorMessage}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\tYour event broker is managed by PubSub+ Cloud. To take advantage of the latest updates, remove your model event broker and\n\t\t\t\t\t\t\t\t\t\t\t\tre-add it to the modelled event mesh\n\t\t\t\t\t\t\t\t\t\t\t\n\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t handleDeleteMessagingService(selectedMessagingService)}>\n\t\t\t\t\t\t\t\t\t\t\t\t\tDelete From Event Portal\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
{renderDataCollectionError}
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t\tUnable to delete connection to {selectedMessagingService.name}. It is associated\n\t\t\t\t\t\t\t\t\t\t\twith one or more objects in the environment.\n\t\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ManageAssociations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/Banners.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\tModeled event meshes represent operational event meshes in specific runtime environments. They help you define and visualize event flows\n\t\t\t\t\t\tbetween publishing and subscribing applications.{\" \"}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tLearn more about modeled event meshes\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "dataQa", + "type": "string", + "value": "memInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "warningInfoBoxMessage" + }, + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{showServiceWarning && (\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tChoose Event Broker\n\t\t\t\t\t\t\t\t\t{renderMessagingServiceSelect()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{showAuditResultTypeWarning ? \"Choose Audit Result Type\" : \"Selected Objects\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{renderSelectionStats()}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"Objects that are already in Event Portal do not need to be imported again.\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"matchFoundMessage\"" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseMatchFoundMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t
{errorMessage}
\n\t\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignAuditEmptyStateContent.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "variable", + "value": "AUDIT_NOT_FINDING_DESIGNER_OBJ_INFO" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "Resolve partial matches caused by runtime configuration changes by updating the event from the audit results." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "No differences found in the compared version configurations." + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DiscoveryScanProgress.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "variantType" + }, + { + "name": "message", + "type": "variable", + "value": "_message" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "dismissible" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleMessageBoxOnClose(variantType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateExistingVersionsDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NONDRAFT_WARNING" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftWarning" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleSchemasDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "`Selected ${\n\t\t\t\t\tAUDIT_ENTITY_TYPE_LABELS_PLURALS_LOWERCASE[auditEntityType]\n\t\t\t\t} are partially matching with ${count} ${entityTypeToLabelLowercasePlural(\n\t\t\t\t\tentityType\n\t\t\t\t)}. A new version will be created for each ${entityTypeToLabelLowercase(entityType)}.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewMultipleEventsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "EVENT_NAME_DUPLICATION_MESSAGE" + }, + { + "name": "dataQa", + "type": "string", + "value": "duplicateNamesError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tUnable to import \n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{invalidAudits.length} of {audits.length} selected {auditEntityType}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t because more recent audit results exist. Deselect the outdated {auditEntityType} to import the others.\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeselect\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationErrorWithDeselect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "`Unable to import selected ${auditEntityType} because more recent audit results exist. Refresh the audit table and try again.`" + }, + { + "name": "dataQa", + "type": "string", + "value": "auditValidationError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/auditImportCustomHooks.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "submitError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportCheckResult.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tIf you plan to create objects on the event broker, consider to tag them as \n\t\t\t\t\t\t\tTo Be Created\n\t\t\t\t\t\t\t using the Quick Actions.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportProgress.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
{`${status} ${subStatus ?? \"\"}`}
\n\t\t\t\t\t\t\t{actionText && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t{actionIcon}\n\t\t\t\t\t\t\t\t\t\t{actionText}\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "variable", + "value": "variant" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "false" + }, + { + "name": "onClose", + "type": "variable", + "value": "onAuditImportDone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.appDomainFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tsetAppDomainFilterError(false);\n\t\t\t\t\t\t\t\t\tsetSelectedAppDomainId(\"all\");\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.kpiMetricsDashboard.tableFilterError" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\tsetTableFiltersError(false);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedSharedType(null);\n\t\t\t\t\t\t\t\t\t\t\tsetSelectedBrokerType(null);\n\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "expression", + "value": "!!onClose" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/shared.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "action?.label && !!action?.onClick ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{action.label}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "variable", + "value": "dense" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{error}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationBanner.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`runtimeConfigurationBanner-${applicationVersion.id}`" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{application.configuration.warningOutOfSync}\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "getEmptyMessageDetails(true)" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "closeInfoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "EXPORT_MESSAGE" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "message" + }, + { + "name": "variant", + "type": "variable", + "value": "messageType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(enumerationVersion.displayName || enumerationVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionWarningMsg" + }, + { + "name": "message", + "type": "variable", + "value": "versionWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + }, + { + "name": "message", + "type": "variable", + "value": "unsavedChangesWarningMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.eventApiProduct.labels.downloadInfo" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "message", + "type": "variable", + "value": "conflictMessage" + }, + { + "name": "details", + "type": "expression", + "value": "getErrorDetails()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventApiVersion.displayName || eventApiVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(schemaVersion.displayName || schemaVersion.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t
Imported schema Content and Referenced Schemas fields cannot be modified. Duplicate this version to modify these fields.
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t setTriggerVersionDuplication(true)}>\n\t\t\t\t\t\t\t\t\t\tDuplicate Version\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowImportedSchemaInfoBanner(false)" + }, + { + "name": "dataQa", + "type": "string", + "value": "editImportedSchemaWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "schemaVersionReferencesError.message" + }, + { + "name": "dataQa", + "type": "string", + "value": "manageReferencedSchemasErrorText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_TYPE_MISMATCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SHARED_VALUE_MISMATCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/schemaDrawer/ReferencedSchemasList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "SCHEMA_VERSION_NOT_FOUND" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "noOptionSelectedError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ManageSubscriptions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerListForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "backendValidationErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "kafkaWarningMessage" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\tCannot delete the last topic domain when{\" \"}\n\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain is selected.\n\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "applicationDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "topicDomainSuccessMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"One or more topic domains were not created successfully.\"" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(failedTopicDomains, false)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "duplicateTopicDomainMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "details", + "type": "expression", + "value": "renderTopicDomain(duplicateTopicDomainEntries, true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "message", + "type": "string", + "value": "The link opens a browser tab for any site you specify. You should ensure that the destination conforms to your organization's security polices." + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "\"All versions of an event have the same broker type. It cannot be changed after the event is created\"" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseBrokerTypeHelp" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "variable", + "value": "brokerTypeWarning" + }, + { + "name": "dense", + "type": "variable", + "value": "userHasEditorAccess" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"brokerTypeWarning\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "errors.event.shared.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tAll versions of a Kafka event use the same topic address and use versions from the same schema object.\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{\"Learn more about creating Kafka events\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => handleCloseInfoMessage()" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaEventInfoBanner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(eventVersionRefetched.displayName || eventVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + }, + { + "name": "message", + "type": "expression", + "value": "`This ${pageID === PageID.eventSearchSchemas ? \"event\" : \"schema\"} is shared. Only shared schemas can be selected.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "messages.credentials.removeCredentialsWarning" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{`Some consumer subscriptions attract ${nonSharedEventIds.length} non-shared event${nonSharedEventIds.length > 1 ? \"s\" : \"\"}. `}\n\t\t\t\t\t\t\t\t
    \n\t\t\t\t\t\t\t\t\t{renderWarningDetails()}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonSharedEventWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_TOPIC_ADDRESS_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_PUBLISHER_MSG" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "NO_MATCHED_SUBSCRIPTION" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForPubEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "errorMessageForPubEvents || subEventVersionsErrorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "variable", + "value": "ADDITIONAL_CONSUMED_EVENTS_INFO" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsInfo(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`This application version consumes over ${MAX_ADDITIONAL_EVENTS_TO_SHOW} events. Refine the consumer subscriptions if this number is unintended.`" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setDismissAdditionalConsumedEventsWarning(true)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageForAdditionalEvents" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowUndeployedInformation(false)" + }, + { + "name": "message", + "type": "expression", + "value": "messages.add.addApplicationDescription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "eventsMap[item.eventId]?.name ? `Event is not shared across application domains.` : \"You do not have access to this event.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "getDeletionErrorMessageCausedByReference(applicationVersionRefetched.displayName || applicationVersionRefetched.version, true)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setVersionIdWithDeletionError(null)" + }, + { + "name": "dataQa", + "type": "string", + "value": "deletionErrorMsgVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "messages.credentials.configurationWarning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "onCloseError" + }, + { + "name": "dataQa", + "type": "string", + "value": "credentialsError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`Returning to an earlier step will reset your progress. `" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`The maximum number of ${type} we can create is ${limit}. Please remove some assets to enable moving to the next step.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t{messages.info}\n\t\t\t\t\t\t\t{getWizardButton(\"text\", goToWizard, false)}\n\t\t\t\t\t\t" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowMessageBox(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/ProjectDefinitionForm.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "messages.projectDefinition.guide" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/TransformationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "sourceTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "targetTransformationGraphError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "key", + "type": "expression", + "value": "`${direction}GraphError`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.helperText.payloadMessage" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setPayloadInfoDismissed(!payloadInfoDismissed)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.reImportWarning(direction.toLowerCase())" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "payloadMappingsValidationErrors.apiError" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxConstantCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "max-header-count-info-msg" + }, + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.maxHeaderCountReached" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorValidationErrorDetails.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "{renderErrorMessages(step, validationErrors)}" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "down_state_error_message" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error\n\t\t\t\t\t\t\t\t\t\t\t\t\t? en.connectors.labels.errorStateMessage\n\t\t\t\t\t\t\t\t\t\t\t\t\t: en.connectors.labels.downStateMessage}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{selectedRowData?.state === ConnectorState.error && (\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{selectedRowData.microIntegrationDeploymentDetail?.details?.details ?? \"Unknown error\"}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.additionalSupportMessage}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(selectedRowData?.state ?? \"\")" + }, + { + "name": "variant", + "type": "expression", + "value": "\"info\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_state_message" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SummaryErrorMessageBox.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tdetailsStepValidationErrors,\n\t\t\t\t\t\t\t\tisEqual(connectorTypeDetails.direction, ConnectorDirection.Source),\n\t\t\t\t\t\t\t\ttrue,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "buildSummaryErrorMessage(\n\t\t\t\t\t\t\t\tvendorValidationErrors,\n\t\t\t\t\t\t\t\tsolaceValidationErrors,\n\t\t\t\t\t\t\t\tinitialStepValidationErrors,\n\t\t\t\t\t\t\t\tvendorSourceDirection,\n\t\t\t\t\t\t\t\tfalse,\n\t\t\t\t\t\t\t\tpayloadMappingsValidationErrors,\n\t\t\t\t\t\t\t\tapiErrorResponseError,\n\t\t\t\t\t\t\t\tsourceTransformationGraphError,\n\t\t\t\t\t\t\t\ttargetTransformationGraphError,\n\t\t\t\t\t\t\t\tshowGaMiTransformation\n\t\t\t\t\t\t\t) ?? \"\"" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "downErrorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setShowDownError(false)" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{errorMessageDetails ?? \"\"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.connectors.buttons.contactSupport}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.buttons.viewErrorLogs}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "error_message_box" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.connectors.labels.stateInfoBanner(connectorState ?? \"\")" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "deploying_message_box" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_edit_msg_spool_info\", message: \"This change will not impact queue size.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_customize_msg_spool_info\", message: \"You cannot decrease the message spool size after creating the service, but you can increase it without service interruption.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "variable", + "value": "type" + }, + { + "name": "message", + "type": "variable", + "value": "title" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "eventMesh.errorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\tSorry, a problem occurred trying to create your service.{\" \"}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tOpen Support Ticket\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Status.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\tid: \"id_sso_out_of_sync\",\n\t\t\t\t\t\t\t\t\tmessage: \"The broker's SSO configuration is out-of-sync. Contact an Administrator or troubleshoot Broker SSO Settings in Account Details.\"\n\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageDeclinedSP.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "organization?.orgAutomatedUpgradeEnabled && showUpgrades ? (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{message}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tPlan Upgrade\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t) : (\n\t\t\t\t\t\tmessage\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/MessageUpgradeFailed.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{t({\n\t\t\t\t\t\t\t\tid: \"id_auto_upgrade_failed\",\n\t\t\t\t\t\t\t\tmessage: `Upgrade steps have failed. Contact Solace for support.`\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t setViewLogs(true)}>\n\t\t\t\t\t\t\t\tView Upgrade Logs\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/AutoUpgradeLogsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade steps have failed. Contact Solace for support." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/SyslogConfigDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_facilities\", message: \"At least one facility must be selected.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ClientAuthenticationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/MoveHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "warningMessage.join(\" \")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/LdapManagementAccessCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "pickMessage(isProfileConfigured, isAccessConfigured)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_deployment\", message: \"There was an issue with the deployment of the Distributed Tracing Collector. For support, contact Solace.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "disable-distributed-tracing-error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_destination_out_of_date\", message: \"Tracing destination is out of date on this service.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_error_retrieving_details\", message: \"An error occurred while retrieving Distributed Tracing details, please try again.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "enableDistributedTracingErrorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "patchBrandingText(t({ id: \"id_dt_error_disabling\", message: \"An error occurred while disabling Distributed Tracing. For support, contact Solace.\" }))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_not_supported\", message: \"Distributed Tracing requires broker version 10.2 or later, upgrade to enable this feature.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-broker-version-banner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_configuration_progress\", message: \"Configuration in progress...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "configuration-progress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_running\", message: \"Collector is running.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_collector_down\", message: \"Collector is down.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_collector_status\", message: \"Retrieving collector status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-collector-status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_connection_service_active\", message: \"Connection to the service is active.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "brokerConnectionErrorMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_retrieving_service_status\", message: \"Retrieving service status...\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "pending-service-status" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_syslog_error\", message: \"Failed to retrieve the configuration for Syslog Forwarding.\" })" + }, + { + "name": "dataQa", + "type": "string", + "value": "syslog-error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_auth_disabled\", message: \"You have authentication disabled. Your event broker service is accessible by everyone.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/InfoNodePort.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\tid: \"id_nodeport_info\",\n\t\t\t\t\tmessage: \"You cannot modify the port numbers because NodePort is being used for this event broker service. Port numbers will be auto-generated after service creation.\"\n\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.errorMessage)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointPorts.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "i18n._(meta.warningMessage)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_warn_not_latest_version\", message: \"Consider using the latest version. (Recommended)\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_error_max_spool_size\", message: \"Select a different region. You have reached your limits for this service.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "isSAP\n\t\t\t\t\t\t\t\t\t? t({\n\t\t\t\t\t\t\t\t\t\t\tid: \"id_error_limits_sap\",\n\t\t\t\t\t\t\t\t\t\t\tmessage: \"You do not have the appropriate entitlements to be able to create this service. Please ensure your entitlements are correctly set in the BTP Cockpit.\"\n\t\t\t\t\t\t\t\t\t })\n\t\t\t\t\t\t\t\t\t: t({ id: \"id_error_limits\", message: \"Select another service type. You have either reached your limits, or the region does not support this service type.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "variable", + "value": "showCloseButton" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setError(null)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/BrokerSSOConfig.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{createSsoBrokerSettingWarning(ssoBrokerSettingsRequirementsList)} \n\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.brokerSsoSetup}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t{en.brokerSSOConfig.message.viewSettings}\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/AupWarning.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{text + \" \"}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{link}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tI Agree\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/components/ViewMessageSpoolDetails.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.viewMessageSpoolDetails.dialog.info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenTopInfo}{\" \"}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t{environmentsStr.messages.firstOpenBottomInfoLearnMore}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFirstUseCardTop" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseTopMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "deleteError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t{en.environments.labels.deleteDialogMessage}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tLearn more in the documentation\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.errors.duplicateName" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.error.typeRequired" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "expression", + "value": "en.environments.createDialogLabels.info.typeCannotBeChanged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "messages.warning" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTemplateWarning" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotComplete" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.accountSettings.configNotYetApplied" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.jitInfoMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementFooter.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{userGroupManagement.saveChangesText}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{userGroupManagement.testAccess}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "userGroupManagement.noAdminMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "en.overview.banner.WE_HIT_AN_ISSUE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.forgotPassword.errorSendingResetEmail" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationsUnsubscribeSettings/NotificationsUnsubscribeSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.notifications.fetchingNotificationsErrorNotLoggedIn" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.movingDCWarning(dcName)}\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t{environments.moveDialogLabels.warningMessages.learnMore}\n\t\t\t\t\n\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t{en.privateRegions.emaInfoBanner.title}{\" \"}\n\t\t\t\t\t\n\t\t\t\t\t\t{en.privateRegions.emaInfoBanner.linkText}\n\t\t\t\t\t\n\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.anyApplicationsOrScriptsUsingThisToken" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/RegenerateTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "en.tokens.text.thisCannotBeUndone" + }, + { + "name": "variant", + "type": "expression", + "value": "\"warn\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/dialogs/DeleteTokenDialog.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "expression", + "value": "\"error\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{en.tokens.text.description}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.tokens.text.learnMore}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "failed-to-synch" + }, + { + "name": "key", + "type": "expression", + "value": "item.serviceId" + }, + { + "name": "message", + "type": "expression", + "value": "tracingSynchDialog.error(item.serviceName)" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{tracingProfile.infoMessage.link.text}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "infoBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{outOfSynchMessageBox.outOfDate({\n\t\t\t\t\t\t\t\t\toutOfSynchServices: outOfSynchServices.length,\n\t\t\t\t\t\t\t\t\tassociatedServices: associateServicesCount\n\t\t\t\t\t\t\t\t})}\n\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setSynchTracingDialog(true)}>\n\t\t\t\t\t\t\t\t\t\t{outOfSynchMessageBox.viewServices}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingLimits.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingLimits" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.delete" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorDeletingTracingDestination" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "tracingProfile.errorMessage.retrieve" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorRetrievingTracingDestinations" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}Success`" + }, + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "message", + "type": "expression", + "value": "successMessage || \"Success\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}Error`" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t{errorMessage || \"Validation failed. Please try again.\"}\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t handleDetails(errorKey)}>\n\t\t\t\t\t\t\t\t\t\tMore Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "string", + "value": "Note: It can take several minutes for resources to be deployed to Datadog. Please wait before validating." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${service.name}_agentStatusWarning`" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`${warnings}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/AgentStatusDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${service.name}_agentStatusError`" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "`${errors.filter(e => e && String(e).trim() !== '')}.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "warnUpdateServicesPagination" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "expression", + "value": "`This section updates services shown in current page ${currentPage}. To apply monitoring configurations to all services, make sure you run Update Services on all service pages.`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "string", + "value": "Note: solace-datadog-agent version cannot be overridden for k8s services" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\tNote: If this step fails because rbac is not enabled, please contact Datadog Support to enable\n\t\t\t\t\t\t\t\trbac for Datadog Sub-Org.\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: You may need to switch to the customer Sub-Org.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: It might take up to a minute for the log to be visible in Datadog.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tNote: Don’t enable PE profile for Insights onboarding. For RMMS consider\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tnotifying to their handle.\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: It can take several minutes for resources to be deployed to Datadog. Please wait before\n\t\t\t\t\t\t\t\t\t\tvalidating.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\tNote: Insights policy should not be enabled for RMMS accounts.\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PostUpgradeCheck.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Post-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{!lastValidation &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/checks/PreUpgradeCheck.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t{hasFailures && \"Pre-upgrade validations have failed. \"}\n\t\t\t\t\t\t\t\t\t\t{missingAttributes &&\n\t\t\t\t\t\t\t\t\t\t\t\"Unhandled server exception, missing attributes: contact the development team for review.\"}\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade has been paused. Verify upgrade status before proceeding. In progress operations will complete." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "string", + "value": "Upgrade has been cancelled. In progress operations will complete." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "!autoUpgrades && !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated and customer upgrades are disabled. No scheduled or immediate upgrades can take place.\"\n\t\t\t\t\t\t\t\t\t: !autoUpgrades\n\t\t\t\t\t\t\t\t\t? \"Automated upgrades are disabled. Customers can still trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: !customerUpgrades\n\t\t\t\t\t\t\t\t\t? \"Customer upgrades are disabled. Customers will not be able to trigger upgrades from the Console UI.\"\n\t\t\t\t\t\t\t\t\t: \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "ema.latestDeployment?.error?.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setErrorMessage(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorDialog" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "expression", + "value": "error ? error : IN_USE_MESSAGE" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "variable", + "value": "error" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "releaseNotesError" + }, + { + "name": "message", + "type": "string", + "value": "Release Notes should be provided" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.messages.editDeleteMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{` ${createBizOrganization.orgDetails.errorFound}`} \n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.purchaseOrderRunbook}\n\t\t\t\t\t\t\t\t{\" \"}\n\t\t\t\t\t\t\t\t{createBizOrganization.orgDetails.contactPeTeam} \n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t{/*
\n\t\t\t\t\t\t\t\tContact PE\n\t\t\t\t\t\t\t
*/}\n\t\t\t\t\t\t
" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsErrorBanner.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "successMsgBox" + }, + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.orgDetails.organizationSaveSuccess" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.errorFound}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.messages.purchaseOrder}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPeTeam}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.contactPE}\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "color", + "type": "expression", + "value": "theme.palette.error.light" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{createBizOrganization.products.products}\n\t\t\t\t\t\t\t\t{createBizOrganization.messages.successMessage}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "dataQa", + "type": "string", + "value": "prodValidatedMessageQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.requests.successBannerMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.messages.editDeleteMessage" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.orgDetails.orgIdWarning" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "createBizOrganization.accountAdmins.successBannerMessage" + }, + { + "name": "variant", + "type": "string", + "value": "success" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "variant", + "type": "string", + "value": "error" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"For the latest Connector Details, please click the Connector Deployment Info Refresh icon.\"" + }, + { + "name": "variant", + "type": "string", + "value": "warn" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`deleting-${request.deploymentId}`" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tDeleting the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`error-${request.deploymentId}`" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tFailed to delete the Connector with Deployment ID: {request.deploymentId} and Service ID:{\" \"}\n\t\t\t\t\t\t\t\t\t\t{request.serviceId}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t setErrorDetails(`${request.deploymentId}-disable`)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "expression", + "value": "deleteDialog.contentText" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "`Note: This page consists of private regions specific to ${orgId} organization.`" + }, + { + "name": "variant", + "type": "string", + "value": "info" + }, + { + "name": "dataQa", + "type": "string", + "value": "note" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneError" + }, + { + "name": "message", + "type": "expression", + "value": "(error as Error)?.data?.message ?? `Failed to clone ${datacenterId} from ${selectedDatacenterId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "sameDCError" + }, + { + "name": "message", + "type": "expression", + "value": "\"Unable to clone a datacenter from itself\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/AddCompatibilityDialog.tsx", + "props": [ + { + "name": "message", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t{modifyError.message}\n\t\t\t\t\t\t\t\t\t{modifyError.id && {\"Error ID: \" + modifyError.id}}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorModifyingProfile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "warn" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`deleting-${request.infrastructureId}`" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "false" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tDeleting the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`error-${request.infrastructureId}`" + }, + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "jsx", + "value": "
\n\t\t\t\t\t\t\t\t\tFailed to delete the collector associated with service {request.serviceName}\n\t\t\t\t\t\t\t\t\t setErrorDetails(request.infrastructureId)}\n\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\tShow Details\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t
" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "success" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "successMessage" + }, + { + "name": "dataQa", + "type": "string", + "value": "successMsgBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "error" + }, + { + "name": "showIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "dataQa", + "type": "string", + "value": "errorMsgBox" + } + ] + } + ] + }, + { + "component": "SolaceTextField", + "count": 197, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/AddExistingMessagingServiceDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[name]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_NAME" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.name" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\" || mode === \"edit\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][registryUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? renderKafkaAuthHelperText(\"registryUrl\") : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[registryUrl]" + }, + { + "name": "label", + "type": "string", + "value": "Registry URL" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUsername]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUsername" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceManagementTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][management][sempUrl]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.sempUrl" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingTab.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"e.g. ########.messaging.solace.cloud or 123.89.40.72\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messaging][host]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.host" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tsetValue(name, value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly && isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? helperText : \"\"" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "isRequired" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly ? error?.message ?? \"Use a comma (,) to separate the messaging services in the Kafka cluster.\" : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][bootstrapServers]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.bootstrapServers" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "expression", + "value": "loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.port" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "selectedMode === \"view\"" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[solace][messaging][protocol][${index}][port]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "name", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`messagingServiceDetails[${attribute}]`" + }, + { + "name": "value", + "type": "variable", + "value": "attributeValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[name]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[solace][messageVpn]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.messageVPN" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"authenticationB\"" + }, + { + "name": "value", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "disabled", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg || !!attributeErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameErrorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleNameUpdate(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-input`" + }, + { + "name": "dataTags", + "type": "expression", + "value": "`hasFocus=${customAttribute.hasFocus}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.semver, value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "mode === \"edit\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionBaseForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonUpdateVersionProperty?.(VERSION_PROPERTY.display, value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DuplicateVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\t\t\t\t\t\t\t\t\t\tconst validVersion = semverValid(newValue) ?? newValue;\n\n\t\t\t\t\t\t\t\t\t\tonChange(validVersion);\n\t\t\t\t\t\t\t\t\t\tcheckVersionAndSetWarning(validVersion);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"DuplicateEntityVersion[version]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Name" + }, + { + "name": "value", + "type": "variable", + "value": "variableName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => handleNameValidate()" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "nameErrorMsg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityNameTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityNameTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "entityName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxLength + 1" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationDomainTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplicationDomain" + }, + { + "name": "label", + "type": "string", + "value": "New Application Domain Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || SHARE_WARNING" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionTextField.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "textFieldName ?? \"entityVersionTextField\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg ? validationErrorMsg : versionTextFieldHelperText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCreateApplicationTextField.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "dataQa", + "type": "string", + "value": "createInlineApplication" + }, + { + "name": "label", + "type": "string", + "value": "New Application Name" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg || !!backendErrorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrorMsg || backendErrorMsg || \"\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleOnBlur" + }, + { + "name": "disabled", + "type": "expression", + "value": "!domainId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleNameChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleNameOnBlur" + }, + { + "name": "id", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[name]" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getNameErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getNameErrorMessage" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "name", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "dataQa", + "type": "string", + "value": "runtimeAgent[id]" + }, + { + "name": "value", + "type": "variable", + "value": "agentId" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "value", + "type": "expression", + "value": "scan.messagingServiceName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewSingleEventDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "topicAddress" + }, + { + "name": "label", + "type": "string", + "value": "Topic Address" + }, + { + "name": "value", + "type": "expression", + "value": "selectedAudits[0].identifier" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplateEdit.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`detailsName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ClientProfileName.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "clientProfileName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : messages[ConfigurationTypeId.solaceClientProfileName].contentFieldHelperText" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetClientProfileName(e.value);\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`clientProfileName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "email-input" + }, + { + "name": "name", + "type": "string", + "value": "email-input" + }, + { + "name": "type", + "type": "string", + "value": "email" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventPortalResources.labels.startJourney.inviteUsers.emailAddress" + }, + { + "name": "helperText", + "type": "expression", + "value": "!isValid ? (\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.eventPortalResources.labels.startJourney.inviteUsers.helperTextError\n\t\t\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.helperText}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t{en.eventPortalResources.labels.startJourney.inviteUsers.userManagementLink}\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!isValid" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEmailInput" + }, + { + "name": "value", + "type": "variable", + "value": "email" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "variable", + "value": "validateEmail" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\tonChange(value?.trim());\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-postRequestTarget`" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message || \"\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderName" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : en.application.configuration.restDeliveryPoint.restDeliveryPointNameDescription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\thandleUpdateRestDeliveryPointName(value ? value.trim() : \"\");\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`restDeliveryPointName-editor`" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!getValues(`${formName}.configurationTypeId`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormCustomizedClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "label", + "type": "expression", + "value": "messagesConfiguration.solaceClientProfileName.clientProfileName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (e.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "33" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/export/DomainExportPreviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsg || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\thandleFilenameUpdate(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\thandleFilenameUpdate(value.trim());\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filenameInput`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"enumeration[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "maxLength", + "type": "number", + "value": "251" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getVersionErrorMessage(value, error) : \"\"" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value.trim();\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (semverValid(newValue) !== null) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tcheckIfVersionStillLatestAfterUpdate(newValue, versionId);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(semverValid(newValue) ?? newValue);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[version]`" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "isDuplicateVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[displayName]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/NodeNameEditor.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "nodeNameTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomain-graph-object-name-field" + }, + { + "name": "value", + "type": "variable", + "value": "nodeName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "handleKeyDown" + }, + { + "name": "onFocus", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetTimeout(() => e.target.select(), 100); // Delay to ensure select() works\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "`${nameEditorWidth}px`" + }, + { + "name": "maxLength", + "type": "expression", + "value": "maxNameLength + 1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${level.name}-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error && \"Invalid Format\"" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxTTLTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`maxMsgSpoolUsageTextField-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value.trim())" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`planNameTextField-${index}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.name`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isGlobal" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"applicationDomain[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesDisplayName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicAddressResources.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicAddressResourcesLink" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "type", + "type": "string", + "value": "url" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SelectSchemaVersion.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[version]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Name\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2049" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "getVersionErrorMessage(value, error)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(semverValid(e.value.trim()) ?? e.value.trim())" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventVersion[version]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"application[name]\"" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationSearchInput" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tinternalSearchText ? (\n\t\t\t\t\t\t\t\t setInternalSearchText(\"\")}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.common.labels.name" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "value === \"\"" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerName`" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputA\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputA" + }, + { + "name": "value", + "type": "expression", + "value": "inputA ?? \"\"" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputAValidationError" + }, + { + "name": "helperText", + "type": "variable", + "value": "inputAValidationError" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputA" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationInputB\"" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials[configuration.typeId].inputB" + }, + { + "name": "value", + "type": "expression", + "value": "inputB || \"\"" + }, + { + "name": "type", + "type": "variable", + "value": "inputBType" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || (configuration.inputB.type === \"password\" && !isEditing)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!inputBValidationError" + }, + { + "name": "helperText", + "type": "expression", + "value": "inputBValidationError || messages.credentials[configuration.typeId].inputBSubtext" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeInputB" + }, + { + "name": "readOnly", + "type": "expression", + "value": "configuration.inputB.type !== \"password\" && !isEditing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "name ?? \"emptyName\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Name\"" + }, + { + "name": "value", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newName = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newName = name.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newName));\n\t\t\t\t}\n\n\t\t\t\tsetName(newName);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"name\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "256" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "placeholder", + "type": "variable", + "value": "placeholder" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "topic ?? \"emptyTopic\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "topic" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tconst newTopic = e.value ?? \"\";\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tconst newTopic = topic.trim();\n\n\t\t\t\tif (!shouldValidate) {\n\t\t\t\t\tsetErrorMsg(validator(newTopic));\n\t\t\t\t}\n\n\t\t\t\tsetTopic(newTopic);\n\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorMsg" + }, + { + "name": "dataQa", + "type": "variable", + "value": "label" + }, + { + "name": "maxLength", + "type": "variable", + "value": "maxLength" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.host" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectionDetailsHostTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.host)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.host)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\thost: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: host }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\thost: host\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.host" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.host\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.host" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authentication.messageVpn" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: msgVpn }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthentication: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.authentication,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: msgVpn\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tif (isEmpty(solaceConnectionValues.authentication.messageVpn)) {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.msgVpn\n\t\t\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\t\t\tmessageVpn: \"\"\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.messageVpn" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.messageVpn ? solaceValidationErrors.messageVpn : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "solaceBindingDestination" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destination }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestination: destination\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destination" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceBindingDestinationTextField" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tvalidateDestination();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.destination" + }, + { + "name": "helperText", + "type": "expression", + "value": "solaceValidationErrors.destination && validationEnabled\n\t\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.destination\n\t\t\t\t\t\t\t\t\t\t\t: // flipped because solaceDirection is the opposite of the actual connector direction\n\t\t\t\t\t\t\t\t\t\t\tisEqual(solaceDirection, ConnectorDirection.Source)\n\t\t\t\t\t\t\t\t\t\t\t? en.connectors.helperText.destinationTarget\n\t\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.destinationSource" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "value", + "type": "expression", + "value": "String(constantField.constantValue)" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.headerName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, headerName: e.value });\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customHeaderName" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "headerName" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!headerNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "headerNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetHeaderName(e.value);\n\t\t\t\t\t\tsetHeaderNameError(\"\");\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "constantName" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.customConstantValue" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-name-textfield" + }, + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "value", + "type": "variable", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeaderExample" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/EducationBlurb.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "headerExpressionExample" + }, + { + "name": "value", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.headerExpressionExample" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "type", + "type": "expression", + "value": "sensitiveField && !showSensitiveField ? \"password\" : \"text\"" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "endAdornment", + "type": "variable", + "value": "endAdornment" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textField`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "props.value ? \"\" : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "values.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => setValues({ ...values, name })" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\tif (isEmpty(values.name)) {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({\n\t\t\t\t\t\t\t\t\t...initialStepValidationErrors,\n\t\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tsetInitialStepValidationErrors({ ...initialStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!initialStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled ? initialStepValidationErrors.name : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "tokenUri" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.tokenUri) : oauthValues.tokenUri" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.tokenUri" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenUriTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: tokenUri }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\ttokenUri: tokenUri\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.tokenUri)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.tokenUri)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\ttokenUri: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.tokenUri" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.tokenUri ? solaceValidationErrors.tokenUri : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientId) : oauthValues.clientId" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientId" + }, + { + "name": "dataQa", + "type": "string", + "value": "tclientIdTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientId }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientId: clientId\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientId)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.clientId)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientId: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientId" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientId ? solaceValidationErrors.clientId : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientSecret" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientSecret) : oauthValues.clientSecret" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientSecret" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientSecretTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientSecret }) => {\n\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\tclientSecret: clientSecret\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(oauthValues.clientSecret)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientSecret\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientSecret: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!solaceValidationErrors.clientSecret" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly && validationEnabled && solaceValidationErrors.clientSecret\n\t\t\t\t\t\t? solaceValidationErrors.clientSecret\n\t\t\t\t\t\t: \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "showClientSecret ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowClientSecret(!showClientSecret)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showClientSecret ? : }\n\t\t\t\t\t\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "scopes" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.scopes) : oauthValues.scopes" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.scopes" + }, + { + "name": "dataQa", + "type": "string", + "value": "scopesTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: scopes }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tscopes: scopes\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(oauthValues.clientName) : oauthValues.clientName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientName }) => {\n\t\t\t\t\t\t\t\tsetOauthValues({\n\t\t\t\t\t\t\t\t\t...oauthValues,\n\t\t\t\t\t\t\t\t\tclientName: clientName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameBasicAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientUsername)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tbasicAuthUsername: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.basicAuthUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.basicAuthUsername\n\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/BasicAuthenticationDetails.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!readOnly" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientPasswordTextField" + }, + { + "name": "value", + "type": "expression", + "value": "basicAuthValues.clientPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientPassword }) => {\n\t\t\t\t\tsetBasicAuthValues({\n\t\t\t\t\t\t...basicAuthValues,\n\t\t\t\t\t\tclientPassword: clientPassword\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t setShowPassword(!showPassword)}\n\t\t\t\t\t>\n\t\t\t\t\t\t{showPassword ? : }\n\t\t\t\t\t\n\t\t\t\t]" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\tif (isEmpty(basicAuthValues.clientPassword)) {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\ten.connectors.labels.clientPassword\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t});\n\t\t\t\t\t} else {\n\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\tclientPassword: \"\"\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.clientPassword" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t? solaceValidationErrors.clientPassword && validationEnabled\n\t\t\t\t\t\t\t? solaceValidationErrors.clientPassword\n\t\t\t\t\t\t\t: en.connectors.helperText.clientPassword\n\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStoreReadOnlyBlank" + }, + { + "name": "value", + "type": "expression", + "value": "\"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslKeyStorePassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslKeyStorePassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslKeyStorePassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStorePassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStorePasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStorePassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStorePassword: sslKeyStorePassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslKeyStorePassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslKeyStorePassword(!showSslKeyStorePassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslKeyStorePassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyAliasName" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyAliasName)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyAliasName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyAliasName" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyAliasNameTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyAliasName }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyAliasName: sslPrivateKeyAliasName\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "sslPrivateKeyPassword" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly\n\t\t\t\t\t\t\t\t\t? getConnectorSummaryValue(clientCertValues.sslPrivateKeyPassword)\n\t\t\t\t\t\t\t\t\t: clientCertValues.sslPrivateKeyPassword" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslPrivateKeyPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslPrivateKeyPasswordTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslPrivateKeyPassword }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslPrivateKeyPassword: sslPrivateKeyPassword\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "type", + "type": "expression", + "value": "showSslPrivateKeyPassword ? \"text\" : \"password\"" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t setShowSslPrivateKeyPassword(!showSslPrivateKeyPassword)}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{showSslPrivateKeyPassword ? : }\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "readOnly ? getConnectorSummaryValue(clientCertValues.clientUsername) : clientCertValues.clientUsername" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "dataQa", + "type": "string", + "value": "clientUsernameClientCertAuthTextField" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: clientUsername }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tclientUsername: clientUsername\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tif (isEmpty(clientCertValues.clientUsername)) {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: en.connectors.labels.validationErrors.missingRequiredField(\n\t\t\t\t\t\t\t\t\t\t\ten.connectors.labels.clientUsername\n\t\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tsetSolaceValidationErrors({\n\t\t\t\t\t\t\t\t\t\t...solaceValidationErrors,\n\t\t\t\t\t\t\t\t\t\tclientCertUsername: \"\"\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!readOnly && !!solaceValidationErrors.clientCertUsername" + }, + { + "name": "helperText", + "type": "expression", + "value": "!readOnly\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername && validationEnabled\n\t\t\t\t\t\t\t\t\t\t? solaceValidationErrors.clientCertUsername\n\t\t\t\t\t\t\t\t\t\t: en.connectors.helperText.clientUsername\n\t\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "connectorDetails.name" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_name_field" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: name }) => {\n\t\t\t\t\t\tsetConnectorDetails({ ...connectorDetails, name });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\tif (isEmpty(connectorDetails.name)) {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({\n\t\t\t\t\t\t\t\t...detailsStepValidationErrors,\n\t\t\t\t\t\t\t\tname: en.connectors.labels.validationErrors.missingRequiredField(en.connectors.labels.name)\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tsetDetailsStepValidationErrors({ ...detailsStepValidationErrors, name: \"\" });\n\t\t\t\t\t\t}\n\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!detailsStepValidationErrors.name" + }, + { + "name": "helperText", + "type": "expression", + "value": "detailsStepValidationErrors.name ? detailsStepValidationErrors.name : en.connectors.helperText.uniqueName" + }, + { + "name": "autoFocus", + "type": "variable", + "value": "clone" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "eventBrokerService" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.brokerName)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "host" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.host" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.host)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "msgVpn" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.msgVpn" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authentication.messageVpn)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "authenticationTypeReadOnlyField" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.authenticationType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientUsername" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientUsername" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(basicAuthValues.clientUsername)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "clientPassword" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.clientPassword" + }, + { + "name": "value", + "type": "variable", + "value": "clientPassword" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destinationType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "bindingDestination" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.bindingDestination" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(solaceConnectionStepAtom.binding.destination)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "key" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(key)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "value" + }, + { + "name": "value", + "type": "expression", + "value": "getConnectorSummaryValue(value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextField.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(hasBlurred || isSubmitted) && hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "(hasBlurred || isSubmitted ? errorText : \"\") || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CustomizeMessageSpoolDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "name", + "type": "string", + "value": "new_msg_spool_size" + }, + { + "name": "dataQa", + "type": "string", + "value": "newMessageSpoolSize" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_msg_spool_size_label\", message: \"New Message Spool Size (GB)\" })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "progress" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "4" + }, + { + "name": "value", + "type": "expression", + "value": "messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasMessageStorageErrors ? messageStorageErrorText : t({ id: \"id_default_size_gb\", message: \"Default: {0} GB\", values: { 0: formatter.format(defaultMessageSpoolSize) } })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/DeleteServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-service-confirm-name" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\tPlease type {matchText} to confirm.\n\t\t\t\t\t\t\t" + }, + { + "name": "value", + "type": "variable", + "value": "matchName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setMatchName(e.value)" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/RenameServiceDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "service_name" + }, + { + "name": "name", + "type": "string", + "value": "service_name" + }, + { + "name": "dataQa", + "type": "string", + "value": "rename-service-name" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_new_service_name_label\", message: \"Service Name\" })" + }, + { + "name": "value", + "type": "variable", + "value": "newName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNewName(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "isEmpty\n\t\t\t\t\t\t\t? t({ id: \"id_rule_enter_value\", message: \"Required. Enter a value.\" })\n\t\t\t\t\t\t\t: hasErrors\n\t\t\t\t\t\t\t? t({ id: \"id_rule_less_n_chars\", message: \"Exceeds limit. Enter a value under {0} characters.\", values: { 0: 50 } })\n\t\t\t\t\t\t\t: \"\\xa0\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/ConnectionEndpointDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accessType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_access_type\", message: \"Access Type\" })" + }, + { + "name": "value", + "type": "expression", + "value": "i18n._(accessTypes[endpoint.accessType])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfiles?.[0]?.displayName ? tracingProfiles[0].displayName : \"-\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MessageSpoolSizeCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "msg_spool_size" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_cur_msg_spool_size\", message: \"Current Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "variable", + "value": "messageSpoolSize" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "tracingProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "tracingClientUsername" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_client_username\", message: \"Tracing Client Username\" })" + }, + { + "name": "value", + "type": "expression", + "value": "\"sc-dt-trace-collector\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "telemetryProfileName" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_telemetry_profile\", message: \"Telemetry Profile\" })" + }, + { + "name": "value", + "type": "variable", + "value": "telemetryProfileName" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/ServiceAuthenticationCard.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationBasicEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_basic_auth\", message: \"Basic Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationBasicEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationClientCertEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_client_cert_auth\", message: \"Client Certificate Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationClientCertEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "authenticationOauthEnabled" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_oauth_provider_auth\", message: \"OAuth Provider Authentication\" })" + }, + { + "name": "value", + "type": "expression", + "value": "getEnablingText(msgVpn?.authenticationOauthEnabled)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "filterName" + }, + { + "name": "name", + "type": "string", + "value": "filterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-filter-name" + }, + { + "name": "value", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "t({ id: \"id_filter_services\", message: \"Filter by service name\" })" + }, + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\ticon: filter ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: filter ? handleClearFilter : undefined\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : formatter.format(parseInt(messageStorage.value))" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMessageStorage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messageStorage" + }, + { + "name": "name", + "type": "string", + "value": "messageStorage" + }, + { + "name": "dataQa", + "type": "string", + "value": "messageStorage" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_message_storage_gb\", message: \"Message Spool Size (GB)\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "value", + "type": "expression", + "value": "activeServiceClasses.length === 0 ? \"\" : messageStorage.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessageStorageChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasMessageStorageErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "messageStorageErrorText" + }, + { + "name": "readOnly", + "type": "expression", + "value": "activeServiceClasses.length > 0 && (!(!isSolaceDC || organization?.spoolConfigEnabled) || readOnly)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "namePort" + }, + { + "name": "name", + "type": "variable", + "value": "namePort" + }, + { + "name": "dataQa", + "type": "variable", + "value": "namePort" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "label", + "type": "expression", + "value": "\"\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "size", + "type": "number", + "value": "5" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "value", + "type": "variable", + "value": "port" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMsgVpnName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "name", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgVpnName" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_message_vpn_name_help\", message: \"The message VPN name cannot be changed once the service is created.\" })" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "name" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "name" + }, + { + "name": "type", + "type": "string", + "value": "text" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasAnyErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "anyErrorText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "onBlur", + "type": "variable", + "value": "handleBlur" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceLimitValue" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.newServiceLimit" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceLimitChange" + }, + { + "name": "value", + "type": "variable", + "value": "newServiceLimit" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"serviceLimitValue\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environmentFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "environmentsStr.environmentList.filterPlaceholder" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentFilterInput" + }, + { + "name": "width", + "type": "expression", + "value": "\"313px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.environmentName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "environmentName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvNameChange" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "isDuplicate || hasError || hasNameRequiredError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envNameTestId" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "firstNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "firstNameError ? myProfile.firstNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userFirstName" + }, + { + "name": "id", + "type": "string", + "value": "userFirstName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userFirstName" + }, + { + "name": "value", + "type": "variable", + "value": "firstNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFirstName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "lastNameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "lastNameError ? myProfile.lastNameError : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userLastName" + }, + { + "name": "id", + "type": "string", + "value": "userLastName" + }, + { + "name": "dataQa", + "type": "string", + "value": "userLastName" + }, + { + "name": "value", + "type": "variable", + "value": "lastNameValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLastName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "oldPasswordReq" + }, + { + "name": "helperText", + "type": "expression", + "value": "oldPasswordReq ? myProfile.oldPasswordReq : \"\"" + }, + { + "name": "name", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "id", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "userOldPassword" + }, + { + "name": "value", + "type": "variable", + "value": "oldPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOldPasswordChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "newPasswordError.length > 0" + }, + { + "name": "helperText", + "type": "variable", + "value": "newPasswordError" + }, + { + "name": "name", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "id", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewPassword" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/myProfile/MyProfile.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "confirmPasswordError" + }, + { + "name": "helperText", + "type": "expression", + "value": "confirmPasswordError ? newPasswordConfirmError : myProfile.changeWarning" + }, + { + "name": "name", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "id", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "dataQa", + "type": "string", + "value": "userNewConfirmation" + }, + { + "name": "value", + "type": "variable", + "value": "newPasswordValueConfirm" + }, + { + "name": "maxLength", + "type": "number", + "value": "50" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNewPasswordConfirmChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.ugName" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.name" + }, + { + "name": "name", + "type": "string", + "value": "userGroupName" + }, + { + "name": "maxLength", + "type": "number", + "value": "100" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGNameChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "hasNameError || isDuplicate || hasNoNameError || isDefaultError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorText()" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupNameQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userGroupSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupSearchQa" + }, + { + "name": "value", + "type": "variable", + "value": "userGroupSearchValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSearchValue" + }, + { + "name": "placeholder", + "type": "expression", + "value": "userGroups.userGroupsHome.search" + }, + { + "name": "size", + "type": "number", + "value": "155" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tuserGroupSearchValue ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "width", + "type": "string", + "value": "20rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientId?.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientId.errors?.length > 0 ? configSettings.clientId.errors[0] : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientIdErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientId, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientId" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientId.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.clientSecretKey.errors?.length > 0 ? configSettings.clientSecretKey.errors[0] : \"\"" + }, + { + "name": "type", + "type": "expression", + "value": "hideSecretKey ? \"password\" : \"text\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "clientSecretKey" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.clientSecretKeyErrorMsg);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.clientSecretKey, value, errors } };\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.clientSecretKey" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.clientSecretKey.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.oidcDiscoveryUrl.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.discoveryUrlExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "oidcDiscoveryUrl" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.length < 1) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.oidcDiscoveryUrlErrorMsg);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.oidcDiscoveryUrl, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.discoveryUrl" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.oidcDiscoveryUrl.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "configSettings.additionalScopes.errors?.length > 0\n\t\t\t\t\t\t\t\t\t? configSettings.additionalScopes.errors[0]\n\t\t\t\t\t\t\t\t\t: en.accountSettings.additionalScopesExpectedFormat" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "additionalScopes" + }, + { + "name": "onChange", + "type": "function", + "value": "({ name, value }) => {\n\t\t\t\t\t\t\t\tconst errors: string[] = [];\n\n\t\t\t\t\t\t\t\tif (value.indexOf(\" \") >= 0) {\n\t\t\t\t\t\t\t\t\terrors.push(en.accountSettings.noWhiteSpaceAllowed);\n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\thandleConfigureSettingsChange();\n\n\t\t\t\t\t\t\t\tsetConfigSettings((config) => {\n\t\t\t\t\t\t\t\t\treturn { ...config, [name]: { ...config.additionalScopes, value, errors } };\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalScopes" + }, + { + "name": "value", + "type": "expression", + "value": "configSettings.additionalScopes.value as string" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "name", + "type": "string", + "value": "preferredSubdomain" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setPreferredSubdomainText({ edited: true, text: e.value })" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.preferredSubdomain" + }, + { + "name": "value", + "type": "expression", + "value": "preferredSubdomain.text" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest" + }, + { + "name": "helperText", + "type": "expression", + "value": "preferredSubdomain.edited && !canSendRequest ? en.accountSettings.validSubdomain : \"\"" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "string", + "value": "preferredSubdomainTextField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "userGroupManagement[\n\t\t\t\t\t\t\t\t\tclaimIdChanged && claimId.trim().length < 1 ? \"claimIdError\" : \"identityProviderHelperText\"\n\t\t\t\t\t\t\t\t]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "claimIdChanged && claimId.trim().length < 1" + }, + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.identityProviderLabel" + }, + { + "name": "name", + "type": "string", + "value": "claimId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => claimIdChangeHandler(value)" + }, + { + "name": "value", + "type": "variable", + "value": "claimId" + }, + { + "name": "dataQa", + "type": "string", + "value": "roleId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimValueRowItem.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "editClaimValuesFieldId" + }, + { + "name": "name", + "type": "string", + "value": "editClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage :  " + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "name", + "type": "string", + "value": "addClaimValuesField" + }, + { + "name": "value", + "type": "variable", + "value": "claimValuesMapping" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setClaimValuesMapping(value)" + }, + { + "name": "helperText", + "type": "expression", + "value": "claimValueError ? userGroupManagement.claimValueErrorMessage : undefined" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "claimValueError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "summaryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleSummaryError()" + }, + { + "name": "name", + "type": "string", + "value": "summaryfield" + }, + { + "name": "id", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageSummary" + }, + { + "name": "value", + "type": "variable", + "value": "summaryValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSummaryFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "errorIdError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleErrorIdError()" + }, + { + "name": "name", + "type": "string", + "value": "errorField" + }, + { + "name": "id", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageErrorId" + }, + { + "name": "value", + "type": "variable", + "value": "errorIdValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleErrorIdFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "350" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestNumber" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setLimitRequestNumber(+value)" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "value", + "type": "variable", + "value": "limitRequestNumber" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.totalObjects" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "15rem" + }, + { + "name": "data-qa", + "type": "string", + "value": "limitRequestNumberInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setContactEmail(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.contactEmail" + }, + { + "name": "value", + "type": "variable", + "value": "contactEmail" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail)" + }, + { + "name": "helperText", + "type": "expression", + "value": "!!contactEmail && !isValidEmail(contactEmail) ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{en.overview.banner.errorHelperText}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AdvancedSettingsSection.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setPassword(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.advancedSettingsSection.password" + }, + { + "name": "value", + "type": "variable", + "value": "password" + }, + { + "name": "type", + "type": "string", + "value": "password" + }, + { + "name": "width", + "type": "string", + "value": "45rem" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "inCorrectPassword" + }, + { + "name": "dataQa", + "type": "string", + "value": "password" + }, + { + "name": "helperText", + "type": "expression", + "value": "inCorrectPassword ? en.overview.advancedSettingsSection.incorrectPasswordError : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/resetPassword/ResetPassword.tsx", + "props": [ + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "name", + "type": "string", + "value": "resetPasswordEmail" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "title", + "type": "expression", + "value": "en.forgotPassword.resetPasswordFieldTitle" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.forgotPassword.email" + }, + { + "name": "dataQa", + "type": "string", + "value": "resetPasswordEmailInput" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationTextField.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "string", + "value": "List of Emails" + }, + { + "name": "value", + "type": "variable", + "value": "handle" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setHandle(value)" + }, + { + "name": "onFocus", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({ ...previous, [name]: { hasErrors: false, helperText: helperText.info } }))" + }, + { + "name": "onBlur", + "type": "function", + "value": "() =>\n\t\t\t\t\t!helper.hasErrors &&\n\t\t\t\t\tsetHelper((previous: any) => ({\n\t\t\t\t\t\t...previous,\n\t\t\t\t\t\t[name]: { hasErrors: false, helperText: handle ? \"\" : helperText.warning(name) }\n\t\t\t\t\t}))" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "helper.hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "helper.helperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/AvailablePrivateRegions.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "width", + "type": "string", + "value": "45%" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search..." + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSearch(event.value)" + }, + { + "name": "value", + "type": "variable", + "value": "search" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "tokenFormValues.name" + }, + { + "name": "aria-label", + "type": "string", + "value": "Name" + }, + { + "name": "data-lpignore", + "type": "string", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!nameError" + }, + { + "name": "helperText", + "type": "expression", + "value": "nameError ?? undefined" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => dispatch(setTokenName(e.value))" + }, + { + "name": "dataQa", + "type": "string", + "value": "tokenName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_displayName" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.name.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination?.displayName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.type.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tracingType[tracingDestination?.tracingBackendType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.connectionType.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.tlsConnectionType[tracingDestination.connectionType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.region.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingProfile.datadogSite[tracingDestination.datadogSite]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.endpoint.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.endpoint" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingDestinationDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "details_apiKey" + }, + { + "name": "name", + "type": "expression", + "value": "tracingProfile.formFields.datadogApiKey.field" + }, + { + "name": "value", + "type": "expression", + "value": "tracingDestination.datadogApiKey" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onBlur" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [ + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\ticon: ,\n\t\t\t\t\t\tposition: \"end\"\n\t\t\t\t\t}" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "label", + "type": "expression", + "value": "customers.searchAggregationName" + }, + { + "name": "name", + "type": "string", + "value": "searchCustomerTextbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextSearch" + }, + { + "name": "title", + "type": "expression", + "value": "customers.searchAggregationName" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchCustomerTextbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "orgSearchBox" + }, + { + "name": "name", + "type": "string", + "value": "orgSearchBox" + }, + { + "name": "dataQa", + "type": "string", + "value": "orgSearchBox" + }, + { + "name": "width", + "type": "string", + "value": "400px" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleSearchField(event.value)" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\tsearchText ? (\n\t\t\t\t\t\t\t\t handleSearchField(EMPTY_STRING)}>\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "SolaceDatadogAgentVersion" + }, + { + "name": "placeholder", + "type": "string", + "value": "Enter to override Production Datadog Agent Version" + }, + { + "name": "helperText", + "type": "string", + "value": "Overrides solace-datadog-agent image version, default: latest" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setValue(\"SolaceDatadogAgentVersion\", e.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "SolaceDatadogAgentVersionTextBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "orgIdField" + }, + { + "name": "label", + "type": "string", + "value": "Organization Id" + }, + { + "name": "value", + "type": "variable", + "value": "orgId" + }, + { + "name": "dataQa", + "type": "string", + "value": "orgIdField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "disabled", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "apiKeyField" + }, + { + "name": "label", + "type": "string", + "value": "API Key" + }, + { + "name": "value", + "type": "expression", + "value": "ddOrgData?.apiKey ?? \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "apiKeyTextField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "orgNameField" + }, + { + "name": "label", + "type": "string", + "value": "Organization Display Name" + }, + { + "name": "value", + "type": "expression", + "value": "ddOrgData?.orgPublicId ?? \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "orgNameField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "disabled", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "appKeyField" + }, + { + "name": "label", + "type": "string", + "value": "APP Key" + }, + { + "name": "value", + "type": "expression", + "value": "ddOrgData?.appKey ?? \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "appKeyTextField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "ddSubOrgName" + }, + { + "name": "label", + "type": "string", + "value": "Datadog Sub-Org Name" + }, + { + "name": "value", + "type": "variable", + "value": "subOrgName" + }, + { + "name": "placeholder", + "type": "string", + "value": "Enter Datadog Sub-Org name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\thandleSubOrgNameInput(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "ddSubOrgNameTextBox" + }, + { + "name": "width", + "type": "string", + "value": "50%" + }, + { + "name": "maxLength", + "type": "number", + "value": "32" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "subOrgNameInvalid" + }, + { + "name": "helperText", + "type": "expression", + "value": "subOrgNameInvalid\n\t\t\t\t\t\t\t\t\t\t? \"Datadog Sub-Org Name does not start with 'PI - ' or 'RMMS - ' , change the name and retry\"\n\t\t\t\t\t\t\t\t\t\t: \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "alertHandles" + }, + { + "name": "label", + "type": "string", + "value": "Alert Handles" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "resource.alertHandles ?? \"\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_alertHandlesTextBox`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "warningHandles" + }, + { + "name": "label", + "type": "string", + "value": "Warning Handles" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "resource.warningHandles ?? \"\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_warningHandlesTextBox`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "recoveryHandles" + }, + { + "name": "label", + "type": "string", + "value": "Recovery Handles" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\thandleHandlesUpdate(resource.profile, e.name, convertToArray(e.value));\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "resource.recoveryHandles ?? \"\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_recoveryHandlesTextBox`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "inviteUsersInput" + }, + { + "name": "label", + "type": "string", + "value": "Provide a list of comma-separated solace.com email addresses" + }, + { + "name": "value", + "type": "variable", + "value": "adminUsersList" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetAdminUsersList(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "inviteUsersTextBox" + }, + { + "name": "width", + "type": "string", + "value": "60%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "disabled", + "type": "expression", + "value": "search === \"none\"" + }, + { + "name": "label", + "type": "string", + "value": "Search" + }, + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "width", + "type": "string", + "value": "375px" + }, + { + "name": "value", + "type": "expression", + "value": "filters[search]" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setFilters({ ...filters, [search]: event.value })" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "value" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setValue(event?.value)" + }, + { + "name": "placeholder", + "type": "expression", + "value": "operator === \"=in=\" || operator === \"=out=\" ? \"value1,value2,value3\" : \"Enter value\"" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "plan-description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "dataQa", + "type": "string", + "value": "run-description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "searchFor" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchBoxChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-for-textbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "confirmationBox" + }, + { + "name": "value", + "type": "variable", + "value": "confirmationText" + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmationBox" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setConfirmationText(value)" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\tPlease type DELETE to confirm.\n\t\t\t\t\t\t\t" + }, + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "search" + }, + { + "name": "name", + "type": "string", + "value": "search" + }, + { + "name": "placeholder", + "type": "string", + "value": "Search by event broker version" + }, + { + "name": "width", + "type": "string", + "value": "400px" + }, + { + "name": "value", + "type": "variable", + "value": "search" + }, + { + "name": "onChange", + "type": "function", + "value": "(input) => setSearch(input.value)" + }, + { + "name": "customIcon", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\ticon: search ? : ,\n\t\t\t\t\t\t\t\tposition: \"end\",\n\t\t\t\t\t\t\t\thandleClick: search ? handleClearSearch : undefined\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "quantityTextfieldId" + }, + { + "name": "name", + "type": "string", + "value": "quantityTextfield" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => validateQuantity(value)" + }, + { + "name": "value", + "type": "variable", + "value": "prodQuantityValue" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "string", + "value": "quantityTextfieldQa" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "productDrawdown.inputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "prodQuantityErrors[0]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "readOnly", + "type": "expression", + "value": "readOnlyProducts || isFieldReadOnly" + }, + { + "name": "type", + "type": "string", + "value": "number" + }, + { + "name": "size", + "type": "number", + "value": "5" + }, + { + "name": "name", + "type": "expression", + "value": "`countField${key}`" + }, + { + "name": "value", + "type": "expression", + "value": "prod.count !== 0 ? prod.count : undefined" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleCountSet(key, parseInt(e.value))" + }, + { + "name": "width", + "type": "expression", + "value": "!(readOnlyProducts || isFieldReadOnly) ? \"100%\" : \"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"orgDisplayName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "orgDetails[\"orgDisplayName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"orgDisplayName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0]" + }, + { + "name": "name", + "type": "string", + "value": "orgDisplayName" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.orgDisplayName" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"orgId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors).length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"orgId\"].errors.validationErrors.concat(orgDetails[\"orgId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\t\t createBizOrganization.orgDetails.orgIdWarning" + }, + { + "name": "name", + "type": "string", + "value": "orgId" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.orgId" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!validationErrors" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accountName" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.accountName" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"accountName\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.validationErrors.concat(orgDetails[\"accountName\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "orgDetails[\"accountName\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"accountName\"].errors.inputErrors\n\t\t\t\t\t\t\t)[0] || createBizOrganization.orgDetails.accountNameHelperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "accountId" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.accountId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"accountId\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)\n\t\t\t\t\t\t\t\t.length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "orgDetails[\"accountId\"].errors.validationErrors.concat(orgDetails[\"accountId\"].errors.inputErrors)[0] ||\n\t\t\t\t\t\t\tcreateBizOrganization.orgDetails.accountIdHelperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "costCenter" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "value", + "type": "expression", + "value": "orgDetails[\"costCenter\"].value" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.costCenter" + }, + { + "name": "dataQa", + "type": "string", + "value": "costCenterInput" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors().length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "((orgDetails[\"costCenter\"].isEdited || !isSaveAllowed) && getCostCenterErrors()[0]) || \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnlyProducts" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName" + }, + { + "name": "placeholder", + "type": "expression", + "value": "i18nStrings.filterByNameLabel" + }, + { + "name": "size", + "type": "number", + "value": "155" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "endAdornment", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\tnameFilter ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : null,\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "currentEmailEntry.length > 0 && !isEmailValid ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.errorHelperText}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : emailList.length === 0 && !isSaveAllowed ? (\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{createBizOrganization.accountAdmins.requiredFieldError}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\tcreateBizOrganization.accountAdmins.emailsPlaceholder\n\t\t\t\t\t\t\t\t)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(currentEmailEntry.length > 0 && !isEmailValid) || (emailList.length === 0 && !isSaveAllowed)" + }, + { + "name": "name", + "type": "string", + "value": "accountAdminEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setCurrentEmailEntry(value)" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => { setIsEmailValid(isEmail(currentEmailEntry)) }" + }, + { + "name": "value", + "type": "variable", + "value": "currentEmailEntry" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "data-qa", + "type": "string", + "value": "accountAdminTextField" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "name", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "label", + "type": "string", + "value": "Search By Organization ID" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "value", + "type": "variable", + "value": "orgId" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => (!loadingOrgs ? setOrgId(event.value) : undefined)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "autoFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "name", + "type": "string", + "value": "searchByOrgId" + }, + { + "name": "label", + "type": "string", + "value": "Search By Organization ID" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "value", + "type": "variable", + "value": "orgId" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => (!loadingJobs ? setOrgId(event.value) : undefined)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "datacenterId" + }, + { + "name": "name", + "type": "string", + "value": "datacenterId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "placeholder", + "type": "string", + "value": "Type a datacenter ID ..." + }, + { + "name": "name", + "type": "string", + "value": "sourceDatacenterId" + }, + { + "name": "dataQa", + "type": "string", + "value": "sourceDatacenterId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDatacenterId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => {\n\t\t\t\t\t\t\tsetSelectedDatacenterId(value);\n\t\t\t\t\t\t\treset();\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Image Tag" + }, + { + "name": "name", + "type": "string", + "value": "imageTag" + }, + { + "name": "title", + "type": "string", + "value": "Image Tag" + }, + { + "name": "value", + "type": "variable", + "value": "imageTag" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => dispatch(setImageTag(event.value.trim()))" + }, + { + "name": "dataQa", + "type": "string", + "value": "imageTag" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Helm Chart Version" + }, + { + "name": "name", + "type": "string", + "value": "helmChartVersion" + }, + { + "name": "title", + "type": "string", + "value": "Helm Chart Version" + }, + { + "name": "value", + "type": "variable", + "value": "helmChartVersion" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => dispatch(setHelmChartVersion(event.value.trim()))" + }, + { + "name": "dataQa", + "type": "string", + "value": "helmChartVersion" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + } + ] + }, + { + "component": "SolaceChip", + "count": 42, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/SolaceSelectionChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + }, + { + "name": "state", + "type": "expression", + "value": "selected ? STATES.ACTIVE : STATES.NOT_SELECTED" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "selectedEventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "protocolName.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "messagingService.eventMeshId" + }, + { + "name": "label", + "type": "expression", + "value": "messagingService.eventMeshName" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "maxWidth", + "type": "string", + "value": "200px" + }, + { + "name": "disabled", + "type": "variable", + "value": "toBeRemoved" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`Protocols: ${messagingService.supportedProtocols?.length ?? 0}`" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedApplicationDomainChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "isSidePanel ? 100 : 150" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/MemGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t{applicationDomainName}\n\t\t\t\t\t\t\t\t{isAppDomainLocked && }\n\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "tag.id" + }, + { + "name": "label", + "type": "expression", + "value": "tag.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\t {AUDIT_TAGS_LABELS.Hide}\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "borderRadius", + "type": "expression", + "value": "\"sm\"" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "node.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphNodeTooltipContent.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "applicationDomainName" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "domainInfoMap[item.id].name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "150" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomainSaveDialog.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "name" + }, + { + "name": "maxWidth", + "type": "number", + "value": "200" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "messages.configuration.enabled" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "eventMesh.name" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "label", + "type": "jsx", + "value": " 1 ? \"s\" : \"\"}: ${consumersCount}`}>\n\t\t\t\t\t\t{`Consumer${consumersCount > 1 ? \"s\" : \"\"}: ${consumersCount}`}\n\t\t\t\t\t" + }, + { + "name": "maxWidth", + "type": "number", + "value": "110" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerChip-${eventVersionId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/filterChips/FilterChip.tsx", + "props": [ + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDelete" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`filterChip-${filterType}`" + }, + { + "name": "clickable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerTableChipWithLabel.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "chipProps.labelColor" + }, + { + "name": "fillColor", + "type": "expression", + "value": "chipProps.fillColor" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "label", + "type": "jsx", + "value": "{chipProps.label}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "label", + "type": "expression", + "value": "dialogState.user?.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "group.id" + }, + { + "name": "label", + "type": "expression", + "value": "group.name" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "user.email" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name + \" : \" + filter.value" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => deleteFilter(filter.key)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/common/components/CommonAppBar.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "BETA" + }, + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "`${label}: ${value}`" + }, + { + "name": "onDelete", + "type": "variable", + "value": "onDeleteFunc" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQaId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/common/components/CommonAppBar.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "BETA" + }, + { + "name": "size", + "type": "string", + "value": "xs" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => onDeleteFunc()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "label", + "type": "variable", + "value": "value" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => setFilters({ ...filters, [key]: \"\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/ChipBuilder.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "maxWidth", + "type": "string", + "value": "fit-content" + }, + { + "name": "label", + "type": "variable", + "value": "item" + }, + { + "name": "...", + "type": "spread", + "value": "setChipArray ? { onDelete: () => setChipArray(item) } : {}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${value}-chip`" + }, + { + "name": "label", + "type": "expression", + "value": "capitalCase(value)" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => modifyFilters().removeFilter(value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "email + index" + }, + { + "name": "label", + "type": "variable", + "value": "email" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/AccountAdminsSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "email + index" + }, + { + "name": "label", + "type": "variable", + "value": "email" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.LIGHT_GREY" + }, + { + "name": "onDelete", + "type": "function", + "value": "() => removeEmail(email)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "feature" + }, + { + "name": "label", + "type": "variable", + "value": "feature" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/FeatureChips.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "more" + }, + { + "name": "label", + "type": "expression", + "value": "integrationStrings.organizations.table.moreFeatures(features.length - 1)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "dataQa", + "type": "string", + "value": "more-features" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "feature" + }, + { + "name": "label", + "type": "variable", + "value": "feature" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`visible-${index}-${email}`" + }, + { + "name": "label", + "type": "variable", + "value": "email" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Up to Date" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Out of Date" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.warnYellow" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.warnBgYellow" + } + ] + } + ] + }, + { + "component": "SolaceSelect", + "count": 124, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MEMDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "name", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMesh[type]" + }, + { + "name": "label", + "type": "variable", + "value": "LABEL_TYPE" + }, + { + "name": "value", + "type": "expression", + "value": "memContent.brokerType" + }, + { + "name": "required", + "type": "expression", + "value": "mode === \"create\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode !== \"create\"" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryConfigCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "name", + "type": "string", + "value": "schemaRegistry[type]" + }, + { + "name": "onChange", + "type": "function", + "value": "() => undefined" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "content.type" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][schemaRegistry][${selectedAuthType}][${inputField}]`" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.schemaRegistry.${index}.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${authKey}][${inputField}]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "expression", + "value": "`eventBroker[kafka][authentication][${KafkaAuthTypes[authKey]}][${inputField}]`" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels[inputField]" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isJaasConfigPassword || readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onClose", + "type": "variable", + "value": "onBlur" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ? en.common.error.selectValueRequired : \"\"" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = environmentVariableMenuOptions.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][authType]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.authentication" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tclearErrors(`kafka.authentication.auth.${selectedAuthType}`);\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`eventBroker[kafka][authentication][saslscram][saslMechanism]`" + }, + { + "name": "disabled", + "type": "expression", + "value": "kafkaDelimiterIsNotSet || loading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[kafka][authentication][saslscram][saslMechanism]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.saslMechanism" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SolaceMessagingServiceDialogCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[solace][messaging][type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "readOnly" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.transport" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleTransportChange(e.value)" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "id", + "type": "string", + "value": "eventBroker[type]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.type" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "readOnly || !!type || !!content.messagingServiceType || !!content.solaceCloudMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Environment`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onEnvironmantChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.environmentError || !!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.environmentError ?? validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[environment]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.environment" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[eventMesh]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.mem" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[messagingService]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceError" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "dropdownListMaxHeight" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/ApplicationVersionAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersion[select]" + }, + { + "name": "label", + "type": "expression", + "value": "`Application version to add`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onApplicationVersionChange" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationVersion?.id" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxHeight", + "type": "variable", + "value": "DROPDOWN_LIST_MAX_HEIGHT" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[domain]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.applicationDomain" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomainId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.applicationDomainError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.applicationDomainError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProduct]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProduct" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedApplicationDomainId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[eventApiProductVersion]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.eventApiProductVersion" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventApiProductVersionSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventApiProductVersionId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventApiProductVersionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventApiProductVersionError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => RESOURCE_LABEL_BY_ROLE[value]" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "name", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDialog-select-environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EntityDetailModal.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "version.id" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"valueType\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tconst match = customAttributesValueTypeOptionsWithMultiValue.find((props) => props.value === value);\n\n\t\t\t\t\t\t\t\t\t\t\t\t\treturn match ? match.name : \"\";\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-type-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg" + }, + { + "name": "menuAnchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "menuTransformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleSelectUpdate(e.value, \"scope\");\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-scope-select`" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isDomainManager" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!nameErrorMsg && !!attributeErrorMsg && !isDomainManager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${entityName}[versionState]`" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "versionStateId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "stateSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumerationVersion" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationVersionName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumVersionId" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnumOption || getEnumVersions.isLoading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => valueToMenuItemMap.get(value) || \"\"" + }, + { + "name": "width", + "type": "string", + "value": "35%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-readOnly" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "value", + "type": "expression", + "value": "selectedApplicationDomain?.value" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCatalogEntityVersionSelect.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${entityTypeToLabel(entityType)} Version`" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEntityVersionId" + }, + { + "name": "name", + "type": "string", + "value": "Entity List" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEntityVersionChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "entityVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useEntityVersionIncrementSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "versionIncrementStrategySelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleStateSelectionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionIncrementStrategy" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"versionIncrementStrategySelect\"" + }, + { + "name": "label", + "type": "string", + "value": "Version Incrementing" + }, + { + "name": "width", + "type": "expression", + "value": "width ?? \"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/ObjectRelationshipGraph.stories.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleTypeChange" + }, + { + "name": "id", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "name", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "dataQa", + "type": "string", + "value": "objectRelationship[type]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Graph Type\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Agent Mode" + }, + { + "name": "disabled", + "type": "variable", + "value": "loading" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value: string) => EMA_MODES_LABELS[value]" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!getRuntimeAgentModeErrorMessage" + }, + { + "name": "helperText", + "type": "variable", + "value": "getRuntimeAgentModeErrorMessage" + }, + { + "name": "name", + "type": "string", + "value": "agent mode" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDiscoveryScanModeChange" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!agentId" + }, + { + "name": "width", + "type": "string", + "value": "620px" + }, + { + "name": "value", + "type": "expression", + "value": "eventManagementAgent.runtimeAgentMode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceTypeSelect" + }, + { + "name": "label", + "type": "string", + "value": "Type" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceType" + }, + { + "name": "width", + "type": "string", + "value": "30%" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"layoutOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "layoutType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLayoutTypeChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"90px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"levelDepthOptions\"" + }, + { + "name": "value", + "type": "variable", + "value": "levelDepthString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleLevelDepthChange" + }, + { + "name": "width", + "type": "expression", + "value": "\"55px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEnvironmentChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[environmentSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[environmentSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Environment\"" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnvironmentId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.environmentInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.environmentInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[eventMeshSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[eventMeshSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Modeled Event Mesh\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEnvironmentId === \"\" || eventMeshSelectOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/BulkAddDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceChange" + }, + { + "name": "id", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "name", + "type": "string", + "value": "addToAppVersions[messagingServiceSelect]" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToAppVersionsBulkPromotion[messagingServiceSelect]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "disabled", + "type": "expression", + "value": "isLoading || selectedEventMeshId === \"\" || messagingServiceOptions.length === 0" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.messagingServiceInputError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.messagingServiceInputError" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraphPanel.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleEventFlowFilterChange" + }, + { + "name": "id", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "name", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventFlowSelect" + }, + { + "name": "value", + "type": "variable", + "value": "eventFlowOption" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphLoading || graphUpdating || drawInProgress || graphNodeExceeded" + }, + { + "name": "width", + "type": "string", + "value": "280px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "value", + "type": "expression", + "value": "audits[0].id" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"configurationVersionSelect\"" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "name", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "dataQa", + "type": "string", + "value": "selectMessagingService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectMessagingServiceChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingServiceId" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "350px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "onChange", + "type": "variable", + "value": "handleSecondVersionChange" + }, + { + "name": "id", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "name", + "type": "string", + "value": "version-selector-runtime" + }, + { + "name": "dataQa", + "type": "string", + "value": "versionSelectorRuntime" + }, + { + "name": "label", + "type": "string", + "value": "Version" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSecondVersionId" + }, + { + "name": "width", + "type": "string", + "value": "315px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "async (e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\ttrigger(`${configurationName}-postRequestTarget`);\n\t\t\t\t\t\t\t\t\t\tupdateConfiguration();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!getValues(`${configurationName}-postRequestTarget`)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${configurationName}-requestTargetEvaluation`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderType" + }, + { + "name": "name", + "type": "expression", + "value": "`${configurationName}-request`" + }, + { + "name": "value", + "type": "variable", + "value": "requestHeaderType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setRequestHeaderType(e.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\thandleUpdateConfigurationTypeId(e.value as RDPConfigurationTypeId);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "restDeliveryPointConfigurationType-selector" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "context.value" + }, + { + "name": "name", + "type": "string", + "value": "contextSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "contextSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleContextOptionChange" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!isDisabled" + }, + { + "name": "width", + "type": "string", + "value": "400px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/KafkaPreferencesDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "dataQa", + "type": "string", + "value": "kafkaDelimiter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDelimiterChange" + }, + { + "name": "value", + "type": "variable", + "value": "delimiter" + }, + { + "name": "disabled", + "type": "variable", + "value": "hasFetchError" + }, + { + "name": "width", + "type": "string", + "value": "150px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"AsyncAPI Version\"" + }, + { + "name": "name", + "type": "string", + "value": "AsyncAPI Version" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetVersion(e.value as EPSupportedAsyncApiVersion);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => ASYNCAPI_VERSION_OPTIONS.find((props) => props.value === value).name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Document Extensions\"" + }, + { + "name": "name", + "type": "string", + "value": "documentExtensions" + }, + { + "name": "value", + "type": "variable", + "value": "extension" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetExtension(e.value as SupportedAsyncApiExtensionOptions);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => {\n\t\t\t\tconst match = documentExtensionOptions.find((props) => props.value === value);\n\n\t\t\t\treturn match ? match.name : \"\";\n\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredPlan : null" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.plan" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t// borkerType is used in the parent, pass the value back.\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApi[brokerType]" + }, + { + "name": "width", + "type": "expression", + "value": "\"526px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`messagingSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`accessTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "variable", + "value": "value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`queueTypeSelect-${index}`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "width", + "type": "expression", + "value": "\"556px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === \"view\"" + }, + { + "name": "value", + "type": "expression", + "value": "`${value}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${versionObjectName}[approvalType]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || brokerTypes[0].value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(value) => brokerTypes.find((type) => type.value === value)?.name || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProduct[brokerType]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetSelectedSchemaType(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isEdit" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConsumerItemForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isNew || consumerTypeMenuItems?.length === 1" + }, + { + "name": "disabled", + "type": "expression", + "value": "consumerIdInSidepanel === id && sidePanelOpen" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\t\t\t// clear any configuration when changing consumer type\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configuration`, undefined);\n\t\t\t\t\t\t\t\t\t\tsetValue(`applicationVersion[consumers].${index}.configurations`, []);\n\n\t\t\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.consumerType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/AttractedEvents.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"memSelect\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Modeled Event Mesh`" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshId" + }, + { + "name": "dataQa", + "type": "string", + "value": "memSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => updateBrokerType(e.value, index)" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/TopicDomains.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`brokerType-${topicDomain.id}`" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerType" + }, + { + "name": "value", + "type": "expression", + "value": "topicDomain.brokerType" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\thandleBrokerTypeChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[brokerType]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[requiresApproval]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SchemaVersionDetailsTitleContent.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeSchemaVersion" + }, + { + "name": "value", + "type": "expression", + "value": "viewedSchemaVersion?.id" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Schema Type\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetImpliedContentType(schemaTypeMapToCodeEditorMode[e.value]);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "expression", + "value": "value || schemaTypes[0]?.value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[schemaType]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "\"Access Approval\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[accessApproval]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tonBrokerTypeChange?.(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEdit || !onBrokerTypeChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/MemFilter.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedMem" + }, + { + "name": "value", + "type": "expression", + "value": "memIds?.length > 0 && eventMeshesById && selectedMemId ? selectedMemId : designedEventFlowOption.value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tconst memId = e.value === designedEventFlowOption.value ? \"\" : e.value;\n\n\t\t\t\t\t\tsetSelectedMemId(memId);\n\t\t\t\t\t}" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`appVersionDetailMemFilter`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/NewConsumerForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.consumerType" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tconst consumerTypeSelection = e.value;\n\n\t\t\t\t\t\t\t\tonChange(consumerTypeSelection);\n\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`consumerType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/ExistingConsumerForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.consumer.label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\ttrigger(\"subscriptions\"); // trigger validation\n\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "dataQa", + "type": "string", + "value": "consumerSelect" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "name", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "dataQa", + "type": "string", + "value": "configurationTypeId" + }, + { + "name": "label", + "type": "expression", + "value": "messages.credentials.configurationTypeId" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeConfigurationType" + }, + { + "name": "value", + "type": "expression", + "value": "configuration.typeId" + }, + { + "name": "required", + "type": "variable", + "value": "isEditing" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!isEditing" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterSingleSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSharedTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedValue" + }, + { + "name": "displayEmpty", + "type": "boolean", + "value": "true" + }, + { + "name": "onOpen", + "type": "variable", + "value": "handleOpen" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleClose" + }, + { + "name": "open", + "type": "variable", + "value": "openDropdown" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "authenticationType" + }, + { + "name": "id", + "type": "string", + "value": "authenticationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.authenticationType" + }, + { + "name": "name", + "type": "expression", + "value": "\"authenticationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: authType }) => {\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tauthenticationType: authType as AuthenticationType\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.authenticationType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"solaceDestinationType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: destinationType }) =>\n\t\t\t\t\t\t\t\t\t\tsetSolaceConnectionValues({\n\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues,\n\t\t\t\t\t\t\t\t\t\t\tbinding: {\n\t\t\t\t\t\t\t\t\t\t\t\t...solaceConnectionValues.binding,\n\t\t\t\t\t\t\t\t\t\t\t\tdestinationType: destinationType\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t})" + }, + { + "name": "value", + "type": "expression", + "value": "solaceConnectionValues.binding.destinationType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.destinationType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "isEqual(solaceDirection, ConnectorDirection.Source) ? true : false" + }, + { + "name": "dataQa", + "type": "string", + "value": "solaceDestinationType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t\tsetConstantField({\n\t\t\t\t\t\t\t...constantField,\n\t\t\t\t\t\t\tdataType: dataType,\n\t\t\t\t\t\t\tconstantValue: getDefaultConstantValue(dataType)\n\t\t\t\t\t\t});\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "constant-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetCustomHeaderField({ ...customHeaderField, dataType: dataType });\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "customHeaderField.dataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetHeaderDataType(dataType);\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "headerDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dataType\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: dataType }) => {\n\t\t\t\t\t\tsetConstantDataType(dataType);\n\t\t\t\t\t\tsetDefaultConstantValue(dataType);\n\t\t\t\t\t\tsetConstantNameError(\"\");\n\t\t\t\t\t}" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.dataType" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "constantDataType" + }, + { + "name": "dataQa", + "type": "string", + "value": "header-datatype-selection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "expression", + "value": "props.value" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "title", + "type": "expression", + "value": "props.title" + }, + { + "name": "id", + "type": "expression", + "value": "props.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFormatTypeField" + }, + { + "name": "id", + "type": "string", + "value": "sslKeyStoreFormatType" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.sslKeyStoreFormat" + }, + { + "name": "name", + "type": "expression", + "value": "\"sslKeyStoreFormat\"" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value: sslKeyStoreFormat }) => {\n\t\t\t\t\t\t\t\tsetClientCertValues({\n\t\t\t\t\t\t\t\t\t...clientCertValues,\n\t\t\t\t\t\t\t\t\tsslKeyStoreFormat: sslKeyStoreFormat as SslKeyStoreFormatType\n\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "clientCertValues.sslKeyStoreFormat" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelect.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/SelectEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "view" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_view_by\", message: \"View by\" })" + }, + { + "name": "value", + "type": "variable", + "value": "view" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeView" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"connect-view-by\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "protocol" + }, + { + "name": "name", + "type": "string", + "value": "protocol" + }, + { + "name": "dataQa", + "type": "string", + "value": "protocol" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_protocol\", message: \"Protocol\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "protocolIndex.toString()" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hosturi" + }, + { + "name": "name", + "type": "string", + "value": "hosturi" + }, + { + "name": "dataQa", + "type": "string", + "value": "hosturi" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_hosturi\", message: \"Host URI\" })" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "hostUri" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHostUriChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "data-qa", + "type": "string", + "value": "selectedTracingProfileId" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_tracing_destination\", message: \"Tracing Destination\" })" + }, + { + "name": "value", + "type": "variable", + "value": "selectedTracingProfileId" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!selectedTracingProfileId && isSubmitted" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectedTracingProfileId || !isSubmitted ? \"\" : t({ id: \"id_dt_select_tracing_dest\", message: \"Required. Select a tracing destination.\" })" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedTracingProfileId(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldServiceClass.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceClass" + }, + { + "name": "name", + "type": "string", + "value": "serviceClass" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceClass" + }, + { + "name": "value", + "type": "expression", + "value": "serviceClass.value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceClassChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasServiceClassErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "serviceClassErrorText" + }, + { + "name": "label", + "type": "expression", + "value": "isSAP ? t({ id: \"id_service_class\", message: \"Service Class\" }) : t({ id: \"id_connections\", message: \"Connections\" })" + }, + { + "name": "disabled", + "type": "expression", + "value": "activeServiceClasses.length === 0" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerFamily.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFamilyVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "name", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerVersion" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloud.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloud" + }, + { + "name": "name", + "type": "string", + "value": "cloud" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloud" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "cloudDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "name", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "resourceRoleSelect" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + }, + { + "name": "value", + "type": "variable", + "value": "role" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onResourceRoleChange(resourceAssignment, event.value as ResourceRole)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/UserGroups.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "20rem" + }, + { + "name": "id", + "type": "string", + "value": "userGroupDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupDropdownQa" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSelectedUserGroupRole" + }, + { + "name": "title", + "type": "string", + "value": "User Group Select" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroupRole" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.timeRange" + }, + { + "name": "name", + "type": "string", + "value": "timeRange" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Time Range" + }, + { + "name": "value", + "type": "expression", + "value": "filters.timeRange.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.status" + }, + { + "name": "name", + "type": "string", + "value": "status" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Status" + }, + { + "name": "value", + "type": "expression", + "value": "filters.status.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.category" + }, + { + "name": "name", + "type": "string", + "value": "category" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Category" + }, + { + "name": "value", + "type": "expression", + "value": "filters.category.value" + }, + { + "name": "id", + "type": "string", + "value": "categoryFilter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "disabled", + "type": "expression", + "value": "!filters.category.value" + }, + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.event" + }, + { + "name": "name", + "type": "string", + "value": "event" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleFilterChange(e)" + }, + { + "name": "title", + "type": "string", + "value": "Event" + }, + { + "name": "value", + "type": "expression", + "value": "filters.event.value" + }, + { + "name": "helperText", + "type": "expression", + "value": "!filters.category.value ? en.auditLogs.selectCategory : \"\"" + }, + { + "name": "id", + "type": "string", + "value": "eventFilter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/MoveDatacenterEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environment" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "label", + "type": "expression", + "value": "environments.moveDialogLabels.destinationEnvironment" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? name" + }, + { + "name": "getOptionDisplayValue", + "type": "function", + "value": "(connectionType) => getOptionDisplayValue(connectionType as TlsConnectionType)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "270px" + }, + { + "name": "data-qa", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "name", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "value", + "type": "variable", + "value": "searchByOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchByOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "name", + "type": "string", + "value": "eolStatus" + }, + { + "name": "label", + "type": "string", + "value": "End of Life Status" + }, + { + "name": "dataQa", + "type": "string", + "value": "eolStatusSelect" + }, + { + "name": "value", + "type": "variable", + "value": "endOfLifeStatus" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setEndOfLifeStatus(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "270px" + }, + { + "name": "data-qa", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "name", + "type": "string", + "value": "searchBySelect" + }, + { + "name": "value", + "type": "variable", + "value": "searchByOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchByOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "t.profile" + }, + { + "name": "name", + "type": "expression", + "value": "`artifactResources_${t.profile}`" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "`Version in Datadog Sub-Org (${t.profile}):`" + }, + { + "name": "value", + "type": "expression", + "value": "t.version || \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "artifactResource" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Latest Version:" + }, + { + "name": "value", + "type": "string", + "value": "artifactVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "value", + "type": "variable", + "value": "search" + }, + { + "name": "label", + "type": "string", + "value": "Filter By" + }, + { + "name": "name", + "type": "string", + "value": "filter by" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSearch(e.value as FilterKey)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "value", + "type": "expression", + "value": "pageSize.toString()" + }, + { + "name": "label", + "type": "string", + "value": "Page Size" + }, + { + "name": "name", + "type": "string", + "value": "page size" + }, + { + "name": "width", + "type": "string", + "value": "125px" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "attribute" + }, + { + "name": "value", + "type": "variable", + "value": "attribute" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setAttribute(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "comparison" + }, + { + "name": "value", + "type": "variable", + "value": "operator" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setOperator(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"40vh\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"30vh\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => onChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "value", + "type": "expression", + "value": "value ?? \"preview\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/DrawdownSelection.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "createBizOrganization.products.rateSet" + }, + { + "name": "id", + "type": "string", + "value": "prodRateSet" + }, + { + "name": "name", + "type": "string", + "value": "prodRateSet" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProdRateSetChange" + }, + { + "name": "value", + "type": "expression", + "value": "rateSetValues ? prodRateSetValue : \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "prodRateSetDropdownQa" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSection.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "createBizOrganization.products.productConsumptionType" + }, + { + "name": "id", + "type": "string", + "value": "productConsumptionType" + }, + { + "name": "name", + "type": "string", + "value": "productConsumptionType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProdConsumptionChange" + }, + { + "name": "value", + "type": "variable", + "value": "productType" + }, + { + "name": "width", + "type": "string", + "value": "450px" + }, + { + "name": "dataQa", + "type": "string", + "value": "productConsumptionDropdownQa" + }, + { + "name": "readOnly", + "type": "expression", + "value": "productDrawdown.readonly || productSubscriptions.readonly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/BizOpsOrgDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "organizationType" + }, + { + "name": "id", + "type": "string", + "value": "organizationType" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "disabled", + "type": "expression", + "value": "!!validationErrors" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.orgDetails.accountType" + }, + { + "name": "dataQa", + "type": "string", + "value": "accountTypeDropdown" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "(orgDetails[\"organizationType\"].isEdited || !isSaveAllowed) &&\n\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t).length > 0" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationErrors\n\t\t\t\t\t\t\t\t? \"\"\n\t\t\t\t\t\t\t\t: orgDetails[\"organizationType\"].errors.validationErrors.concat(\n\t\t\t\t\t\t\t\t\t\torgDetails[\"organizationType\"].errors.inputErrors\n\t\t\t\t\t\t\t\t )[0]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Page Size" + }, + { + "name": "name", + "type": "string", + "value": "pageSize" + }, + { + "name": "width", + "type": "string", + "value": "200px" + }, + { + "name": "value", + "type": "expression", + "value": "pageSize.toString()" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Page Size" + }, + { + "name": "name", + "type": "string", + "value": "pageSize" + }, + { + "name": "width", + "type": "string", + "value": "200px" + }, + { + "name": "value", + "type": "expression", + "value": "pageSize.toString()" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetPageSize(parseInt(event.value));\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/ConnectorUpgradeDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "availableVersions" + }, + { + "name": "id", + "type": "string", + "value": "availableVersions" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "onChange", + "type": "variable", + "value": "inputHandler" + }, + { + "name": "title", + "type": "string", + "value": "Available Versions" + }, + { + "name": "dataQa", + "type": "string", + "value": "availableVersions" + } + ] + } + ] + }, + { + "component": "SolaceCheckBox", + "count": 99, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/SchemaRegistryAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventBroker[kafka][schemaRegistry][tls]" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.schemaRegistry.0.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/KafkaAuthList.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "isTLSChecked" + }, + { + "name": "dataQa", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "id", + "type": "string", + "value": "schemaRegistry[tls]" + }, + { + "name": "label", + "type": "expression", + "value": "eventBrokerFormFieldLabels.addTLS" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\tif (!e.value) clearErrors(`kafka.authentication.auth.${selectedAuthType}.trustStorePassword`);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "readOnly || loading || kafkaDelimiterIsNotSet" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "checkedItems[option.value]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "disabled", + "type": "expression", + "value": "optionDisabled(option, selectedMessagingService)" + }, + { + "name": "label", + "type": "expression", + "value": "option.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetSubscribeToEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "subscribeToEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isSubscribeReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationSubscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "publishEvent" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\tsetPublishEvent(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "publishEvent" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isPublishReadOnly" + }, + { + "name": "dataQa", + "type": "string", + "value": "addEventToApplicationPublishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/DeleteEntityVersionDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"keepParent\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"keepEntityCheckbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleKeepParentChange(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{ label: `Creates a new version of the ${entityType}`, light: true }" + }, + { + "name": "checked", + "type": "variable", + "value": "keepParent" + }, + { + "name": "label", + "type": "expression", + "value": "`I want to keep the ${entityType}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useCheckbox.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "checkboxName ?? \"customhookCheckbox\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationDomain" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationDomain" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.state" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.state" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.state" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.shared" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.shared" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.shared" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.brokerType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.brokerType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.brokerType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.eventMesh" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.eventMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "FilterType.applicationType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.applicationType" + }, + { + "name": "checked", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + FilterType.applicationType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "checked", + "type": "expression", + "value": "currentFilters.includes(filterType)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event: SolaceCheckboxChangeEvent) => handleAdditionalFilterChange(filterType, event.value)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "filterType" + }, + { + "name": "label", + "type": "expression", + "value": "renderCheckboxLabel(customAttributes[0].name)" + }, + { + "name": "checked", + "type": "expression", + "value": "!!selectedFilters.find((filter) => filter.type === filterType)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa + \"-\" + filterType" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleFilterChange(filterType, customAttributes[0].name, event.value, filterTypeToCustomAttributes)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "broker" + }, + { + "name": "label", + "type": "string", + "value": "Broker" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!brokerEnabled && !toDisableBrokerScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover consumer groups and topics.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableBrokerScan()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/CustomDiscoveryScanDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "confluentSchemaRegistry" + }, + { + "name": "label", + "type": "string", + "value": "Confluent Schema Registry" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSchemaRegistryOnChange" + }, + { + "name": "checked", + "type": "expression", + "value": "!!schemaRegistryEnabled && !toDisableSchemaRegistryScan()" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: \"Discover schemas from Confluent.\",\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "toDisableSchemaRegistryScan()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "Show only the modeled event meshes I can access" + }, + { + "name": "name", + "type": "string", + "value": "Filter By Access" + }, + { + "name": "checked", + "type": "variable", + "value": "filterByAccess" + }, + { + "name": "onChange", + "type": "variable", + "value": "toggleFilterByAccessOnChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ConfirmTagAssociationDialog.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"dontShowConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Don't show this message again.`" + }, + { + "name": "checked", + "type": "expression", + "value": "!showDialogAgain" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dontShowConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowDialogAgain(!event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/TagsQuickActions.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"requiredConfirmBoxCheckbox\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Require confirmation\"" + }, + { + "name": "checked", + "type": "variable", + "value": "showConfirmDialogBox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"requiredConfirmBox-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleRequireConfirmCheckbox(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"hideAuditResults\"" + }, + { + "name": "label", + "type": "expression", + "value": "`Display all hidden objects (${hiddenAuditResultCount ?? 0}) in the audit result.`" + }, + { + "name": "checked", + "type": "expression", + "value": "showHiddenAudits !== \"false\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"hideAuditResults-checkbox\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleHideTagCheckbox(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/CreateNewVersionDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`checkDomain-${item.id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e: SolaceCheckboxChangeEvent) => onCheck(item, e.value)" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"selectAllDomains\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"selectAllDomainsCheckbox\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "onAllDomainsCheck" + }, + { + "name": "checked", + "type": "variable", + "value": "isChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "isChecked && selectedDomainIds.length !== items.length" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumeration[shared]" + }, + { + "name": "label", + "type": "string", + "value": "Allow Enumeration to be shared across application domains" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "`Allow ${entityTypeToLabelLowercase(entityType)} to be shared across application domains`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[shared]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.name" + }, + { + "name": "name", + "type": "expression", + "value": "option.name" + }, + { + "name": "checked", + "type": "expression", + "value": "namingStrategy[option.name]" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNamingStrategyChange" + }, + { + "name": "dataQa", + "type": "expression", + "value": "option.name" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApi[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.sharedCheckbox" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventApiProduct[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/SuggestedEvents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetOnlyShowEventsWithoutSubscription(e.value);\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "onlyShowEventsWithoutSubscription" + }, + { + "name": "label", + "type": "string", + "value": "Show events without a consumer subscription" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tsetTopicDomainEnforcement(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "disabled", + "type": "expression", + "value": "!value && !hasValidTopicDomain" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[uniqueTopicAddressEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.uniqueTopicAddressEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"uniqueTopicAddressEnforcementEnabled\"" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must be unique\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[topicDomainEnforcementEnabled]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.topicDomainEnforcementEnabled" + }, + { + "name": "dataQa", + "type": "string", + "value": "topicDomainEnforcementEnabled" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t\t\tAll topic addresses within this application domain must use a topic domain\n\t\t\t\t\t\t\t\t\t\t" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainDetails.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"applicationDomain[nonDraftDescriptionsEditable]\"" + }, + { + "name": "checked", + "type": "expression", + "value": "domainValues?.nonDraftDescriptionsEditable" + }, + { + "name": "dataQa", + "type": "string", + "value": "nonDraftDescriptionsEditable" + }, + { + "name": "label", + "type": "jsx", + "value": "Allow object descriptions to be editable in all lifecyle states" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\tonSharedChange?.(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "disabled", + "type": "variable", + "value": "sharedSchema" + }, + { + "name": "label", + "type": "string", + "value": "Allow schema to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schema[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\thandleSharedChanged(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "label", + "type": "string", + "value": "Allow event to be shared across application domains" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"event[shared]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "subscribeToEvent" + }, + { + "name": "label", + "type": "string", + "value": "Subscribe to Event" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/QuickCreateEvent.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tif (eventFlowError) {\n\t\t\t\t\t\t\t\t\t\t\t\tsetEventFlowError(null);\n\t\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "expression", + "value": "value || false" + }, + { + "name": "dataQa", + "type": "string", + "value": "publishEvent" + }, + { + "name": "label", + "type": "string", + "value": "Publish Event" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!eventFlowError" + }, + { + "name": "helperText", + "type": "variable", + "value": "eventFlowError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "filter.value" + }, + { + "name": "name", + "type": "expression", + "value": "filter.name" + }, + { + "name": "checked", + "type": "expression", + "value": "filtersMap[application?.id]?.[filter.value]" + }, + { + "name": "label", + "type": "expression", + "value": "filter.name" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleFilterChipClick(filter.value, !filtersMap[application?.id]?.[filter.value])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`environment-filters-${filter.value}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"doNotShowAgain\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Do not show this warning again\"" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloseInfoMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => props.onChange(e.value)" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "checked", + "type": "expression", + "value": "props.value" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomCheckBox.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_manager\", message: \"Rotate Mission Control Manager permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_manager" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"manager\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleManagerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_manager" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_editor\", message: \"Rotate Mission Control Editor permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_editor" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"admin\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEditorChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_editor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/RotatePasswordsCard.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mc_viewer\", message: \"Rotate Mission Control Viewer permissions\" })" + }, + { + "name": "name", + "type": "string", + "value": "mc_viewer" + }, + { + "name": "checked", + "type": "expression", + "value": "usernames.includes(\"viewer\")" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleViewerChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "checkbox_mc_viewer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showMyServices" + }, + { + "name": "name", + "type": "string", + "value": "showMyServices" + }, + { + "name": "dataQa", + "type": "string", + "value": "services-show-mine" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_only_my_services\", message: \"Only show my services\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "userOnly" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetUserOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showDiffs" + }, + { + "name": "name", + "type": "string", + "value": "showDiffs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_differences\", message: \"Show only differences\" })" + }, + { + "name": "checked", + "type": "variable", + "value": "showDiffs" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowDiffs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldMateLinkEncryption.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "name", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "dataQa", + "type": "string", + "value": "mateLinkEncryption" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_mate_link_label\", message: \"Enable mate-link encryption\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: t({ id: \"id_mate_link_text\", message: \"This will encrypt the communication between the primary and backup brokers in a HA setup.\" }),\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldCloneCertificateAuth.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "name", + "type": "string", + "value": "cloneCertificateAuthorities" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_clone_cert_auth\", message: \"Duplicate all Client and Domain Certificate Authorities\" })" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: This will copy all certificates existing on the source event broker service to the new event broker service.,\n\t\t\t\t\tlight: true\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldPort.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "name", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "dataQa", + "type": "variable", + "value": "nameCheck" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{isNodePortEnabled ? `Enable ${meta.label}` : t({ id: \"id_port_label\", message: `Enable ${meta.label}, use port:` })}\n\t\t\t\t\t\t" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "checked", + "type": "expression", + "value": "!disabled" + }, + { + "name": "readOnly", + "type": "expression", + "value": "checkboxDisabled || !isPortDisablingEnabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolToggle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/DeleteEnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmDeleteEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleConfirmDelete" + }, + { + "name": "checked", + "type": "variable", + "value": "confirmDelete" + }, + { + "name": "dataQa", + "type": "string", + "value": "confirmDeleteCheckbox" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDeleting" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ASEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.confirmASEnvironment" + }, + { + "name": "name", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCheckboxChange" + }, + { + "name": "checked", + "type": "variable", + "value": "isServiceCreationAllowed" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceCreationCheckbox" + }, + { + "name": "disabled", + "type": "expression", + "value": "isError || dialogState.updating" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/RuntimeConfigurationTemplatesDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "templateType" + }, + { + "name": "name", + "type": "variable", + "value": "templateType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${templateType}Checkbox`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{environments.configurationTemplates[templateType].label}\n\t\t\t\t\t\t" + }, + { + "name": "onChange", + "type": "variable", + "value": "updateTemplateTypeEnforcement" + }, + { + "name": "checked", + "type": "expression", + "value": "templateStatus.isEnforced" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceOutage\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceOutageConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceOutage\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"serviceMaintenance\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "name", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceMaintenanceConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"serviceMaintenance\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessApprover\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessApproverConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessApprover\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings[\"scEpEventAccessRequestor\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "name", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scEpEventAccessRequestorConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scEpEventAccessRequestor\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].email : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "name", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"scInfo\"].console : false" + }, + { + "name": "id", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "name", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "dataQa", + "type": "string", + "value": "scInfoConsole" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"scInfo\", \"console\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "savedSettings ? savedSettings?.[\"marketing\"]?.email : false" + }, + { + "name": "id", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "name", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "dataQa", + "type": "string", + "value": "marketingEmail" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => updateNotifyPreferences(\"marketing\", \"email\", value.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.jitProvisionMainText}\n\t\t\t\t\t\t{userGroupManagement.jitProvisionSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "jitProvisionCheckboxId" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsJitProvisioningChecked(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "checked", + "type": "variable", + "value": "isJitProvisioningChecked" + }, + { + "name": "title", + "type": "string", + "value": "Enable Just-in-Time provisioning" + }, + { + "name": "dataQa", + "type": "string", + "value": "jitProvisionCheckboxId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "id", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{userGroupManagement.customizeGroupMainText}\n\t\t\t\t\t\t{userGroupManagement.customizeGroupSubText}\n\t\t\t\t\t" + }, + { + "name": "name", + "type": "string", + "value": "customizeDefaultUserGroupCheckboxId" + }, + { + "name": "checked", + "type": "variable", + "value": "isCustomizeUserGroupChecked" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => customizeDefaultUserGroupCheck(e.value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\tlabel: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{isCustomizeUserGroupChecked ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\titemMappingCallback={(option) => option}\n\t\t\t\t\t\t\t\t\toptionsLabelCallback={getSolaceSelectAutocompleteOptionLabel}\n\t\t\t\t\t\t\t\t\tonChange={handleUserGroupSelectChange}\n\t\t\t\t\t\t\t\t\tfetchOptionsCallback={handleFetchProtocolOptionsCallback}\n\t\t\t\t\t\t\t\t\tisOptionEqualToValueCallback={isSolaceSelectAutocompleteOptionEqual}\n\t\t\t\t\t\t\t\t\twidth=\"30rem\"\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t) : null}\n\t\t\t\t\t\t\n\t\t\t\t\t)\n\t\t\t\t}" + }, + { + "name": "title", + "type": "string", + "value": "Customize Default UserGroup" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventMesh" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventMeshFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventMesh" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.eventPortal" + }, + { + "name": "name", + "type": "string", + "value": "eventPortalCheckbox" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setIsEventPortalFeatureChecked(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.eventPortal" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onPermissionCheckboxChange(permission.id)" + }, + { + "name": "name", + "type": "expression", + "value": "permission.id" + }, + { + "name": "checked", + "type": "expression", + "value": "!!isPermissionSelected[permission.id]" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "dataQa", + "type": "expression", + "value": "permission.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(readPermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-read`" + }, + { + "name": "checked", + "type": "variable", + "value": "readChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!readChecked && readIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "onChange", + "type": "expression", + "value": "onBulkPermissionCheckboxChange(writePermissions)" + }, + { + "name": "name", + "type": "expression", + "value": "`${categoryName}-write`" + }, + { + "name": "checked", + "type": "variable", + "value": "writeChecked" + }, + { + "name": "indeterminate", + "type": "expression", + "value": "!writeChecked && writeIndeterminate" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerDetailsOrgLimits.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "hideUnusedLimitsRows" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setHideUnusedLimitsRows((state) => !state)" + }, + { + "name": "name", + "type": "expression", + "value": "customers.orgLimitsCard.hideUnusedLimit" + }, + { + "name": "title", + "type": "expression", + "value": "customers.orgLimitsCard.hideUnusedLimit" + }, + { + "name": "data-qa", + "type": "string", + "value": "hideUnusedLimitsCheckboxQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "() => field.onChange(!field.value)" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Datadog Monitoring Enabled Checkbox" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Datadog Monitoring Enabled" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Agent (Enabled/Disabled) when creating new services\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoringEnabledCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "() => field.onChange(!field.value)" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Datadog Monitoring Proxy Enabled Checkbox" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Datadog Monitoring Proxy Enabled" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tlabel: \"Default for Datadog Monitoring Proxy server (Enabled/Disabled) for services\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "monitoringProxyEnabledCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringConfigurations.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tsetValue(\"PullDatadogAgentImage\", e.value);\n\t\t\t\t\t\t\t\t\tfield.onChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Pull Datadog Agent Image" + }, + { + "name": "boldLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Pull Datadog Agent Image" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tlabel: \"Forces docker to pull latest datadog-agent image\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "PullDatadogAgentImageCheckbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\trow[propertyName] = !row[propertyName];\n\t\t\t\t}" + }, + { + "name": "name", + "type": "variable", + "value": "propertyName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "indeterminate", + "type": "variable", + "value": "indeterminate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "field.value" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\tfield.onChange(!field.value);\n\t\t\t\t\t\t\t\t\t\t// update button should only show if there is a change in rmms status\n\t\t\t\t\t\t\t\t\t\tsetShowRMMSUpdateButton(\n\t\t\t\t\t\t\t\t\t\t\tddOrgData?.apiKey !== undefined && getValues(\"rmmsManaged\") !== monitoringOrgData?.isRMMS\n\t\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "name", + "type": "expression", + "value": "field.name" + }, + { + "name": "title", + "type": "string", + "value": "Managed by RMMS Checkbox" + }, + { + "name": "largeLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "string", + "value": "Managed by RMMS" + }, + { + "name": "dataQa", + "type": "string", + "value": "rmmsManaged" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "Automated Upgrades" + }, + { + "name": "label", + "type": "string", + "value": "Automated Upgrades" + }, + { + "name": "checked", + "type": "variable", + "value": "autoChecked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/SystemControls.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "Customer Upgrades" + }, + { + "name": "label", + "type": "string", + "value": "Customer Upgrades" + }, + { + "name": "checked", + "type": "variable", + "value": "customerChecked" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "hideCompletedRuns" + }, + { + "name": "checked", + "type": "variable", + "value": "hideCompletedRuns" + }, + { + "name": "dataQa", + "type": "string", + "value": "hide-completed-runs" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleToggleHideCompletedRuns()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "all" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.all" + }, + { + "name": "checked", + "type": "expression", + "value": "infra && orgs && services && users" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-all-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "infrastructure" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.infra" + }, + { + "name": "checked", + "type": "variable", + "value": "infra" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-infra-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "organization" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.orgs" + }, + { + "name": "checked", + "type": "variable", + "value": "orgs" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-orgs-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "service" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.services" + }, + { + "name": "checked", + "type": "variable", + "value": "services" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-services-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "user" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.types.users" + }, + { + "name": "checked", + "type": "variable", + "value": "users" + }, + { + "name": "onChange", + "type": "variable", + "value": "searchIndicesChangeHandler" + }, + { + "name": "dataQa", + "type": "string", + "value": "search-users-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "useGlobalSearch" + }, + { + "name": "label", + "type": "expression", + "value": "searchStr.searchArea.useGlobalSearch" + }, + { + "name": "checked", + "type": "variable", + "value": "globalSearchEnabled" + }, + { + "name": "onChange", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tonGlobalSearchChange(!globalSearchEnabled);\n\t\t\t\t\t\t\t\tsetGlobalSearchEnabled(!globalSearchEnabled);\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "enable-global-search-checkbox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/RequestSection.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requestCheckbox" + }, + { + "name": "label", + "type": "expression", + "value": "createBizOrganization.requests.checkBoxLabel" + }, + { + "name": "name", + "type": "string", + "value": "requestCheckbox" + }, + { + "name": "data-qa", + "type": "string", + "value": "requestCheckboxQa" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setIsAdvancedInsightsChecked(value)" + }, + { + "name": "subTextProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tlabel: `${createBizOrganization.requests.productCode}`,\n\t\t\t\t\t\tlight: true\n\t\t\t\t\t}" + }, + { + "name": "title", + "type": "expression", + "value": "createBizOrganization.requests.checkBoxTitle" + }, + { + "name": "disabled", + "type": "variable", + "value": "isFieldReadOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/reviewDialog/ReviewDialog.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "isAdvancedInsightSelected ? true : false" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "jsx", + "value": "{createBizOrganization.requests.checkBoxLabel}" + }, + { + "name": "name", + "type": "string", + "value": "advInsights" + }, + { + "name": "title", + "type": "string", + "value": "Advanced Insights Checkbox" + } + ] + } + ] + }, + { + "component": "SolaceTabs", + "count": 38, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/messagingService/EventBrokerDialogTab.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityDetails/EntityConfigSidePanel.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "tabProps" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/header/TopologyHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabArray" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/header/CatalogHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "selectedTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.mostReused}`, value: \"mostUsed\" },\n\t\t\t\t\t\t\t\t\t\t{ label: `${en.kpiMetricsDashboard.reuseFilter.leastReused}`, value: \"leastused\" }\n\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => handleTabClick(tab)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraph.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "brokerTypeOptions" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "addObjectsActiveTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleAddObjectTabClick" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tabValue) => setActiveTab(tabValue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventFlowConfig.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "actionTabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleActionTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationVersionDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/header/DomainHeader.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeEntityType" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorSummary.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "tabs", + "type": "expression", + "value": "tabs(setActiveTab, showMiTransformation, showGaMiTransformation)" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LibraryDialog.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeStep" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setActiveStep" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t{ value: \"1\", label: t({ id: \"id_get_api\", message: \"1. Get API\" }) },\n\t\t\t\t\t{ value: \"2\", label: t({ id: \"id_connect_service\", message: \"2. Connect to Service\" }) },\n\t\t\t\t\t{ value: \"3\", label: t({ id: \"id_learn_more\", message: \"3. Learn with Tutorials\" }) }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "certType" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "setCertType" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t{ value: \"client\", label: t({ id: \"id_client_cert_auths\", message: \"Client Certificate Authorities\" }) },\n\t\t\t\t\t\t\t\t\t{ value: \"domain\", label: t({ id: \"id_domain_cert_auths\", message: \"Domain Certificate Authorities\" }) }\n\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{ label: t({ id: \"id_status\", message: \"Status\" }), value: \"status\" },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_connect\", message: \"Connect\" }), value: \"connect\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_manage\", message: \"Manage\" }), value: \"manage\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_monitoring\", message: \"Monitoring\" }), value: \"monitoring\", disabled: areTabsDisabled },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_configuration\", message: \"Configuration\" }), value: \"configuration\", disabled: isInProgress },\n\t\t\t\t\t\t\t{ label: t({ id: \"id_tryme\", message: \"Try Me!\" }), value: \"tryme\", disabled: areTabsDisabled }\n\t\t\t\t\t\t]" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(value) => {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "variant", + "type": "string", + "value": "scrollable" + }, + { + "name": "tabs", + "type": "variable", + "value": "TABS" + }, + { + "name": "size", + "type": "string", + "value": "md" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "activeTabValue", + "type": "variable", + "value": "tab" + }, + { + "name": "tabs", + "type": "array", + "value": "[\n { label: \"Datacenters\", value: \"datacenters\" },\n { label: \"Preupgrade Validation\", value: \"preupgrade-validation\" },\n { label: \"System Components\", value: \"system-components\" },\n { label: \"Network\", value: \"network\" },\n { label: \"Services\", value: \"services\" },\n ]" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => history.push(`/clusters/${clusterId}/${tab}`)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgents.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(value) => setActiveTab(value as EMA_TYPES)" + }, + { + "name": "size", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "variable", + "value": "handleTabChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab as MonitoringTabs)" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "wanTuningFeaturesTabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTabFeature" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTabFeature(tab as WanTuningFeatures)" + }, + { + "name": "variant", + "type": "string", + "value": "fullWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "tabs", + "type": "variable", + "value": "tabs" + }, + { + "name": "activeTabValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onTabClick", + "type": "function", + "value": "(tab) => setActiveTab(tab)" + }, + { + "name": "size", + "type": "string", + "value": "md" + } + ] + } + ] + }, + { + "component": "SolaceMenu", + "count": 68, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/topology/MessagingServiceDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Add Protocol\"\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "solaceAddProtocolMenuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkActions.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\tisDisabled: isEmpty(selectedRowIds),\n\t\t\t\t\t\t\tdataQa: \"selectedEntityActions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: en.eventPortalResources.labels.deleteSample.actionMenuTitle\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "getMenuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"versionMoreAction\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "wrappedMenuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/EventDetailModalHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: \"eventDetailModalMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityDetailsHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"moreActionMenuButton\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/details/EntityVersionEditContainer.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tdataQa: \"versionDetailMoreAction\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsForEntityDetail()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\t\t\t\tisDisabled: graphEmpty,\n\t\t\t\t\t\t\t\tdataQa: `${dataQa ? dataQa + \"-\" : \"\"}graphSettings-button`\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "settingsMenuItemsProps" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "true" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\t\t\t\thorizontal: \"left\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}graphSettings-menu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/ManageFiltersMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"text\",\n\t\t\t\tchildren: \"Add Filters\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "filterMenuItems" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "9" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EventApiItems.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/TopicDomainListItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: actionMenuDataQa ?? \"accordionMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\tchildren: \"Set Up Event Management Agent\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScanButton.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getRunDiscoveryScanOptionsItems()" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: variant,\n\t\t\t\t\t\tchildren: \"Run Discovery Scan\",\n\t\t\t\t\t\tdataQa: \"runDiscoveryScan\",\n\t\t\t\t\t\tisDisabled:\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.KAFKA_ALL) &&\n\t\t\t\t\t\t\thasScanInProgress(newScans, selectedMessagingService?.id, SCAN_TYPE.CONFLUENT_SCHEMA_REGISTRY_SCHEMA)\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"left\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"left\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"messagingServicesDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServicesDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`messagingService_${entity.id}-moreActions`" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMessagingServiceDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "expression", + "value": "getMoreOptionsItemsForMessagingService(entity, true)" + }, + { + "name": "dataQa", + "type": "string", + "value": "memMessagingServiceDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"messagingServiceMoreActionsButton\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"View Event Management Agent\",\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewRuntimeAgent(e, agent),\n\t\t\t\t\t\t\tdataQa: \"viewRuntimeAgentActionMenu\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"runtimeAgentMoreActionsButton\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "createEventManagementAgent" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: \"Connect to an Event Management Agent\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "CREATE_MENU_ITEMS" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"Settings\",\n\t\t\t\t\tdataQa: dataQa + \"-button\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getMenuItemsProps()" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"bottom\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{\n\t\t\t\t\tvertical: \"top\",\n\t\t\t\t\thorizontal: \"right\"\n\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa}-menu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/renderBulkAction.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"custom-solace-menu\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "actionMenuForEntityVersionList" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: numberOfSelection === 0,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: \"Actions\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/ModeledEventMeshes.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"memMoreActions\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshGraph.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"moreActions\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tdataQa: \"memDetailsMoreAction\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "memDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AuditImportMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tvariant: buttonVariant || \"outline\",\n\t\t\t\t\t\t\tchildren: buttonText || \"Import\",\n\t\t\t\t\t\t\tisDisabled: disabled,\n\t\t\t\t\t\t\tdataQa: \"chooseImportOptionButton\"\n\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "readyForCalculation ? importButtonRef.current.offsetWidth - 6 : undefined" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"auditImportMenu\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DesignerActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tdataQa: \"designerMoreAction\",\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\tisDisabled: !isChecked,\n\t\t\t\t\t\tdataQa: \"selectedDomainsActions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: \"Export\",\n\t\t\t\t\t\t\tonMenuItemClick: () => onExport(selectedDomainIds),\n\t\t\t\t\t\t\tdataQa: \"selectedDomainsExport\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainActionMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tchildren: ,\n\t\t\t\tdataQa: \"domainMoreAction\",\n\t\t\t\ttitle: \"More Actions\"\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainMoreActionMenu" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/CommonDetails.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tdataQa: `${selectedNode?.type ?? \"\"}NodeSidePanelMoreAction`,\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${selectedNode?.type ?? \"\"}NodeSidePanelMoreActionMenu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"appDomainEntityVersionDetailsMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "actionMenuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "appDomainEntityVersionDetailsMoreActionMenu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.eventApiProduct.buttons.openEventApiProduct,\n\t\t\t\t\t\t\tonMenuItemClick: (e) => handleViewVersionDetail(e, item, false)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\ttitle: en.common.button.moreActions,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\tdataQa: \"memListMoreAction\"\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "\"createApplication-menu\"" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: createLabel,\n\t\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\tdataQa: \"createApplication-button\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.standard,\n\t\t\t\t\t\t\tonMenuItemClick: handleCreate,\n\t\t\t\t\t\t\tdataQa: \"createStandardApplication\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: en.application.applicationType.restDeliveryPoint,\n\t\t\t\t\t\t\tonMenuItemClick: (event) => handleCreate(event, EntitySubType.restDeliveryPoint),\n\t\t\t\t\t\t\tdataQa: \"createRestDeliveryPointApplication\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domainEdit/DomainEdit.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"moreActionsButton\",\n\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\tdataQa: `${eventBroker.id}-moreOptionMenuButton`,\n\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\ttitle: common.button.moreActions\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "items", + "type": "variable", + "value": "moreOptions" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${eventBroker.id}-moreOptionMenu`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useApplicationFlow.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: \"accordionMoreAction\",\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More Actions\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "expression", + "value": "getVersionDetailMenuItem(version, mode)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "actionitems" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/utils/RenderActions.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tisDisabled: selectedCount < minimalCount,\n\t\t\t\t\tendIcon: (\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t),\n\t\t\t\t\tchildren: t({ id: \"id_actions\", message: \"Actions\" })\n\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`${eventMesh.id}_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_event_mesh_details\", message: \"Event Mesh Details\" }),\n\t\t\t\t\t\t\t\tonMenuItemClick: () => history.push(`/mesh-manager/${eventMesh.id}`),\n\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\tdisabled: !hasWriteAccess\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/components/LibraryHeader.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: t({ id: \"id_download\", message: \"Download\" }),\n\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\t\tdataQa: \"download\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "string", + "value": "download" + }, + { + "name": "items", + "type": "expression", + "value": "links.download.map((dw) => ({\n\t\t\t\t\t\t\tname: dw.name,\n\t\t\t\t\t\t\tonMenuItemClick: () => openLink(dw.url)\n\t\t\t\t\t\t}))" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"actions\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-edit\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleEdit(idx)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\tdataQa: \"ldap-groups-menu-delete\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: handleDelete(idx)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_set_as_default\", message: \"Set as Default\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-set-default\",\n\t\t\t\t\t\t\t\t\t\tdisabled: !item.canSetAsDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tchangeHostnameDefaultMutation.mutate(item.name);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Move\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-move\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\tsetShowMoveDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_copy_clipboard\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tdisabled: item.isLocked || item.isDefault || !!isInProgress,\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetShowDeleteDialog(item);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_move\", message: \"Copy to Clipboard\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"hostnames-menu-copy-cliboard\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tcopy(item.name).then((isSuccess) => {\n\t\t\t\t\t\t\t\t\t\t\t\tif (isSuccess) {\n\t\t\t\t\t\t\t\t\t\t\t\t\taddToast(t({ id: \"id_copied\", message: \"Copied\" }));\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "actions" + }, + { + "name": "id", + "type": "expression", + "value": "`public_actions`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => handleEditEndpoint(index)\n\t\t\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tdisabled: connectionEndpoints.length === 1 || isDefault || !allowServiceQueries,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setShowDeleteDialog(endpoint)\n\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "canConfigure\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_edit\", message: \"Edit\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-edit\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-delete\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\tdataQa: \"syslog-config-menu-view\",\n\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\tsetResetFields(item);\n\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"left\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "expression", + "value": "certType === \"client\"\n\t\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\t\t\t\t\tsetAddMode(false);\n\t\t\t\t\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tdisabled: !canConfigure,\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t\t: [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index),\n\t\t\t\t\t\t\t\t\t\t\tdisabled: index === 0 || !canConfigure\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t ]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tdataQa: `actions[${index}]`\n\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`cp_${index}-actions-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: canConfigure ? t({ id: \"id_edit\", message: \"Edit\" }) : t({ id: \"id_view\", message: \"View\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-edit\",\n\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\tsetResetFields();\n\t\t\t\t\t\t\t\tsetFetchName(item.name);\n\t\t\t\t\t\t\t\tsetShowDialogIndex(index);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: t({ id: \"id_delete\", message: \"Delete\" }),\n\t\t\t\t\t\t\tdataQa: \"client-profile-menu-delete\",\n\t\t\t\t\t\t\tdisabled: item.id === DEFAULT_PROFILE || !canConfigure,\n\t\t\t\t\t\t\tonMenuItemClick: () => setDeleteIndex(index)\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_actions\", message: \"Actions\" }),\n\t\t\t\tvariant: \"icon\",\n\t\t\t\tdataQa: \"actions\",\n\t\t\t\tonClick: handleMenuClick\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "`${service.id}_actions`" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\tchildren: ,\n\t\t\t\ttitle: t({ id: \"id_sort\", message: \"Sort\" }),\n\t\t\t\tvariant: \"icon\"\n\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "sort" + }, + { + "name": "id", + "type": "string", + "value": "sort" + }, + { + "name": "items", + "type": "variable", + "value": "items" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: messages.updateButton,\n\t\t\t\t\tvariant: \"outline\",\n\t\t\t\t\tchildren: messages.updateButton,\n\t\t\t\t\tisDisabled: isDisabled,\n\t\t\t\t\tdataQa: \"addUserAccess\"\n\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUserGroup,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.userGroup),\n\t\t\t\t\t\tdataQa: \"addUserGroup\"\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tname: messages.addUser,\n\t\t\t\t\t\tonMenuItemClick: () => onAddResourceAssignment(UserType.user),\n\t\t\t\t\t\tdataQa: \"addUser\"\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\t\t\tendIcon: ,\n\t\t\t\t\t\t\t\tchildren: \"Actions\",\n\t\t\t\t\t\t\t\tisDisabled: updateBrokerLoading || !selectedBroker || selectedBroker.currentState === \"unsupported\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "items", + "type": "variable", + "value": "actionItems" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.requestLimitChange,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetNewServiceLimit(row.limit ?? 0);\n\t\t\t\t\t\t\t\t\t\tsetEditLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "dataQa", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "id", + "type": "string", + "value": "msg-spool-menu" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tname: en.serviceLimits.buttons.viewDetails,\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => {\n\t\t\t\t\t\t\t\t\t\tsetViewLimitsRow(row);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: `${environmentsStr.environmentList.moreActionLabel}`,\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: ,\n\t\t\t\t\tdataQa: \"environmentMoreActions\"\n\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ vertical: \"bottom\", horizontal: \"right\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ vertical: \"top\", horizontal: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMappingsActionsRowItem.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\tvariant: \"icon\"\n\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "dataTags", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingActions" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.edit,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => editClaimMappingHandler(rowData.id, rowData.claimValues, rowData.userGroups),\n\t\t\t\t\t\t\t\tdisabled: groupMappingState\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tname: userGroupManagement.remove,\n\t\t\t\t\t\t\t\tonMenuItemClick: () => removeClaimMappingHandler(rowData.id)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t]" + }, + { + "name": "numOfMenuItemDisplayed", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokensAccordion.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\tdataQa: `${token.name}-menu`,\n\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\ttitle: \"More\"\n\t\t\t\t\t}" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `View Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onViewToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-view`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Regenerate Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onRegenerateToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-regenerate`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tname: `Delete Token`,\n\t\t\t\t\t\t\tonMenuItemClick: onDeleteToken,\n\t\t\t\t\t\t\tdataQa: `${token.name}-delete`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${item.serviceId}-menu`" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tname: (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\tService Details\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t),\n\t\t\t\t\t\tonMenuItemClick: () => window.open(`/services/${item.serviceId}`, \"_blank\")?.focus()\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\ttitle: \"More Actions\",\n\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\tchildren: \n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "actionMenuItems()" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{\n variant: \"icon\",\n title: \"Actions\",\n dataQa: \"clusterDetailsActionMenuButton\",\n children: ,\n }" + }, + { + "name": "key", + "type": "string", + "value": "cloudProviderLink" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMenu" + }, + { + "name": "buttonProps", + "type": "object", + "value": "{ variant: \"icon\", children: , dataQa: \"filter\" }" + }, + { + "name": "closeOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "items", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PREVIEW) ? Preview : \"Preview\",\n\t\t\t\t\t\t\t\t\tdataQa: \"preview\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PREVIEW)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.PRODUCTION) ? Production : \"Production\",\n\t\t\t\t\t\t\t\t\tdataQa: \"production\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.PRODUCTION)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.LTS) ? LTS : \"LTS\",\n\t\t\t\t\t\t\t\t\tdataQa: \"lts\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.LTS)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.ROLLING) ? Rolling : \"Rolling\",\n\t\t\t\t\t\t\t\t\tdataQa: \"rolling\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ROLLING)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Channel\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.DECLINED) ? Declined : \"Declined\",\n\t\t\t\t\t\t\t\t\tdataQa: \"declined\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.DECLINED),\n\t\t\t\t\t\t\t\t\tdivider: true\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.RELEASED) ? Released : \"Released\",\n\t\t\t\t\t\t\t\t\tdataQa: \"released\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Status\",\n\t\t\t\t\t\t\t\t\tname: filters.includes(Filter.NOT_RELEASED) ? (\n\t\t\t\t\t\t\t\t\t\tNot Released\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\"Not Released\"\n\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdivider: true,\n\t\t\t\t\t\t\t\t\tdataQa: \"notReleased\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.NOT_RELEASED)\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tcategoryHeading: \"Views\",\n\t\t\t\t\t\t\t\t\tname:\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PRODUCTION) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.RELEASED) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.PREVIEW) &&\n\t\t\t\t\t\t\t\t\t\tfilters.includes(Filter.LTS) ? (\n\t\t\t\t\t\t\t\t\t\t\tActive\n\t\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\t\"Active\"\n\t\t\t\t\t\t\t\t\t\t),\n\t\t\t\t\t\t\t\t\tdataQa: \"active\",\n\t\t\t\t\t\t\t\t\tonMenuItemClick: () => modifyFilters().addFilter(Filter.ACTIVE)\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "buttonProps", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tchildren: ,\n\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t}" + }, + { + "name": "anchorOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"bottom\" }" + }, + { + "name": "transformOrigin", + "type": "object", + "value": "{ horizontal: \"right\", vertical: \"top\" }" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectors_additional_actions\"" + }, + { + "name": "items", + "type": "variable", + "value": "menuItems" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectors_additional_actions_menu" + } + ] + } + ] + }, + { + "component": "SolaceSelectAutocomplete", + "count": 48, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "name", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "modeledEventMesh[select]" + }, + { + "name": "label", + "type": "string", + "value": "Modeled Event Mesh" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEnvironmentId" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.eventMeshError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.eventMeshError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEventMeshes[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEventMeshSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/MessagingServiceAssociationForm.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "name", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[select]" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Broker\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "selectedEventMeshes.length === 0" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedMessagingServices[0]" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DeployToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "memAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedMessagingServiceId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "name", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "dataQa", + "type": "string", + "value": "eapAssociation[protocols]" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.supportedProtocols" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationError.protocolsError" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationError.protocolsError" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "expression", + "value": "!selectedEventApiProductVersionId" + }, + { + "name": "value", + "type": "variable", + "value": "selectedProtocols" + }, + { + "name": "options", + "type": "variable", + "value": "matchingProtocols" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleProtocolSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingService" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceAutocomplete" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService" + }, + { + "name": "label", + "type": "string", + "value": "Event Broker Context (optional)" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError.messagingServiceError ?? validationError.messagingServiceError" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError.messagingServiceError || !!validationError.messagingServiceError" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "options", + "type": "variable", + "value": "matchingMessagingServices" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleMessagingServiceSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchMessagingServiceOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeMultiValueEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "values" + }, + { + "name": "options", + "type": "variable", + "value": "matchingValues" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleOptionDisabledCallback" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "debouncedFetchOptionsCallback" + }, + { + "name": "shouldClearSearchOnSelectCallback", + "type": "variable", + "value": "shouldClearSearchOnSelectCallback" + }, + { + "name": "maxHeight", + "type": "string", + "value": "400px" + }, + { + "name": "validateInputCallback", + "type": "variable", + "value": "validateInputValue" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/topicAddress/ConfigVariableDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "enumeration" + }, + { + "name": "dataQa", + "type": "string", + "value": "enumerationName" + }, + { + "name": "label", + "type": "string", + "value": "Enumeration" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalEnums" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnumOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnumChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEnumOption" + }, + { + "name": "getOptionDisabledCallback", + "type": "expression", + "value": "sharedSearchCriteria ? handleOptionDisabled : undefined" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "sharedSearchCriteria ? \"You can associate only shared enumerations with shared events.\" : null" + }, + { + "name": "width", + "type": "string", + "value": "65%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationDomainSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationDomainSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ? title : \"Application Domain\"" + }, + { + "name": "inlineLabel", + "type": "variable", + "value": "inlineLabel" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationDomainChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationDomain" + }, + { + "name": "options", + "type": "variable", + "value": "matchingApplicationDomains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationDomainOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!readOnly" + }, + { + "name": "disabled", + "type": "boolean", + "value": "false" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "variable", + "value": "showHelperText" + }, + { + "name": "maxHeight", + "type": "string", + "value": "370px" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationDomainSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useApplicationVersionSelect.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationVersionSelect-search" + }, + { + "name": "label", + "type": "expression", + "value": "title ?? \"Application Version\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationVersionChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedApplicationVersions" + }, + { + "name": "options", + "type": "variable", + "value": "applicationVersionOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getApplicationVersionSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\tselectedApplicationVersions?.[0] && (\n\t\t\t\t\t{getApplicationVersionSelectAutocompleteItem(selectedApplicationVersions[0])}\n\t\t\t\t)" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchApplicationVersionOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isApplicationVersionSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.categoryHeading) ? getSolaceSelectAutocompleteGroupBy : undefined" + }, + { + "name": "showGroupDivider", + "type": "expression", + "value": "applicationVersionOptions.some((option) => option.divider) ? true : false" + }, + { + "name": "disableCloseOnSelect", + "type": "boolean", + "value": "false" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!selectQueryError" + }, + { + "name": "helperText", + "type": "expression", + "value": "selectQueryError || helperText || \"\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationVersionSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[filterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel.eventMesh" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedEventMeshes && debouncedSelectedEventMeshes.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select`" + }, + { + "name": "label", + "type": "jsx", + "value": "" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedOptions.length > 0 ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOptions" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "CustomAttributeValueAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getCustomAttributeValueOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowCustomAttributeValueOptionDivider" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeCustomAttributeValues" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchCustomAttributeValueOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isCustomAttributeValueOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\t\tdebouncedSelectedOptions &&\n\t\t\t\t\t\tdebouncedSelectedOptions.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\tfilterInputRefs.current[customAttributeFilterType] = input;\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "expression", + "value": "FilterTypeLabel[filterType]" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "filterLabel" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "name", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateEnvironmentAssociation" + }, + { + "name": "placeholder", + "type": "expression", + "value": "displayedEnvironments?.length ? \"\" : \"Select environments\"" + }, + { + "name": "required", + "type": "expression", + "value": "!!isRequired" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!!isReadOnly" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "displayedEnvironments" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEnvironments" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEnvironments" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "EnvironmentMultiSelectOption" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => {\n\t\t\t\t\treturn {\n\t\t\t\t\t\t...option,\n\t\t\t\t\t\tenvironmentOption: getEnvironmentChipObject(environmentOptions, option.id)\n\t\t\t\t\t};\n\t\t\t\t}" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEnvironmentsOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEnvironmentSelectAutocompleteOptionEqual" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "helperText" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tautocompleteRef.current = input;\n\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() =>\n\t\t\t\t\tdisplayedEnvironments?.length > 0 && (\n\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})}\n\t\t\t\t\t\t\tcolumnGap={8}\n\t\t\t\t\t\t\tshowAll={false}\n\t\t\t\t\t\t\tcontainerWidth={containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)}\n\t\t\t\t\t\t/>\n\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "shareFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.sharedFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedSharedType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredSharedTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShareFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterSharedTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "name", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "brokerFilterSelect" + }, + { + "name": "label", + "type": "expression", + "value": "en.kpiMetricsDashboard.brokerTypeFilter" + }, + { + "name": "value", + "type": "variable", + "value": "selectedBrokerType" + }, + { + "name": "options", + "type": "variable", + "value": "filteredBrokerTypeOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleBrokerTypeFilterChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterBrokerTypeOptions" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "175px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageSolaceQueueConfiguration.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameTemplate" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\tselectTemplate(templates.find((template) => template.id === e.value.value));\n\t\t\t\t\t\t\t\t\t\t\t\t// template changed - keep queue name, clear other properties\n\t\t\t\t\t\t\t\t\t\t\t\tupdateUserConfigValues({ queueName: queueName }, true);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\tresetTemplate();\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "isTemplateSelectionDisabled(templates, templateOutOfSync)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/ManageClientProfileName.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "FormNameClientProfileName" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "templateOptionSelected" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "updateTemplateOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "templateOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\n\t\t\t\t\t\t\t\t\t\t\tif (e.value?.value) {\n\t\t\t\t\t\t\t\t\t\t\t\t// template selected\n\t\t\t\t\t\t\t\t\t\t\t\tconst template = templates.find((template) => template.id === e.value?.value);\n\t\t\t\t\t\t\t\t\t\t\t\tconst clientProfileName = getClientProfileNameStringFromTemplateValue(template.value);\n\n\t\t\t\t\t\t\t\t\t\t\t\tsetTemplateOptionSelected({\n\t\t\t\t\t\t\t\t\t\t\t\t\tname: template.name,\n\t\t\t\t\t\t\t\t\t\t\t\t\tvalue: template.id,\n\t\t\t\t\t\t\t\t\t\t\t\t\tdescription: template.description,\n\t\t\t\t\t\t\t\t\t\t\t\t\tclientProfileName: clientProfileName\n\t\t\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t\t\t\tsetObservedConfiguration(clientProfileName);\n\t\t\t\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\t\t\t\t// template cleared\n\t\t\t\t\t\t\t\t\t\t\t\treset(true);\n\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "disabled", + "type": "expression", + "value": "templates.length === 0" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "options", + "type": "expression", + "value": "getAutoCompleteOptions(level)" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterValues" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "value", + "type": "expression", + "value": "getAutoCompleteValue(value, level, name)" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "minWidth", + "type": "string", + "value": "622px" + }, + { + "name": "limitTags", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApiProduct.labels.messagingService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchMems" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? en.eventApi.error.requiredGatewayMessagingService : null" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "width", + "type": "string", + "value": "621px" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "name", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "requestorSelect" + }, + { + "name": "label", + "type": "string", + "value": "Requestor" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedRequestors?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedRequestors" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "function", + "value": "(option) => option.name" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleRequestorChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option.value === value.value" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\t\t\t\t\t\t\t\trequestorInputRef.current = input;\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{debouncedSelectedRequestors && debouncedSelectedRequestors.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "searchLocalDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "name", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainsSearch" + }, + { + "name": "placeholder", + "type": "string", + "value": "All Domains" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchDomains" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "variable", + "value": "matchingDomainOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onDomainSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomain" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "name", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventMeshSearch" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedEventMeshes?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventMeshes" + }, + { + "name": "options", + "type": "variable", + "value": "matchingEventMeshes" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "getEventMeshSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getEventMeshSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChangeEventMeshes" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchEventMeshOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isEventMeshSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t\t\t\t<>\n\t\t\t\t\t\t\t\t\t{selectedEventMeshes?.length > 0 && (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "name", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedItemValues?.length ? \"\" : \"No Filters\"" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedItemValues" + }, + { + "name": "options", + "type": "variable", + "value": "matchingOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "renderTags", + "type": "function", + "value": "() => (\n\t\t\t\t\t<>\n\t\t\t\t\t\t{debouncedSelectedItemValues && debouncedSelectedItemValues.length > 0 && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)}\n\t\t\t\t\t\n\t\t\t\t)" + }, + { + "name": "openOnFocus", + "type": "boolean", + "value": "true" + }, + { + "name": "inputRef", + "type": "function", + "value": "(input) => {\n\t\t\t\t\tfilterInputRef.current = input;\n\t\t\t\t}" + }, + { + "name": "maxHeight", + "type": "string", + "value": "22rem" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "id", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceSearch" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.eventBrokerService" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchServices" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "options", + "type": "expression", + "value": "showMIEnvironmentsFlag ? getOptionsForEnv : getOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "onServiceSelectChange" + }, + { + "name": "value", + "type": "variable", + "value": "selectedService" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "validationEnabled && !!solaceValidationErrors.eventBrokerService" + }, + { + "name": "helperText", + "type": "expression", + "value": "validationEnabled && solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t? solaceValidationErrors.eventBrokerService\n\t\t\t\t\t\t\t\t\t: en.connectors.helperText.serviceName" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === \"no_services\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "80%" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "id", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`transformationAutocomplete_${nodeId}`" + }, + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.transformation" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "value", + "type": "expression", + "value": "selectedTransformationFunction || undefined" + }, + { + "name": "options", + "type": "variable", + "value": "matchingTransformationFunctions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleTransformationFunctionChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/SelectFieldNode.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`autocomplete-${id}`" + }, + { + "name": "label", + "type": "expression", + "value": "typeof data.label === \"string\"\n\t\t\t\t\t\t\t\t? data.label\n\t\t\t\t\t\t\t\t: data.type === \"input\"\n\t\t\t\t\t\t\t\t? (en.transformations.labels.sourceItem as string)\n\t\t\t\t\t\t\t\t: (en.transformations.labels.targetItem as string)" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedField || undefined" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "options", + "type": "variable", + "value": "matchingData" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchOptions" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "showGroupDivider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomSelectAutocomplete.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => !!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "version" + }, + { + "name": "maxHeight", + "type": "string", + "value": "30vh" + }, + { + "name": "name", + "type": "string", + "value": "targetVersion" + }, + { + "name": "label", + "type": "string", + "value": "Target Version" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!formError" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "helperText", + "type": "expression", + "value": "formError ? formError : \"\"" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) => option.value === currentVersion" + }, + { + "name": "fetchOptionsCallback", + "type": "expression", + "value": "useDebouncedCallback(fetchOptionsCallback, 150)" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\tsetFormError(\"\");\n\t\t\t\t\t\tsetVersion(event.value as SolaceSelectAutocompleteItemProps);\n\t\t\t\t\t}" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldRegion.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "region" + }, + { + "name": "name", + "type": "string", + "value": "region" + }, + { + "name": "dataQa", + "type": "string", + "value": "region" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "variable", + "value": "errorText" + }, + { + "name": "disabled", + "type": "variable", + "value": "regionDisabled" + }, + { + "name": "placeholder", + "type": "expression", + "value": "getPlaceholder()" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "regionToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemToRegion" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getGroupBy" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "isOptionDisabled" + }, + { + "name": "options", + "type": "variable", + "value": "matchingRegions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldClusterName.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clusterName" + }, + { + "name": "name", + "type": "string", + "value": "clusterName" + }, + { + "name": "dataQa", + "type": "string", + "value": "clusterName" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isCloning" + }, + { + "name": "required", + "type": "expression", + "value": "!!edit" + }, + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptions" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "clusterNameToString" + }, + { + "name": "itemMappingCallback", + "type": "variable", + "value": "itemMappingCallback" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText ? errorText : t({ id: \"id_cluster_name_info\", message: \"Type a new cluster name or select an existing one.\" })" + }, + { + "name": "options", + "type": "variable", + "value": "matchingClusterNames" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "theme.spacing(30)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessSelectAutocomplete.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "userAccessSelect-search" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`userAccessSelect-${resourceAssignment.userId}`" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "function", + "value": "(option, value) => option?.value === value?.value" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option ?? { name: \"\", value: \"\" }" + }, + { + "name": "fetchOptionsCallback", + "type": "function", + "value": "(searchTerm) => setSearchTerm(searchTerm)" + }, + { + "name": "getOptionDisabledCallback", + "type": "function", + "value": "(option) =>\n\t\t\t\t!!emptyOptionMapByValue[option?.value as keyof typeof emptyOptionMapByValue]" + }, + { + "name": "options", + "type": "variable", + "value": "userOptions" + }, + { + "name": "value", + "type": "variable", + "value": "selectedOption" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!resourceAssignment.error" + }, + { + "name": "helperText", + "type": "expression", + "value": "resourceAssignment.error" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/DeleteUserDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "name", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "dataQa", + "type": "string", + "value": "transferServicesDropdownSelect" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "fetchOptionsCallback" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "multiple", + "type": "boolean", + "value": "false" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "options", + "type": "variable", + "value": "usersDropdownList" + }, + { + "name": "title", + "type": "string", + "value": "Select a user to transfer services to" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "userGroupRoleDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "userGroupRoleDropdown" + }, + { + "name": "width", + "type": "string", + "value": "800px" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.roles" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupRoleDropdownQa" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupRoleChange" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.roleValue ? dialogState.roleValue : currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + }, + { + "name": "getOptionDisabledCallback", + "type": "variable", + "value": "handleRolesDisabled" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasRoleError" + }, + { + "name": "helperText", + "type": "expression", + "value": "hasRoleError ? userGroups.ugDialog.ugRoleError : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AudiLogs.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.auditLogs.username" + }, + { + "name": "id", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "name", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "dataQa", + "type": "string", + "value": "usernameSelectFilter" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleEmailSelection(e.value as IEmailOption)" + }, + { + "name": "value", + "type": "expression", + "value": "filters.email.value ? selectedEmail : undefined" + }, + { + "name": "options", + "type": "expression", + "value": "emailSearchTerm ? matchingEmails : getEmails(usersDetails)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/GroupManagementChecks.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "userGroupManagement.defaultUserGroupLabel" + }, + { + "name": "hasErrors", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "name", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "dataQa", + "type": "string", + "value": "customizeUserGroup" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!selectedUserGroup ? userGroupManagement.selectDefaultGroup : \"\"" + }, + { + "name": "placeholder", + "type": "expression", + "value": "selectedUserGroup?.name" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\t\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\t\t\t\t\t\tsubText: item.roles?.join(\", \"),\n\t\t\t\t\t\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUserGroupSelectChange" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "width", + "type": "string", + "value": "30rem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "name", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "dataQa", + "type": "string", + "value": "claimMappingUserGroups" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSelectedUserGroups(e.value as IUserGroupsItem[])" + }, + { + "name": "value", + "type": "variable", + "value": "selectedUserGroups" + }, + { + "name": "options", + "type": "expression", + "value": "userGroupFilter ? matchingUserGroups : getUserGroups(userGroupsDataResponse?.data)" + }, + { + "name": "itemComponent", + "type": "function", + "value": "(item: SolaceSelectAutocompleteItemProps & { roles?: string[] }) => {\n\t\t\t\t\treturn SolaceSelectAutocompleteItem({\n\t\t\t\t\t\tname: item.name,\n\t\t\t\t\t\tsubText: item.roles?.map((role) => (mappedRolesData as IMappedRolesData)[role].name).join(\", \"),\n\t\t\t\t\t\tvalue: item.name\n\t\t\t\t\t});\n\t\t\t\t}" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFetchProtocolOptionsCallback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "servicesDropdownId" + }, + { + "name": "name", + "type": "string", + "value": "servicesDropdown" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageService" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceDropdown" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleServiceCallback" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "options", + "type": "variable", + "value": "services" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "value", + "type": "variable", + "value": "dropdownValueFromParam" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "cloudProvider" + }, + { + "name": "label", + "type": "string", + "value": "Cloud Provider" + }, + { + "name": "dataQa", + "type": "string", + "value": "cloudProviderSelect" + }, + { + "name": "width", + "type": "string", + "value": "300px" + }, + { + "name": "options", + "type": "variable", + "value": "filteredCloudProviderOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterCloudProviderOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(item: { value: string; name: string; }) => item" + }, + { + "name": "value", + "type": "variable", + "value": "filteredCloudProviders" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleCloudProviderChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "name", + "type": "string", + "value": "k8sVersion" + }, + { + "name": "label", + "type": "string", + "value": "Kubernetes Version" + }, + { + "name": "dataQa", + "type": "string", + "value": "k8sVersionSelect" + }, + { + "name": "width", + "type": "string", + "value": "300px" + }, + { + "name": "options", + "type": "variable", + "value": "filteredK8sVersionOptions" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "filterK8sVersionOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(item: { value: string; name: string; }) => item" + }, + { + "name": "value", + "type": "variable", + "value": "filteredK8sVersions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleK8sVersionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterBy" + }, + { + "name": "name", + "type": "string", + "value": "filterBy" + }, + { + "name": "label", + "type": "string", + "value": "Filter By" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as { name: string; value: string }[]);\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterBy" + }, + { + "name": "name", + "type": "string", + "value": "filterBy" + }, + { + "name": "label", + "type": "string", + "value": "Filter By" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "multiple", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\tsetPageNumber(1);\n\t\t\t\t\t\t\tsetCurrentFilters(event.value as Filter[]);\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "currentFilters" + }, + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "itemComponent", + "type": "variable", + "value": "SolaceSelectAutocompleteItem" + }, + { + "name": "itemMappingCallback", + "type": "function", + "value": "(option) => option" + }, + { + "name": "optionsLabelCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteOptionLabel" + }, + { + "name": "getShowOptionDividerCallback", + "type": "variable", + "value": "getShowSolaceSelectAutocompleteOptionDivider" + }, + { + "name": "groupByCallback", + "type": "variable", + "value": "getSolaceSelectAutocompleteGroupBy" + }, + { + "name": "isOptionEqualToValueCallback", + "type": "variable", + "value": "isSolaceSelectAutocompleteOptionEqual" + }, + { + "name": "fetchOptionsCallback", + "type": "variable", + "value": "handleFiltersCallback" + } + ] + } + ] + }, + { + "component": "SolacePagination", + "count": 46, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/EntityList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/EventFlowDiscrepancyPreviewDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "tableRows.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "PAGE_SIZE" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "applicationVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "applicationCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setApplicationCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eventCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEventCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "schemaVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "schemaCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setSchemaCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServicesReferences.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "eventApiProductVersionsCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "eapCurrentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setEapCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ScanLogsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityVersionsCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPageNumber" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "pagination?.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination?.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination?.count" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "number", + "value": "20" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/SearchEventAPIs.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/SearchSchemas.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchApplications.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "entityCount" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "requests.length" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setCurrentPage" + }, + { + "name": "displayText", + "type": "expression", + "value": "\"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "meta.pagination.count ?? 0" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta.pagination.pageSize" + }, + { + "name": "activePage", + "type": "expression", + "value": "meta.pagination.pageNumber" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber + 1" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => 1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "100" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "displayText", + "type": "expression", + "value": "t({ id: \"id_pagination\", message: \"Showing {0}-{1} of {2} results\", values: { 0: firstItemIndex, 1: lastItemIndex, 2: totalResults } })" + }, + { + "name": "activePage", + "type": "expression", + "value": "pagination.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerListTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagement.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "userTablePage" + }, + { + "name": "pageSize", + "type": "variable", + "value": "USER_LIST_DATA_PER_PAGE" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pageCount || 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => setUserTablePage(page)" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogsDataTable.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "meta?.pagination.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => fetchNewPage(page)" + }, + { + "name": "totalResults", + "type": "expression", + "value": "meta?.pagination.totalHitCount" + }, + { + "name": "pageSize", + "type": "expression", + "value": "meta?.pagination.pageSize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/components/ClaimMapping.tsx", + "props": [ + { + "name": "activePage", + "type": "number", + "value": "1" + }, + { + "name": "pageSize", + "type": "number", + "value": "10" + }, + { + "name": "totalResults", + "type": "expression", + "value": "rows.length" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "() => undefined" + }, + { + "name": "loading", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "notificationsResponse?.meta?.pageNumber + 1" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => {\n\t\t\t\t\t\t\t\t\tsetPageNumber(page);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "totalResults", + "type": "expression", + "value": "notificationsResponse?.meta?.count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "notificationsResponse?.meta?.pageSize" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "totalClusterLength" + }, + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange" + }, + { + "name": "loading", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterServices.tsx", + "props": [ + { + "name": "totalResults", + "type": "variable", + "value": "totalCount" + }, + { + "name": "activePage", + "type": "variable", + "value": "currentPage" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "loading", + "type": "variable", + "value": "isPending" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/Customers.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/aggregation/Aggregation.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "getMetadata().count" + }, + { + "name": "pageSize", + "type": "expression", + "value": "getMetadata().pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "selectedPage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "paginationData.total" + }, + { + "name": "activePage", + "type": "expression", + "value": "paginationData.currentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "paginationData.pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "onSelectDifferentPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "(adminServiceResponse?.meta?.pageNumber ?? -1) + 1" + }, + { + "name": "pageSize", + "type": "expression", + "value": "adminServiceResponse?.meta?.pageSize ?? 20" + }, + { + "name": "totalResults", + "type": "expression", + "value": "adminServiceResponse?.meta?.count ?? 0" + }, + { + "name": "loading", + "type": "variable", + "value": "adminServiceResponseIsLoading" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\tsetPageNumber(selectedPage - 1);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "totalResults", + "type": "variable", + "value": "jobsCount" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(page) => setPageNumber(page)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/SelfManagedEmaTable.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "activePage" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setActivePage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination?.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination?.count" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "activePage" + }, + { + "name": "loading", + "type": "variable", + "value": "managementAgentsIsLoading" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setActivePage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "pagination.pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "pagination.count" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchList.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "paginationData?.count" + }, + { + "name": "activePage", + "type": "expression", + "value": "paginationData?.pageNumber" + }, + { + "name": "pageSize", + "type": "expression", + "value": "paginationData?.pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "setPage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "activePage", + "type": "variable", + "value": "page" + }, + { + "name": "totalResults", + "type": "expression", + "value": "tableRows.length" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingServicePackages" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageSelection" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "totalResults", + "type": "expression", + "value": "paginationData.total" + }, + { + "name": "activePage", + "type": "expression", + "value": "paginationData.currentPage" + }, + { + "name": "pageSize", + "type": "expression", + "value": "paginationData.pageSize" + }, + { + "name": "onPageSelection", + "type": "variable", + "value": "handlePageChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => setPageNumber(selectedPage)" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingOrgs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/monitoringJobs/MonitoringJobs.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "totalResults" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => setPageNumber(selectedPage)" + }, + { + "name": "loading", + "type": "variable", + "value": "loadingJobs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "activePage", + "type": "variable", + "value": "pageNumber" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "variable", + "value": "connectorCount" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\tsetConnectorQuery(queryBuilder({ orgId, pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "expression", + "value": "isLoading && isLoadingMicroIntegrations && isLoadingAgents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "brokerCompatibility?.meta?.pageNumber ?? 0" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "brokerCompatibility?.meta?.count ?? 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetBrokerQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "activePage", + "type": "expression", + "value": "helmChartCompatibility?.meta?.pageNumber ?? 0" + }, + { + "name": "pageSize", + "type": "variable", + "value": "pageSize" + }, + { + "name": "totalResults", + "type": "expression", + "value": "helmChartCompatibility?.meta?.count ?? 0" + }, + { + "name": "onPageSelection", + "type": "function", + "value": "(selectedPage) => {\n\t\t\t\t\t\t\t\tsetPageNumber(selectedPage);\n\t\t\t\t\t\t\t\tsetHelmChartQuery(queryBuilder({ pageSize, pageNumber: selectedPage }));\n\t\t\t\t\t\t\t}" + }, + { + "name": "loading", + "type": "variable", + "value": "brokerCompatibilityIsLoading" + } + ] + } + ] + }, + { + "component": "SolaceGrid", + "count": 405, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1), marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "pt", + "type": "number", + "value": "2" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"space-between\", alignItems: \"center\", marginTop: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/FailDownloadAsyncApi.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ marginLeft: theme.spacing(4) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "width", + "type": "expression", + "value": "\"800px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"grid\", gridTemplateColumns: \"1fr 1fr\", gap: \"8px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/DownloadAsyncApiDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"attributeName-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"type-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "data-qa", + "type": "expression", + "value": "\"scope-label\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "isEditable || nameInEditMode ? \"flex-start\" : \"center\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-valueType`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "color", + "type": "function", + "value": "(theme) => (toBeRemoved ? theme.palette.ux.secondary.text.w50 : undefined)" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-scope`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "expression", + "value": "isEditable ? 1 : 2" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", justifyContent: \"right\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caErrorKey}-message`" + }, + { + "name": "key", + "type": "expression", + "value": "`${caErrorKey}-message`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-content`" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + }, + { + "name": "columnGap", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributeDefinition.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-errorMsg-action`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "columnGap", + "type": "expression", + "value": "\"8px\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"flex-start\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "expression", + "value": "index !== 0 ? 1 : 0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "padding", + "type": "number", + "value": "0" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem additionalFilter" + }, + { + "name": "key", + "type": "expression", + "value": "`${filterType}-select`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`${selectedFilter.type}Select`" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem customAttribute" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columns", + "type": "number", + "value": "3" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "expression", + "value": "\"0\"" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "wrap", + "type": "string", + "value": "nowrap" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"450px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + }, + { + "name": "minWidth", + "type": "expression", + "value": "\"538px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingRight", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "padding", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100% - 65px)`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: SIDE_PANEL_WIDTH }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ width: `calc(100% - ${SIDE_PANEL_WIDTH})`, display: \"flex\", flexDirection: \"column\" }" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "mt", + "type": "number", + "value": "1" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`${caKey}-name`" + }, + { + "name": "className", + "type": "string", + "value": "name edit" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "key", + "type": "expression", + "value": "`${caKey}-value`" + }, + { + "name": "mt", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "2" + }, + { + "name": "alignSelf", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "md", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ paddingTop: \"24px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "gap", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"row\", alignItems: \"center\", columnGap: theme.spacing(1), paddingTop: theme.spacing(3) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "object", + "value": "{ display: \"flex\", flexDirection: \"column\", rowGap: theme.spacing(1) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Availability.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "ml", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/ApprovalType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2.15" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.85" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "numOfGridColumns" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "className", + "type": "string", + "value": "filterItem" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderRight", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (leftScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetLeftScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "object", + "value": "{ backgroundColor: theme.palette.ux.background.w20 }" + }, + { + "name": "justifyItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "alignContent", + "type": "expression", + "value": "relations.length === 0 && !initalDrag ? \"center\" : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "borderLeft", + "type": "expression", + "value": "`1px solid ${theme.palette.ux.secondary.w20}`" + }, + { + "name": "overflow", + "type": "expression", + "value": "\"scroll\"" + }, + { + "name": "height", + "type": "expression", + "value": "\"inherit\"" + }, + { + "name": "onScroll", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tconst { scrollTop } = e.target as HTMLElement;\n\n\t\t\t\t\t\t\t\t\tif (rightScrollTop !== scrollTop && relations.length > 0) {\n\t\t\t\t\t\t\t\t\t\tsetRightScrollTop(scrollTop);\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "`${id}-key`" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "className", + "type": "variable", + "value": "classNames" + }, + { + "name": "style", + "type": "variable", + "value": "style" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/WrapIfAdditionalTemplate.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justify-content", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3.5" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesAutomatic.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/LogsProgress.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + }, + { + "name": "display", + "type": "string", + "value": "flex" + }, + { + "name": "justifyContent", + "type": "string", + "value": "flex-start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/BrokerSSOZeroStateCx.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1.4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentDetailsSidePanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + }, + { + "name": "mt", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mr", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountDetailsOverview.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: 4 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/CategorySection.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "variable", + "value": "isParentCategory" + }, + { + "name": "key", + "type": "expression", + "value": "permission.id" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(0.5)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "variable", + "value": "categoryDetailsSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "categoryName" + }, + { + "name": "style", + "type": "object", + "value": "{ padding: theme.spacing(0.25) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "boolean", + "value": "true" + }, + { + "name": "style", + "type": "variable", + "value": "permissionTitleSectionStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "style", + "type": "variable", + "value": "bulkPermissionCheckboxStyle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/PermissionSet.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "marginTop", + "type": "expression", + "value": "categoryName ? theme.spacing(0.5) : theme.spacing(0.25)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "expression", + "value": "\"column\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10.8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "0.5" + }, + { + "name": "className", + "type": "string", + "value": "readWrite" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "itemWidth" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "8" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "paddingTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "display", + "type": "expression", + "value": "\"flex\"" + }, + { + "name": "sx", + "type": "object", + "value": "{ padding: 1, paddingLeft: 3 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ marginTop: \"8px\" }" + }, + { + "name": "key", + "type": "expression", + "value": "run.id" + }, + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "rowSpacing", + "type": "number", + "value": "2" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "mt", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + }, + { + "name": "textAlign", + "type": "string", + "value": "right" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "style", + "type": "expression", + "value": "styles.column" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "expression", + "value": "styles.row" + }, + { + "name": "width", + "type": "string", + "value": "fit-content" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunDetails.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatus.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "columns", + "type": "number", + "value": "14" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "peNotificationStatus" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "mt", + "type": "string", + "value": "30px" + }, + { + "name": "pr", + "type": "string", + "value": "32px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "style", + "type": "object", + "value": "{ alignContent: \"end\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "pr", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + }, + { + "name": "style", + "type": "expression", + "value": "style.max" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "string", + "value": "auto" + }, + { + "name": "ml", + "type": "string", + "value": "1px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "6" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "search-page-form" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "sm", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "sm", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + }, + { + "name": "sm", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + }, + { + "name": "sm", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + }, + { + "name": "sm", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + }, + { + "name": "sm", + "type": "number", + "value": "2" + }, + { + "name": "style", + "type": "object", + "value": "{ margin: \"auto\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/search/SearchForm.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + }, + { + "name": "sm", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "editForm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/EditServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "createForm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "string", + "value": "releaseDialog" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "ml", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "mt", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "mb", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "value" + }, + { + "name": "mr", + "type": "expression", + "value": "theme.spacing(1.5)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "justifyContent", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "key", + "type": "expression", + "value": "`container${key}`" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`qacx-${key}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "7" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "9" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`subscription-products-container`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductSubscriptionDialog.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/CreateBizOrganization.styles.ts", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "xs", + "type": "variable", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "3" + }, + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "rowSpacing", + "type": "number", + "value": "2" + }, + { + "name": "columnSpacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "11" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ padding: 3 }" + }, + { + "name": "spacing", + "type": "number", + "value": "10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "sm", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "md", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracingCollectorsTab.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "sm", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "md", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "container", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "item", + "type": "boolean", + "value": "true" + }, + { + "name": "xs", + "type": "number", + "value": "12" + } + ] + } + ] + }, + { + "component": "SolaceStack", + "count": 157, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/BulkActions/BulkMoveDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/DeployRDPApplicationDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/UpdateEnvironmentDialog.tsx", + "props": [ + { + "name": "width", + "type": "number", + "value": "600" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SuccessDialog.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "paddingLeft", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceDeleteSampleBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "flex-start" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributes.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/ReuseIndexStats.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/EducationalPopup.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/ApplicationVersionAccordion.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.25" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "paddingTop", + "type": "expression", + "value": "theme.spacing(3)" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "p", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "maxHeight", + "type": "expression", + "value": "\"360px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/EventPortalResourcesList.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + }, + { + "name": "width", + "type": "expression", + "value": "\"100%\"" + }, + { + "name": "mb", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "m", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "textAlign", + "type": "expression", + "value": "\"center\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "my", + "type": "number", + "value": "2.5" + }, + { + "name": "width", + "type": "expression", + "value": "\"fit-content\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/dashboard/Dashboard.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "2.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointInformation.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/EventApiList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/FilterHelper.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/EventApiProductDownloadDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/Policies.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/VersionPlansForm.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductVersionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/PolicyDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationRuntimeTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentials.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "1" + }, + { + "name": "marginBottom", + "type": "number", + "value": "1" + }, + { + "name": "data-qa", + "type": "string", + "value": "manageCredentialsEditor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/credentials/ManageCredentialsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "height", + "type": "number", + "value": "84" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "borderBottom", + "type": "expression", + "value": "showFilterSection ? `1px solid ${theme.palette.ux.secondary.w20}` : undefined" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/SolaceConnectionDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/reactFlow/CustomTransformationNode.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "alignItems", + "type": "expression", + "value": "\"center\"" + }, + { + "name": "padding", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddHeaderDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "\"flex-end\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorStateUpdateDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "string", + "value": "wrap" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + }, + { + "name": "margin", + "type": "expression", + "value": "createMode ? 0 : 3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorVendorTemplate.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorDetails.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCardsPage.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 80px)`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "useFlexGap", + "type": "boolean", + "value": "true" + }, + { + "name": "flexWrap", + "type": "expression", + "value": "\"wrap\"" + }, + { + "name": "pl", + "type": "number", + "value": "3" + }, + { + "name": "pr", + "type": "number", + "value": "3" + }, + { + "name": "height", + "type": "expression", + "value": "data && isFetched && data.length === 0 ? `calc(100vh - 178px)` : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectionCards.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "connectorsSidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/OAuthDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectionTabSummary.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "6" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "0" + }, + { + "name": "ml", + "type": "expression", + "value": "\"auto\"" + }, + { + "name": "mt", + "type": "expression", + "value": "\"auto\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorViewDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorEditDetailsTab.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/SolaceConnectionTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "4" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "padding", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/Utils.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "start" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/HeaderMappingTab.tsx", + "props": [ + { + "name": "ml", + "type": "number", + "value": "3" + }, + { + "name": "mt", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/SolaceHeader.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentLearningBlurb.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "height", + "type": "expression", + "value": "allItems.length !== 0 ? `calc(100vh + 80px)` : \"100%\"" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/DialogPlanForm.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "38rem" + }, + { + "name": "height", + "type": "string", + "value": "auto" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/brokerSSO/components/ManageBrokersDialog.tsx", + "props": [ + { + "name": "style", + "type": "object", + "value": "{ minHeight: \"45vh\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "marginTop", + "type": "number", + "value": "2" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w20" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/components/ViewDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "paddingTop", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "marginTop", + "type": "variable", + "value": "marginTop" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "padding", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/EmaConfirmationDialog.tsx", + "props": [ + { + "name": "gap", + "type": "number", + "value": "0.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2, 2, 2, 2)" + }, + { + "name": "marginX", + "type": "expression", + "value": "theme.spacing(2)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingLeft: 1 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "2" + }, + { + "name": "paddingBottom", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersList.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "maxWidth", + "type": "expression", + "value": "\"25%\"" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "alignItems", + "type": "string", + "value": "" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.secondary.w10" + }, + { + "name": "flex", + "type": "expression", + "value": "'1 1 0px'" + }, + { + "name": "border", + "type": "number", + "value": "1" + }, + { + "name": "borderRadius", + "type": "number", + "value": "1" + }, + { + "name": "borderColor", + "type": "expression", + "value": "theme.palette.ux.secondary.w40" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersSummary.tsx", + "props": [ + { + "name": "data-qa", + "type": "string", + "value": "clusters-summary" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "margin", + "type": "expression", + "value": "theme.spacing(3, 6)" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "bgcolor", + "type": "expression", + "value": "theme.palette.ux.background.w10" + }, + { + "name": "border", + "type": "number", + "value": "1" + }, + { + "name": "borderRadius", + "type": "number", + "value": "1" + }, + { + "name": "borderColor", + "type": "expression", + "value": "theme.palette.ux.secondary.w70" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + }, + { + "name": "justifyContent", + "type": "expression", + "value": "'flex-end'" + }, + { + "name": "marginTop", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-status-tab" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(1)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterSystemComponents.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-system-components-tab" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "padding", + "type": "expression", + "value": "theme.spacing(2)" + }, + { + "name": "spacing", + "type": "expression", + "value": "theme.spacing(1)" + }, + { + "name": "data-qa", + "type": "string", + "value": "cluster-status-tab" + }, + { + "name": "style", + "type": "object", + "value": "{ backgroundColor: theme.palette.ux.background.w10, border: `1px solid ${theme.palette.ux.secondary.w20}`, borderRadius: theme.shape.borderRadius }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizations/organizationsList/OrganizationsFilter.tsx", + "props": [ + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceOperations/ServiceOperations.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "my", + "type": "number", + "value": "1.5" + }, + { + "name": "spacing", + "type": "number", + "value": "1.5" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "column" + }, + { + "name": "spacing", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "data-testid", + "type": "string", + "value": "filter-by" + }, + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "justifyContent", + "type": "string", + "value": "space-between" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + }, + { + "name": "spacing", + "type": "number", + "value": "3" + }, + { + "name": "mb", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "gap", + "type": "number", + "value": "1" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "direction", + "type": "string", + "value": "row" + }, + { + "name": "alignItems", + "type": "string", + "value": "center" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/DeleteServicePackage.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/createBizOrganization/components/ProductsList.tsx", + "props": [ + { + "name": "direction", + "type": "expression", + "value": "\"row\"" + } + ] + } + ] + }, + { + "component": "SolaceCodeEditor", + "count": 20, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/QueueConfigPreview.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "id", + "type": "expression", + "value": "`itemDetail-${item.identifier}`" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "item.value ? JSON.stringify(jsonValue, null, 2) : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/SchemaVersionAccordionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion?.id}-schemaVersion[content]`" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersion?.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersion?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`dataCollected[${row.id}]`" + }, + { + "name": "value", + "type": "expression", + "value": "row.data" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"dataCollected[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "runtimeAttributes || designerAttributes" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaBody]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaBody" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ViewSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"auditResultConfig[schemaReferences]\"" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "schemaReferences" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "observedConfiguration.value" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => setObservedConfiguration({ name, value })" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationName" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message ?? \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error?.message" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/TemplateFullConfiguration.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "variable", + "value": "observedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t// onChange will break this because it will compete with the other debounced error flow\n\t\t\t\t\t\t\t\thandleChangeCustomConfiguration(value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "expression", + "value": "mode === Mode.template" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaVersionRefetched.content || \"\"" + }, + { + "name": "mode", + "type": "expression", + "value": "schemaTypeMapToCodeEditorMode[schemaVersionRefetched?.parent?.schemaType]" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "expression", + "value": "!shownInCatalogDetailContainer" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion[content]\");\n\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "variable", + "value": "isImportedSchemaVersion" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/consumers/ConfigurationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "value", + "type": "variable", + "value": "prettifiedConfiguration" + }, + { + "name": "mode", + "type": "expression", + "value": "\"json\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`applicationVersion[consumers].${index}.configuration`" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/QuickCreateSchema.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "mode", + "type": "variable", + "value": "impliedContentType" + }, + { + "name": "onChange", + "type": "function", + "value": "(editor, data, value) => {\n\t\t\t\t\t\t\t\t\t\t\tonChange(value);\n\t\t\t\t\t\t\t\t\t\t\ttrigger(\"schemaVersion.content\");\n\t\t\t\t\t\t\t\t\t\t\tvalidateSchemaSpec(value);\n\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"schemaVersion[content]\"" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getValidationErrorMessage(error) : editorWarningMsg ? editorWarningMsg : \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "hasWarnings", + "type": "expression", + "value": "!error && !!editorWarningMsg" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ErrorLogsDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "id", + "type": "string", + "value": "errorlog-stackTrace" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(logData.attributes.attributes.stack_trace, null, 2)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ViewDetails.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(servicePackage, null, 2)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/insightsOrganizations/InsightsOrganizations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "detailsDialog.org.organizationId" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(detailsDialog.org, null, 2)" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(details, null, 2)" + }, + { + "name": "helperText", + "type": "jsx", + "value": "" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "details?.isError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(\n\t\t\t\t\t\t\t\tinfrastructureRequests[`${deleteConfirmation.infrastructureId}-disable`].error,\n\t\t\t\t\t\t\t\tnull,\n\t\t\t\t\t\t\t\t2\n\t\t\t\t\t\t\t)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/UpdateConfig.tsx", + "props": [ + { + "name": "mode", + "type": "string", + "value": "protobuf" + }, + { + "name": "value", + "type": "expression", + "value": "currentConfig.config" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "expandable", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "string", + "value": "codeEditor" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(configs?.data, null, 2)" + }, + { + "name": "helperText", + "type": "jsx", + "value": "" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "configs?.isError" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "mode", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "expression", + "value": "JSON.stringify(infrastructureRequests[errorDetails].error, null, 2)" + } + ] + } + ] + }, + { + "component": "SolaceTruncatableLink", + "count": 48, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "eventBrokerNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedEventBroker.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\twindow.open(\n\t\t\t\t\t\t\t\t\t`/ep/runtime/modeled-event-meshes/${selectedEventMesh.id}/eventBrokers?selectedMessagingServiceId=${selectedEventBroker.id}`\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationNameValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedApplication.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsLabel(credentials)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeAValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputA\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "authenticationTypeBValue" + }, + { + "name": "text", + "type": "expression", + "value": "getCredentialsFieldValue(credentials, \"inputB\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfile" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "restDeliveryPointNameValue" + }, + { + "name": "text", + "type": "variable", + "value": "rdpName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/environment/AddApplicationToEnvironment.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "clientProfileValue" + }, + { + "name": "text", + "type": "expression", + "value": "selectedClientProfileName ?? \"default\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddToEnvironmentDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityType}NameValue`" + }, + { + "name": "text", + "type": "expression", + "value": "entity.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "jsx", + "value": "<>\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${version.parentName} `}\n\t\t\t\t\t\t\t\t\t\t\t\t\t{version.display || version.semver}\n\t\t\t\t\t\t\t\t\t\t\t\t" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionList/VersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "version.id" + }, + { + "name": "text", + "type": "expression", + "value": "onVersionNameClick ? version.display || version.semver : {version.display || version.semver}" + }, + { + "name": "onClick", + "type": "expression", + "value": "onVersionNameClick ? () => onVersionNameClick(version) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/dashboard/DashboardEventTableCell.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "event.id" + }, + { + "name": "text", + "type": "expression", + "value": "event.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => eventSelectionCallback(event)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{`${applicationVersion.parent.name} `}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/designer/graph/ReferencingApplicationItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "jsx", + "value": "{applicationVersion.displayName || applicationVersion.version}" + }, + { + "name": "onClick", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t\t\t\tonVersionClick({\n\t\t\t\t\t\t\t\t\t\tentityId: applicationVersion.parent.id,\n\t\t\t\t\t\t\t\t\t\tentityVersionId: applicationVersion.id,\n\t\t\t\t\t\t\t\t\t\tentityType: EntityType.application,\n\t\t\t\t\t\t\t\t\t\tnodeId: null\n\t\t\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedEventApiProductVersionListItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "eventApiProductVersion.id" + }, + { + "name": "text", + "type": "variable", + "value": "eventApiProductName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\t\t\tonNameClick(eventApiProductVersion);\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EntityDetailAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "variable", + "value": "itemName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\t\tonNameClick(item);\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/ExistingMessagingServices.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "href", + "type": "expression", + "value": "`/services/${row.serviceId ?? row.solaceCloudMessagingServiceId}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/MessagingServiceAccordion.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "messagingService.id" + }, + { + "name": "text", + "type": "expression", + "value": "messagingService.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onTitleLinkClick(messagingService)" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingService[Accordion][Title]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/mapEntityVersionItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${entityVersion.parent.id}-${entityVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "entityVersion.parent.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList && (!applicationDomainLocked || isSharedEntityVersion(entityVersion))\n\t\t\t\t\t\t? (e) => handleViewSelectedEntityVersionFromList(e, entityVersion)\n\t\t\t\t\t\t: null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/RemTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id + \"_name\"" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventMeshName" + }, + { + "name": "onClick", + "type": "expression", + "value": "hasAccess ? () => handleViewDetail(row) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${associatedEvents?.[0]?.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEvents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEvents?.[0])" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${associatedEvents?.[0]?.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionSummaryPopoverText=${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appVersionName-${applicationVersion.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(applicationVersion.parent, applicationVersion)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/ApplicationsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`appName-${application.id}`" + }, + { + "name": "text", + "type": "expression", + "value": "application.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => openApplicationDetails(application)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "index" + }, + { + "name": "id", + "type": "expression", + "value": "event?.name" + }, + { + "name": "text", + "type": "expression", + "value": "event?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(event)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sidePanel/EventsContent.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "associatedEventParents?.[0]?.name" + }, + { + "name": "text", + "type": "expression", + "value": "associatedEventParents?.[0]?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(associatedEventParents?.[0])" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaDetail?.name}`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaDetail?.name ?? \"\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleDetailDialogOpen(null)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaDetail?.name}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${applicationDetail?.parent?.name}-${applicationDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "applicationDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/DesignerEntityName.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${eventDetail?.parent?.name}-${eventDetail?.version}`" + }, + { + "name": "text", + "type": "expression", + "value": "eventDetail?.parent?.name ?? \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/SubjectRelationshipDetail.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${versionNumber}`" + }, + { + "name": "text", + "type": "expression", + "value": "`Version ${versionNumber}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleVersionLinkClick(relation)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${row.id}-templateLink`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplate(row.id)" + }, + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.templateName" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"contextSelector-title\"" + }, + { + "name": "text", + "type": "expression", + "value": "`${contextId ? contextOptions.find((contextOption) => contextOption.contextId === contextId)?.name : \"\"}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/DomainsList.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "item.id" + }, + { + "name": "text", + "type": "expression", + "value": "item.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "canOpen ? () => onOpen(item) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/mapEntityItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "node.versionId" + }, + { + "name": "text", + "type": "expression", + "value": "node.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "handleViewSelectedEntityVersionFromList ? (e) => handleViewSelectedEntityVersionFromList(e, node) : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.eventId" + }, + { + "name": "text", + "type": "expression", + "value": "row.eventName" + }, + { + "name": "onClick", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\te.stopPropagation();\n\t\t\t\t\t\thandleRowHighlight(row);\n\t\t\t\t\t\tonEventClick(row.event);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "row.application?.name ?? \"-\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSidePanel.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "request.applicationId" + }, + { + "name": "text", + "type": "expression", + "value": "request.application.name" + }, + { + "name": "onClick", + "type": "expression", + "value": "applicationDomainLocked ? null : () => onApplicationClick(request.application)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleEdit(row)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ExpandedSchemaItem.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`${schemaVersion.id}-link`" + }, + { + "name": "text", + "type": "expression", + "value": "schemaVersion.displayName ? schemaVersion.displayName : schemaVersion.version" + }, + { + "name": "onClick", + "type": "function", + "value": "() => onViewSchemaVersionDetails(schema, schemaVersion)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${schemaVersion.id}-viewDetails`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "onClick", + "type": "expression", + "value": "environmentAuth.canOpenModelEventBroker ? () => handleOpenEventMesh(eventMesh.id, eventBroker.id) : undefined" + }, + { + "name": "id", + "type": "expression", + "value": "eventBroker.id" + }, + { + "name": "text", + "type": "expression", + "value": "eventBroker.name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${applicationVersion.id}-applicationVersion-link`" + }, + { + "name": "href", + "type": "expression", + "value": "`/ep/designer/domains/${application?.applicationDomainId}/applications/${application?.id}?selectedVersionId=${applicationVersion?.id}&selectedTab=details`" + }, + { + "name": "id", + "type": "expression", + "value": "applicationVersion.id" + }, + { + "name": "text", + "type": "expression", + "value": "applicationVersion.displayName || applicationVersion.version" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "limitString(row.name, 35)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(row.name)}_button`" + }, + { + "name": "onClick", + "type": "function", + "value": "() =>\n\t\t\t\t\t\t\t\t\tstartTransition(() => {\n\t\t\t\t\t\t\t\t\t\thistory.push(`/micro-integrations/${row.id}`);\n\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "row.id" + }, + { + "name": "text", + "type": "expression", + "value": "row.name" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`row.name_button`" + } + ] + } + ] + }, + { + "component": "SolaceErrorBox", + "count": 13, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/entityList/AddEventApiProductVersionDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "submitError.message" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleErrorBoxClose" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDisableDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_disable_error\", message: \"An error occurred while disabling Distributed Tracing, please try again.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_failed_conf_collector\", message: \"Failed to configure and deploy the collector. For support, contact Solace.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_profile_not_created\", message: \"This service requires a telemetry profile. Create a telemetry profile in Broker Manager to proceed.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({ id: \"id_dt_telemetry_no_connection\", message: \"Cannot retrieve the telemetry profile due to lack of connection.\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\tid: \"id_dt_tracing_dest_not_defined\",\n\t\t\t\t\t\t\tmessage: \"A tracing destination has not been defined for this organization. Define a tracing destination in the account details area to proceed.\"\n\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessage" + }, + { + "name": "showErrorIcon", + "type": "boolean", + "value": "true" + }, + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "onClose", + "type": "function", + "value": "() => setErrorMessage(\"\")" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/ConfigureSettings.tsx", + "props": [ + { + "name": "message", + "type": "variable", + "value": "errorMessageWhileSavingSettings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "error.message" + }, + { + "name": "data-qa", + "type": "string", + "value": "exportErrorBox" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "customers.accIdNotFound(customerId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "customers.aggregationIdNotFound(aggregationId)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Unable to retrieve organization details from monitoring. Please try refreshing the page.\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "message", + "type": "expression", + "value": "\"Unable to retrieve all service details from monitoring. Please try refreshing the page.\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "fetchServiceErrorBox" + } + ] + } + ] + }, + { + "component": "SolaceCircularProgress", + "count": 37, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/PositionedCircularProgress/PositionedCircularProgress.tsx", + "props": [ + { + "name": "dataQa", + "type": "variable", + "value": "testId" + }, + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + }, + { + "name": "disableShrink", + "type": "variable", + "value": "disableShrink" + }, + { + "name": "message", + "type": "variable", + "value": "message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/DiscoveryScansTable.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditImportJob.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/UpdateSchemasDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListWrapper.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/Template/VendorTemplates.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "lg" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/dialogs/CloneServiceDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upscales/ScaleUpStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/upgrades/UpgradesLegacy.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/CreateHostnameDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Retrieving event broker service details..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/DistributedTracingDeployDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/PortConfigurationCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Deploying license to broker..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/DistributedTracingCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "jsx", + "value": "Removing Distributed Tracing license from broker..." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/MonitoringCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "message", + "type": "variable", + "value": "configuringMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/userAccess/rrbac/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/common/icons/LoadingSpinner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "variable", + "value": "size" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/UserAccessDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/ViewUserGroupDetailsDialog.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/components/SupportOutageCard.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/DataCenterTable.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "size", + "type": "string", + "value": "xs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetailsStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/eventPortal/eventManagementAgentsList/EventManagementAgentTable.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesDetailsPanel.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationTypesListView.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/ToggleButtonWithDialog.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading-spinner" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "size", + "type": "string", + "value": "sm" + }, + { + "name": "variant", + "type": "variable", + "value": "loadingVariant" + } + ] + } + ] + }, + { + "component": "SolacePageHeader", + "count": 22, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "overrideProps" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolacePageHeaderWithProgress/SolacePageHeaderWithProgress.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/home/Home.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "screenPath" + }, + { + "name": "dataQa", + "type": "string", + "value": "solace-header" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Event Portal AI Designer" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: \"Designer\", link: \"/ep/designer\" },\n\t\t\t\t\t{ title: messages.aiWizardButton.action, link: \"/ep/designer/wizard\", current: true }\n\t\t\t\t]" + }, + { + "name": "release", + "type": "string", + "value": "EXPERIMENTAL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "environment", + "type": "expression", + "value": "environment && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "actions", + "type": "expression", + "value": "(connectorDetails?.state === ConnectorState.notdeployed ||\n\t\t\t\t\t\t\tconnectorDetails?.state === ConnectorState.error) &&\n\t\t\t\t\t\thasAdminMiAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.editConnectorFlow}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: !hasAdminMiAccess\n\t\t\t\t\t\t\t? []\n\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actionMenu", + "type": "jsx", + "value": ",\n\t\t\t\t\t\t\t\ttitle: \"Actions\",\n\t\t\t\t\t\t\t\tvariant: \"icon\",\n\t\t\t\t\t\t\t\tdataQa: \"connectors_additional_actions\"\n\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\tanchorOrigin={{ horizontal: \"right\", vertical: \"bottom\" }}\n\t\t\t\t\t\t\ttransformOrigin={{ horizontal: \"right\", vertical: \"top\" }}\n\t\t\t\t\t\t\tid={\"connectors_additional_actions\"}\n\t\t\t\t\t\t\titems={menuItems}\n\t\t\t\t\t\t/>" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Clone ${connectorTypeDetails.name} ${connectorTypeDetails.direction} Micro-Integration: ${connectorDetails.name}`" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.connectorFlows" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\t\t\thistory.push(\"/micro-integrations/availableMicroIntegrations\");\n\t\t\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t\t\t\tdataQa={`solace-header-action-${getDataQaValue(en.connectors.labels.createConnectorFlow)}`}\n\t\t\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t\t\t{en.connectors.labels.createConnectorFlow}\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "connectorDetails?.name ?? \"\"" + }, + { + "name": "environment", + "type": "expression", + "value": "miEnvironment && (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t)" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.agents.agents" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment\n\t\t\t\t\t\t\t\t? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId)\n\t\t\t\t\t\t\t\t: undefined" + }, + { + "name": "actions", + "type": "expression", + "value": "[\n\t\t\t\t\t\t\thasAdminMiAccess ? (\n\t\t\t\t\t\t\t\t {\n\t\t\t\t\t\t\t\t\t\treturn null;\n\t\t\t\t\t\t\t\t\t}}\n\t\t\t\t\t\t\t\t>\n\t\t\t\t\t\t\t\t\t{en.agents.buttons.createAgent}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t) : (\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t].filter(Boolean)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_event_meshes\", message: \"Event Meshes\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_mesh_manager\", message: \"Mesh Manager\" }), link: \"/mc/meshes\", current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Event Mesh\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_service_details\", message: \"Service Details\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "service?.name ?? \"...\"" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: t({ id: \"id_service_details\", message: \"Service Details\" }),\n\t\t\t\t\t\tlink: routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab }),\n\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\tprogress: hasOngoingOperation,\n\t\t\t\t\t\tprogressTooltip: t({ id: \"id_broker_progress\", message: \"The broker is busy with an update. Please wait.\" })\n\t\t\t\t\t}\n\t\t\t\t]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "service && (\n\t\t\t\t\t\t\n\t\t\t\t\t)" + }, + { + "name": "actions", + "type": "expression", + "value": "service && [\n\t\t\t\t\t\t\n\t\t\t\t\t\t\tOpen Broker Manager\n\t\t\t\t\t\t\n\t\t\t\t\t]" + }, + { + "name": "tabs", + "type": "jsx", + "value": " {\n\t\t\t\t\t\t\tif (value === \"manage\") {\n\t\t\t\t\t\t\t\tif (missionControl?.manageUI) {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE, { serviceId, category: \"security\" }));\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS_MANAGE_LEGACY, { serviceId }));\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\thistory.push(routeSetParams(ROUTER_SERVICES_DETAILS, { serviceId: service?.id as string, tab: value }));\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}}\n\t\t\t\t\t>" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" })" + }, + { + "name": "subTitle", + "type": "expression", + "value": "t({ id: \"id_services\", message: \"Services\" })" + }, + { + "name": "environment", + "type": "expression", + "value": "selectedEnvironment ? (\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t) : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "selectedEnvironment ? getEnvironmentColor(environmentOptions, selectedEnvironment.environmentId) : undefined" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES, current: true }]" + }, + { + "name": "actions", + "type": "expression", + "value": "hasWriteAccess\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\tCreate Service\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/compare/CompareServices.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "t({ id: \"id_compare_services\", message: \"Compare Services\" })" + }, + { + "name": "release", + "type": "expression", + "value": "t({ id: \"id_beta\", message: \"BETA\" })" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: ROUTER_SERVICES },\n\t\t\t\t\t{ title: t({ id: \"id_compare_services\", message: \"Compare Services\" }), link: ROUTER_SERVICES_COMPARE, current: true }\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "subTitle", + "type": "variable", + "value": "subTitle" + }, + { + "name": "environment", + "type": "expression", + "value": "environment ? : undefined" + }, + { + "name": "borderTop", + "type": "expression", + "value": "environment?.bgColor" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n\t\t\t\t\t{ title: t({ id: \"id_cluster_manager\", message: \"Cluster Manager\" }), link: servicesPath },\n\t\t\t\t\t{\n\t\t\t\t\t\ttitle: title,\n\t\t\t\t\t\tlink: missionControl?.createUI ? ROUTER_SERVICES_CREATE : ROUTER_SERVICES_CREATE_LEGACY,\n\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Page Title" + }, + { + "name": "environment", + "type": "jsx", + "value": "" + }, + { + "name": "borderTop", + "type": "variable", + "value": "bgColor" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userSettingsShell/UserSettingsShell.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.accountDetails.userSettings.settings" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDetails.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "\"Cluster\"" + }, + { + "name": "subTitle", + "type": "expression", + "value": "isPending ? \"...\" : cluster?.name" + }, + { + "name": "breadcrumbs", + "type": "array", + "value": "[\n { title: \"Clusters\", link: \"/clusters\" },\n { title: \"Cluster Details\", link: `/clusters/${clusterId}/status`, current: true, progress: isPending },\n ]" + }, + { + "name": "actionMenu", + "type": "expression", + "value": "!!actionMenuItems && (\n ,\n }}\n key=\"cloudProviderLink\" >\n \n )" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansHeader.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Manage Upgrade Plans" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t handleModal()}>\n\t\t\t\t\tCreate Plan\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunHeader.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "`Upgrade Run${runId ? `: ${runId}` : \"\"}`" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t
\n\t\t\t\t\t\t{renderButton(\"Resume\", () => handleAction(resumeUpgradeRun), \"text\", status === \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Pause\", () => openModal(\"pause\"), \"text\", status !== \"PAUSED\")}\n\t\t\t\t\t\t{renderButton(\"Cancel\", () => openModal(\"cancel\"), \"outline\", true)}\n\t\t\t\t\t
\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/RunsHeader.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Upgrades" + }, + { + "name": "breadcrumbs", + "type": "variable", + "value": "breadcrumbs" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t handlePlanRoute()} variant=\"text\" dataQa=\"create\">\n\t\t\t\t\tManage Upgrade Plans\n\t\t\t\t,\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "integrationStrings.mainPage.pageTitle" + }, + { + "name": "breadcrumbs", + "type": "jsx", + "value": "" + }, + { + "name": "tabs", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "component": "SolaceList", + "count": 19, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ marginTop: \"-10px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\"&& .Mui-selected\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20,\n\t\t\t\t\t\t\t\tborderRight: \"0\"\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\"&& .Mui-selected:hover\": {\n\t\t\t\t\t\t\t\tbackgroundColor: theme.palette.ux.background.w20\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}" + }, + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`payloadSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/ConstantSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`constantSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`headerSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/HeaderSection.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`defaultHeaderSection-${direction}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ bgcolor: \"background.paper\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "dense", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ li: { listStyleType: \"disc\" } }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ p: 2 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ justifyContent: \"space-between\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ justifyContent: \"space-between\", display: \"flex\", flexDirection: \"column\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [] + } + ] + }, + { + "component": "SolaceListItemButton", + "count": 5, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "!currentTab || currentTab === \"get-started\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.getStarted);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [ + { + "name": "selected", + "type": "expression", + "value": "currentTab === \"acme-retail-sample\"" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\thistory.push(TabsPath.acmeRetail);\n\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceQueue" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceQueue)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ paddingTop: 1.5, paddingBottom: 1.5, paddingLeft: 3 }" + }, + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "expression", + "value": "selectedTemplateType === ConfigurationTypeId.solaceClientProfileName" + }, + { + "name": "onClick", + "type": "function", + "value": "() => handleSelectTemplateType(ConfigurationTypeId.solaceClientProfileName)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tbackground: theme.palette.ux.primary.text.w10,\n\t\t\t\t\t\t\theight: \"100%\",\n\t\t\t\t\t\t\tpaddingBottom: \"0\",\n\t\t\t\t\t\t\tpaddingTop: \"0\",\n\t\t\t\t\t\t\tborder: `1px solid ${theme.palette.ux.secondary.w20}`,\n\t\t\t\t\t\t\tborderBottom: index === data.items.length - 1 ? undefined : \"0\"\n\t\t\t\t\t\t}" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "selected", + "type": "variable", + "value": "selected" + }, + { + "name": "onClick", + "type": "function", + "value": "() => setSelectedIndex(index)" + } + ] + } + ] + }, + { + "component": "SolaceListItem", + "count": 25, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/GettingStartedListItem.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EntitiesToDeleteListingPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "entity.id" + }, + { + "name": "data-qa", + "type": "expression", + "value": "`entityId-${entity.id}`" + }, + { + "name": "sx", + "type": "object", + "value": "{ paddingLeft: \"48px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SamplesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/ResourcesList.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterList.tsx", + "props": [ + { + "name": "disablePadding", + "type": "boolean", + "value": "true" + }, + { + "name": "disableGutters", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ height: theme.spacing(sampleSetup ? 7 : 9) }" + }, + { + "name": "secondaryAction", + "type": "jsx", + "value": "{getSecondaryAction()}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", listStyleType: \"disc\", marginLeft: \"16px\", padding: \"0px\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{\n\t\t\t\t\t\t\tborderTop: index === 0 ? 0 : \"1px solid\",\n\t\t\t\t\t\t\tborderColor: theme.palette.grey[300],\n\t\t\t\t\t\t\tpl: field?.parentId ? getIndentationLevel(field?.parentId) : 3\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/components/NotificationAd.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ display: \"list-item\", paddingLeft: 0, marginLeft: theme.spacing(2) }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/authPages/landing/CommonLandingPage.tsx", + "props": [ + { + "name": "sx", + "type": "object", + "value": "{ listStyleType: \"disc\", display: \"list-item\", pl: 0, pt: 0 }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "sx", + "type": "object", + "value": "{ display: \"flex\", alignItems: \"flex-start\" }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "divider", + "type": "boolean", + "value": "true" + }, + { + "name": "key", + "type": "expression", + "value": "resource.profile" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/EmailChipList.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`hidden-${index}-${email}`" + } + ] + } + ] + }, + { + "component": "SolaceLinearProgress", + "count": 5, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/EventPortalResourceProgressBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "color", + "type": "string", + "value": "learning" + }, + { + "name": "height", + "type": "string", + "value": "md" + }, + { + "name": "value", + "type": "variable", + "value": "completionPercentage" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "key", + "type": "variable", + "value": "dataQa" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/CreatingProgress.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "percent >= 99 ? \"indeterminate\" : \"determinate\"" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "variable", + "value": "percent" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + }, + { + "name": "value", + "type": "expression", + "value": "getCreationPercentage(service.creationState, service.createdTime as Date)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldBrokerVersion.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "indeterminate" + }, + { + "name": "height", + "type": "string", + "value": "sm" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersExportDialog.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "determinate" + }, + { + "name": "value", + "type": "variable", + "value": "loadingPercentage" + }, + { + "name": "height", + "type": "string", + "value": "lg" + } + ] + } + ] + }, + { + "component": "SolaceLearningButton", + "count": 7, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/resources/SetupSampleListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-outline\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "expression", + "value": "\"call-to-action\"" + }, + { + "name": "isDisabled", + "type": "expression", + "value": "!showLoadSampleButton" + }, + { + "name": "startIcon", + "type": "expression", + "value": "!showLoadSampleButton && " + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickLoadSamples" + }, + { + "name": "dataQa", + "type": "string", + "value": "loadSampleDataButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/SampleLoadingBanner.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "dataQa", + "type": "string", + "value": "ExploreOnMyOwnLink" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tdismissableCallback();\n\t\t\t\t\t\t\t\t\tMixpanel.track(\"Element Click\", { \"element-id\": `kafkaSampleDismissButton`, sampleName: sampleCollectionName, domain: domain });\n\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/GetStartedResources.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "handleExploreSample" + }, + { + "name": "dataQa", + "type": "string", + "value": "exploreSampleButton" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "variant", + "type": "string", + "value": "dark-call-to-action" + }, + { + "name": "onClick", + "type": "variable", + "value": "redirectToVideos" + }, + { + "name": "endIcon", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterInviteUsersCard.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "!email" + }, + { + "name": "variant", + "type": "string", + "value": "dark-outline" + }, + { + "name": "onClick", + "type": "variable", + "value": "onClickInviteUsers" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/resources/LearningCenterListDetails.tsx", + "props": [ + { + "name": "isDisabled", + "type": "expression", + "value": "selectedDetails.disabled" + }, + { + "name": "variant", + "type": "expression", + "value": "\"dark-call-to-action\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${camelCase(selectedDetails.button)}_button}`" + }, + { + "name": "onClick", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tselectedDetails.onClick && selectedDetails.onClick();\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "startIcon", + "type": "expression", + "value": "selectedDetails.accessDenied && " + } + ] + } + ] + }, + { + "component": "SolaceRadioGroup", + "count": 16, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "applicationRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetIsNewApplication(e.value === \"true\");\n\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "isNewApplication ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "radioGroupName ?? \"customhookRadioGroup\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "dataQa ?? \"\"" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!validationErrorMsg" + }, + { + "name": "helperText", + "type": "variable", + "value": "validationErrorMsg" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "messagingServiceSelectorRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "messagingServiceRadioGroup" + }, + { + "name": "value", + "type": "variable", + "value": "selectedMessagingService" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetSelectedMessagingService(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "selectResultTypeRadioGroup" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleAuditResultTypeChange" + }, + { + "name": "value", + "type": "variable", + "value": "auditResultTypeToImport" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"brokerTypeRadioButtons\"" + }, + { + "name": "value", + "type": "variable", + "value": "brokerType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tsetBrokerType(e.value);\n\t\t\t\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.format" + }, + { + "name": "name", + "type": "string", + "value": "downloadFormatRadioGroup" + }, + { + "name": "inline", + "type": "boolean", + "value": "false" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetFormat(e.value as SupportedAsyncApiDownloadFormat);\n\n\t\t\t\tif (localStorageKey) localStorage.setItem(localStorageKey, `${e.value}`);\n\t\t\t}" + }, + { + "name": "stackLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "format" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "review" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReviewChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"SchemaTypeRadioButtons\"" + }, + { + "name": "value", + "type": "expression", + "value": "schemaInfo?.schemaType" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\tsetSelectedSchemaType(e.value === SchemaType.complex ? SchemaType.complex : SchemaType.primitive);\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "name", + "type": "string", + "value": "addSubscriptionRadioGroup" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\tsetMode(e.value);\n\t\t\t\t\t\t\tresetField(\"consumerId\");\n\t\t\t\t\t\t\tresetField(\"consumerName\");\n\t\t\t\t\t\t\tresetField(\"consumerType\");\n\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "mode" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tsetConstantField({ ...constantField, constantValue: e.value });\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantField.constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "constant-radio-group" + }, + { + "name": "name", + "type": "string", + "value": "constantValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!constantNameError" + }, + { + "name": "helperText", + "type": "variable", + "value": "constantNameError" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonConstantValueChange(e);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "expression", + "value": "constantValue ? \"true\" : \"false\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceTypes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "serviceType" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceType" + }, + { + "name": "value", + "type": "variable", + "value": "serviceType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleServiceTypeChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "value", + "type": "variable", + "value": "endpointsSelector" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "systemType" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "string", + "value": "systemType" + }, + { + "name": "value", + "type": "variable", + "value": "systemType" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSystemTypeChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "isProduction" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "getIsProductionValue(dialogState.isProduction)" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvProductionChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "collectorRadioGroup" + }, + { + "name": "value", + "type": "variable", + "value": "action" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => dispatch(setAction(event.value))" + }, + { + "name": "inline", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + } + ] + }, + { + "component": "SolaceRadio", + "count": 28, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Existing Application\"" + }, + { + "name": "name", + "type": "string", + "value": "existingApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingApplication" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EntityDetailModal/AddEventToApplication.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"New Application\"" + }, + { + "name": "name", + "type": "string", + "value": "newApplication" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newApplication" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/customHooks/useRadioGroup.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/InitiateDataCollectionDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "disabled" + }, + { + "name": "key", + "type": "expression", + "value": "`messagingService-${item.id}`" + }, + { + "name": "label", + "type": "jsx", + "value": " handleServiceAccordionControl(item.id)}\n\t\t\t\t\t\t\t\tdetails={renderAccordionDetail(item)}\n\t\t\t\t\t\t\t\tsummary={\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t{item.name}\n\t\t\t\t\t\t\t\t\t\t{item?.solaceCloudMessagingServiceId && }\n\t\t\t\t\t\t\t\t\t\t{isScanInProgress && Discovery Scan in progress}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t/>" + }, + { + "name": "name", + "type": "expression", + "value": "item.id" + }, + { + "name": "value", + "type": "expression", + "value": "item.id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/MultiSelectImportActionPanel.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`selectResultTypeOption_${resultType}`" + }, + { + "name": "label", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{auditResultTypeCount}\n\t\t\t\t\t\t\t\t\t{AUDIT_RESULT_CHIPS[resultType]}\n\t\t\t\t\t\t\t\t\t{!!showExceedsLimitError[resultType] && renderExceedsLimitError(resultType)}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "name", + "type": "variable", + "value": "resultType" + }, + { + "name": "value", + "type": "variable", + "value": "resultType" + }, + { + "name": "disabled", + "type": "expression", + "value": "auditResultTypeCount === 0 || isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === pageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/SearchSharedEventsDialog.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "key" + }, + { + "name": "name", + "type": "variable", + "value": "key" + }, + { + "name": "value", + "type": "variable", + "value": "key" + }, + { + "name": "label", + "type": "expression", + "value": "brokerTypeLabel[key]" + }, + { + "name": "disabled", + "type": "expression", + "value": "!allowChangeBrokerType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`brokerType[${key}]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.json" + }, + { + "name": "name", + "type": "string", + "value": "json" + }, + { + "name": "value", + "type": "string", + "value": "json" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/download/DownloadDialogHelper.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.eventApi.labels.yaml" + }, + { + "name": "name", + "type": "string", + "value": "yaml" + }, + { + "name": "value", + "type": "string", + "value": "yaml" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "option.value" + }, + { + "name": "name", + "type": "expression", + "value": "option.value" + }, + { + "name": "value", + "type": "expression", + "value": "option.value" + }, + { + "name": "label", + "type": "expression", + "value": "option.label" + }, + { + "name": "subText", + "type": "expression", + "value": "option.subText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "value" + }, + { + "name": "name", + "type": "variable", + "value": "value" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "label", + "type": "variable", + "value": "value" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`schemaType[${value}]`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Add to Existing Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "existingConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"existingConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "existingConsumer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/AddSubscriptionFromEventTab/AddSubscriptionForm.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"Create New Consumer\"" + }, + { + "name": "name", + "type": "string", + "value": "newConsumer" + }, + { + "name": "value", + "type": "expression", + "value": "\"newConsumer\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "newConsumer" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/EditConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanTrue" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanTrue" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanTrue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/popoverDialogs/AddConstantDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.connectors.labels.constantBooleanFalse" + }, + { + "name": "name", + "type": "string", + "value": "constantBooleanFalse" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "constantBooleanFalse" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/GroupMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/SortMenu.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "label", + "type": "expression", + "value": "i18n._(label)" + }, + { + "name": "name", + "type": "variable", + "value": "option" + }, + { + "name": "checked", + "type": "variable", + "value": "checked" + }, + { + "name": "onChange", + "type": "expression", + "value": "handleMenuClick[index]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEndpointSelector.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "endpointsSelector" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`\"endpointsSelector\"[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "key", + "type": "variable", + "value": "id" + }, + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "systemType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`systemType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FormServiceType.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + }, + { + "name": "name", + "type": "string", + "value": "serviceType" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`serviceType[${id}]`" + }, + { + "name": "label", + "type": "variable", + "value": "label" + }, + { + "name": "subText", + "type": "variable", + "value": "subText" + }, + { + "name": "lightSubText", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "id" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "nonprod" + }, + { + "name": "id", + "type": "string", + "value": "nonprod" + }, + { + "name": "value", + "type": "expression", + "value": "\"false\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "nonProductionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.nonProdSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "key", + "type": "string", + "value": "prod" + }, + { + "name": "id", + "type": "string", + "value": "prod" + }, + { + "name": "value", + "type": "expression", + "value": "\"true\"" + }, + { + "name": "name", + "type": "string", + "value": "isProduction" + }, + { + "name": "label", + "type": "variable", + "value": "productionLabel" + }, + { + "name": "subText", + "type": "expression", + "value": "en.environments.labels.prodSubText" + }, + { + "name": "disabled", + "type": "variable", + "value": "isDisabled" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/UserGroupsTable.tsx", + "props": [ + { + "name": "checked", + "type": "expression", + "value": "resultPerPage === selectedPageSize" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResultsPerPageChange(resultPerPage)" + }, + { + "name": "key", + "type": "expression", + "value": "`resultsPerPage_${resultPerPage}`" + }, + { + "name": "name", + "type": "string", + "value": "resultsPerPage" + }, + { + "name": "value", + "type": "expression", + "value": "`${resultPerPage}`" + }, + { + "name": "label", + "type": "expression", + "value": "`${resultPerPage}`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Upgrade" + }, + { + "name": "name", + "type": "string", + "value": "Upgrade" + }, + { + "name": "value", + "type": "expression", + "value": "CollectorModificationAction.UPGRADE" + }, + { + "name": "dataQa", + "type": "string", + "value": "upgrade" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Rollback" + }, + { + "name": "name", + "type": "string", + "value": "Rollback" + }, + { + "name": "value", + "type": "expression", + "value": "CollectorModificationAction.ROLLBACK" + }, + { + "name": "dataQa", + "type": "string", + "value": "rollback" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/CollectorModificationDialog.tsx", + "props": [ + { + "name": "disabled", + "type": "variable", + "value": "isPerformingRequest" + }, + { + "name": "label", + "type": "string", + "value": "Redeploy" + }, + { + "name": "name", + "type": "string", + "value": "Redeploy" + }, + { + "name": "value", + "type": "expression", + "value": "CollectorModificationAction.REDEPLOY" + }, + { + "name": "dataQa", + "type": "string", + "value": "redeploy" + } + ] + } + ] + }, + { + "component": "SolaceTextArea", + "count": 22, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/CustomAttributes/CustomAttributesEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`postRequestTargetValue`" + }, + { + "name": "value", + "type": "expression", + "value": "queueBindingConfiguration.postRequestTarget" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`postRequestTargetValue`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTDeliveryPointQueueBinding.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${prefix}Value`" + }, + { + "name": "value", + "type": "variable", + "value": "displayedHeaderValue" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${prefix}Value`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RequestHeaderDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.requestHeaderValue" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "maxLength", + "type": "number", + "value": "2001" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\tvalue && onChange(value.trim());\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "variable", + "value": "configurationNameRequestHeaderValue" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributeForm.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!errorMsgs[index]" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMsgs[index] || (\n\t\t\t\t\t\t\t\t\t\t\t\t\t{`${value.trim().length.toLocaleString()}/${complexValueTypeCharLimit.toLocaleString()}`}\n\t\t\t\t\t\t\t\t\t\t\t\t)" + }, + { + "name": "minRows", + "type": "number", + "value": "3" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + }, + { + "name": "maxLength", + "type": "variable", + "value": "complexValueTypeCharLimit" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\t\t\tconst newValue = e.value;\n\n\t\t\t\t\t\t\t\t\t\t\t\tif (value !== newValue) {\n\t\t\t\t\t\t\t\t\t\t\t\t\tonChange(newValue);\n\t\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, newValue, valueType);\n\t\t\t\t\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\t\t\t\t\t\t\t\t\tonBlur();\n\t\t\t\t\t\t\t\t\t\t\t\tonChange(value.trim());\n\t\t\t\t\t\t\t\t\t\t\t\thandleValueUpdate(index, customAttributeValue, errorMsgs, value.trim(), valueType);\n\t\t\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${caKey}-value-input`" + }, + { + "name": "resizable", + "type": "expression", + "value": "\"vertical\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/EntityAndVersionEditor.tsx", + "props": [ + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? error.message : null" + }, + { + "name": "onKeyDown", + "type": "variable", + "value": "blockEnterKey" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\tsetIsDirty(true);\n\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}[name]`" + }, + { + "name": "autoFocus", + "type": "expression", + "value": "!isDuplicateVersion" + }, + { + "name": "maxLength", + "type": "expression", + "value": "nameMaxLength + 1" + }, + { + "name": "minRows", + "type": "number", + "value": "1" + }, + { + "name": "maxRows", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RevokeEventAccessDialog.tsx", + "props": [ + { + "name": "width", + "type": "string", + "value": "550px" + }, + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Revocation\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestReviewDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "declineReason" + }, + { + "name": "value", + "type": "variable", + "value": "declineReason" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleReasonChange" + }, + { + "name": "label", + "type": "expression", + "value": "\"Reason for Decline\"" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!declineReasonError" + }, + { + "name": "helperText", + "type": "variable", + "value": "declineReasonError" + }, + { + "name": "maxLength", + "type": "variable", + "value": "MAX_REASON_LENGTH" + }, + { + "name": "disabled", + "type": "expression", + "value": "reviewDecision !== ReviewDecision.declined" + }, + { + "name": "dataQa", + "type": "string", + "value": "declineReason" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/RequestAccordionList.tsx", + "props": [ + { + "name": "aria-label", + "type": "string", + "value": "Comment" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "name", + "type": "string", + "value": "comment" + }, + { + "name": "value", + "type": "expression", + "value": "item?.comments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => handleOnCommentChange(e, item)" + }, + { + "name": "label", + "type": "expression", + "value": "\"Comment\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/components/shared.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "description ?? \"emptyDescription\"" + }, + { + "name": "label", + "type": "expression", + "value": "label ?? \"Description\"" + }, + { + "name": "value", + "type": "variable", + "value": "description" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\tsetDescription(e.value ?? \"\");\n\t\t\t}" + }, + { + "name": "onBlur", + "type": "function", + "value": "() => {\n\t\t\t\tsetDescription(description.trim());\n\t\t\t}" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"description\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "10000" + }, + { + "name": "placeholder", + "type": "expression", + "value": "placeholder ?? \"\"" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "props.name" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChangeTrigger(props, e)" + }, + { + "name": "value", + "type": "variable", + "value": "fieldValue" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readonly" + }, + { + "name": "required", + "type": "expression", + "value": "props.required && !props.readonly" + }, + { + "name": "disabled", + "type": "expression", + "value": "props.disabled" + }, + { + "name": "width", + "type": "string", + "value": "100%" + }, + { + "name": "maxLength", + "type": "expression", + "value": "props.schema.maxLength" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${props.label}-form-textArea`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomTextArea.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "limitChangeDetails" + }, + { + "name": "label", + "type": "expression", + "value": "en.serviceLimits.labels.details" + }, + { + "name": "onBlur", + "type": "variable", + "value": "onDetailsChange" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"limitChangeDetails\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "1500" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.environments.labels.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "environmentDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvDescriptionChange" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionErrorText()" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasDescError" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "envDescriptionTestId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsageContactUs.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "3000" + }, + { + "name": "label", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.details" + }, + { + "name": "name", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "contactUsTextField" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setContactUseMessage(value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!validateText(contactUseMessage) ? false : true" + }, + { + "name": "helperText", + "type": "expression", + "value": "!validateText(contactUseMessage) ? \"\" : drawdownUsage.noDrawdownUsage.containsScript" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userGroups/components/CreateEditUserGroupsDialog.tsx", + "props": [ + { + "name": "maxLength", + "type": "number", + "value": "255" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "userGroups.ugDialog.descripiton" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.description" + }, + { + "name": "name", + "type": "string", + "value": "userGroupsDescription" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleUGDescriptionChange" + }, + { + "name": "disabled", + "type": "variable", + "value": "isLoading" + }, + { + "name": "dataQa", + "type": "string", + "value": "userGroupsDescriptionQa" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionCount()" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/SetUpSso.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "name", + "type": "string", + "value": "additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalCommentsText(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.accountSettings.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalCommentsText" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsTextField" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "additionalCommentsText.length >= 255" + }, + { + "name": "helperText", + "type": "expression", + "value": "additionalCommentsText.length >= 255 ? en.accountSettings.characterLimit : \"\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/GetSupport.tsx", + "props": [ + { + "name": "hasErrors", + "type": "variable", + "value": "descriptionError" + }, + { + "name": "helperText", + "type": "expression", + "value": "handleDescriptionError()" + }, + { + "name": "name", + "type": "string", + "value": "descriptionField" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "value", + "type": "variable", + "value": "descriptionValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDescriptionFieldValue" + }, + { + "name": "maxLength", + "type": "number", + "value": "5000" + }, + { + "name": "dataQa", + "type": "string", + "value": "supportPageIssue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/EventPortalLimitsCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "name", + "type": "string", + "value": "limitRequestTextArea" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => setRequestDetailsTexts(value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "value", + "type": "variable", + "value": "requestDetailsTexts" + }, + { + "name": "label", + "type": "expression", + "value": "en.overview.eventPortalSection.requestDetailsTextArea" + }, + { + "name": "width", + "type": "string", + "value": "40rem" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsOverview/AccountExpiryBanner.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "name", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setAdditionalComments(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.overview.banner.additionalComments" + }, + { + "name": "value", + "type": "variable", + "value": "additionalComments" + }, + { + "name": "width", + "type": "string", + "value": "30vw" + }, + { + "name": "resizable", + "type": "string", + "value": "vertical" + }, + { + "name": "dataQa", + "type": "string", + "value": "additionalCommentsId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/privateRegions/components/RequestNewDatacenter.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"sendRequest\"" + }, + { + "name": "maxLength", + "type": "number", + "value": "1000" + }, + { + "name": "fullWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "en.privateRegions.labels.newRequestDetails" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setTicketBody(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "value", + "type": "expression", + "value": "value || \"\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => onChange(e.value)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + } + ] + }, + { + "component": "SolaceCategorizedSearch", + "count": 6, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/useNodeAppearanceEditor.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconCategorizedSearch\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChanged" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"iconSearchAndFilter\"" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchValueChagned" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedCategory" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleCategoryChanged" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "toggleGroupOptions" + }, + { + "name": "equalButtonWidth", + "type": "boolean", + "value": "true" + }, + { + "name": "onSearchInputFocus", + "type": "function", + "value": "() => setAutoFocusItem(false)" + }, + { + "name": "onSearchInputBlur", + "type": "function", + "value": "() => setAutoFocusItem(true)" + }, + { + "name": "searchInputWidth", + "type": "string", + "value": "100%" + }, + { + "name": "categoryOptionsWidth", + "type": "string", + "value": "100%" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "expression", + "value": "entityFilterOptions.length > 0 ? entityFilterOptions : []" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "selectedEntityTypeFilter" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleEntityTypeFilterChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "searchInputWidth", + "type": "expression", + "value": "\"280px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by Name" + }, + { + "name": "layout", + "type": "expression", + "value": "SolaceCategorizedSearchLayout.horizontal" + }, + { + "name": "categoryOptions", + "type": "variable", + "value": "tabOptions" + }, + { + "name": "selectedCategoryValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onCategoryChange", + "type": "variable", + "value": "handleTabChange" + }, + { + "name": "searchValue", + "type": "variable", + "value": "searchText" + }, + { + "name": "onSearchValueChange", + "type": "variable", + "value": "handleSearchTextChange" + } + ] + } + ] + }, + { + "component": "SolacePicker", + "count": 13, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customColour-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "icons", + "type": "variable", + "value": "entityColourBlocks" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\tsetSelectedColorVariation(e.value);\n\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/AppearanceCustomization/AppearanceDetailsForm.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`${entityType}-customIconLogo-picker`" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e.value);\n\t\t\t\t\t\t\t\t\t\tsetSelectedIconLogo?.(e.value);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "value", + "type": "variable", + "value": "value" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "emptyStateMessage", + "type": "expression", + "value": "\"No Results Found\"" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Application Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Event Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "eventColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedEventColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedEventColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "domainColorPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Domain Color\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "domainColorBlocks" + }, + { + "name": "iconKeyOrderedList", + "type": "variable", + "value": "SupportedNodeColorVariations" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDomainColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedDomainColorVariation(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "iconPicker" + }, + { + "name": "dataQa", + "type": "string", + "value": "iconPicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select App Icon\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "false" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "filteredIcons" + }, + { + "name": "iconKeyOrderedList", + "type": "expression", + "value": "selectedCategory === \"logos\" ? imageOrderedKeys : iconOrderedKeys" + }, + { + "name": "value", + "type": "variable", + "value": "selectedIconValue" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedIconValue(event.value)" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "6" + }, + { + "name": "getOptionDisplayValue", + "type": "variable", + "value": "getOptionDisplayValue" + }, + { + "name": "autoFocusItem", + "type": "variable", + "value": "autoFocusItem" + }, + { + "name": "contentControlPanel", + "type": "variable", + "value": "contentControlPanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "themePicker" + }, + { + "name": "label", + "type": "expression", + "value": "\"Select Color Theme\"" + }, + { + "name": "inlineLabel", + "type": "boolean", + "value": "true" + }, + { + "name": "variant", + "type": "expression", + "value": "\"icons\"" + }, + { + "name": "icons", + "type": "variable", + "value": "applicationColorBlocks" + }, + { + "name": "value", + "type": "variable", + "value": "selectedAppColorVariation" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSelectedAppColorVariation(event.value)" + }, + { + "name": "dataQa", + "type": "string", + "value": "themePicker" + }, + { + "name": "numOfItemsPerRow", + "type": "number", + "value": "3" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "color" + }, + { + "name": "label", + "type": "string", + "value": "Color" + }, + { + "name": "variant", + "type": "string", + "value": "colors" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.color" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvColorChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "icon" + }, + { + "name": "label", + "type": "string", + "value": "Icon" + }, + { + "name": "variant", + "type": "string", + "value": "icons" + }, + { + "name": "value", + "type": "expression", + "value": "dialogState.icon" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEnvIconChange" + }, + { + "name": "icons", + "type": "variable", + "value": "Icons24" + } + ] + } + ] + }, + { + "component": "SolaceDetailMessage", + "count": 33, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/EmptyState/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/EmptyStateConfiguration.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "messages[configType].emptyConfigurationTitle" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t{messages[configType].emptyLinkToDocumentation}\n\t\t\t\t\t" + }, + { + "name": "details", + "type": "jsx", + "value": "{messages[configType].emptyConfigurationDetail}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "variable", + "value": "msgImg" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "expression", + "value": "actions[0] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[0] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/GraphEmptyState.tsx", + "props": [ + { + "name": "actions", + "type": "expression", + "value": "actions[1] ?? null" + }, + { + "name": "details", + "type": "expression", + "value": "details[1] ?? null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "variable", + "value": "title" + }, + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t{en.connectors.buttons.clearFilters}\n\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/EmptyFilterPanel.tsx", + "props": [ + { + "name": "actions", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\t\t{secondSectionActionString}\n\t\t\t\t\t\t\t\t" + }, + { + "name": "details", + "type": "variable", + "value": "secondSectionDetails" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/EmptyState.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.noMapping : en.connectors.labels.beginMapping" + }, + { + "name": "details", + "type": "expression", + "value": "readOnlyMode ? en.connectors.labels.readOnlyMappingDescription : en.connectors.labels.mappingDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tvariant: \"link\",\n\t\t\t\t\t\tdataQa: \"learn-about-mapping-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.learnMapping,\n\t\t\t\t\t\thref: \"https://docs.solace.com/Micro-Integrations/Managed/create-message-headers.htm\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/TableEmptyState.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.noConnectorFlows" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "details", + "type": "expression", + "value": "en.connectors.labels.tableEmptyDescription" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"create-connector-flow-btn\",\n\t\t\t\t\t\tvariant: \"call-to-action\",\n\t\t\t\t\t\tdataQa: \"create-connector-flow-btn\",\n\t\t\t\t\t\tchildren: en.connectors.create,\n\t\t\t\t\t\tonClick: onCreateConnectorFlow\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\tid: \"view-all-connector-btn\",\n\t\t\t\t\t\tvariant: \"text\",\n\t\t\t\t\t\tdataQa: \"view-all-connector-btn\",\n\t\t\t\t\t\tchildren: en.connectors.buttons.viewAllTypes,\n\t\t\t\t\t\tonClick: OnViewAllConnectorType\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? \"Nothing to see here!\"" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? \"Please try returning to main page.\"" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-integration\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? \"Go to Integration\",\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/layout/EmptyPanel.tsx", + "props": [ + { + "name": "msgImg", + "type": "expression", + "value": "illustration ?? " + }, + { + "name": "title", + "type": "expression", + "value": "title ?? t({ id: \"id_nothing_here\", message: \"Nothing to see here!\" })" + }, + { + "name": "details", + "type": "expression", + "value": "details ?? t({ id: \"id_return_home\", message: \"Please try returning to main page.\" })" + }, + { + "name": "actions", + "type": "expression", + "value": "!hideEscapeRoute\n\t\t\t\t\t\t\t? [\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\tid: \"empty-panel-btn\",\n\t\t\t\t\t\t\t\t\t\tvariant: variant ?? \"call-to-action\",\n\t\t\t\t\t\t\t\t\t\tdataQa: dataQa ?? \"back-mission-control\",\n\t\t\t\t\t\t\t\t\t\tchildren: buttonLabel ?? t({ id: \"id_goto_mc\", message: \"Go to Mission Control\" }),\n\t\t\t\t\t\t\t\t\t\tonClick\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t ]\n\t\t\t\t\t\t\t: undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsageSub" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.noDrawdownUsage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/components/NoDrawdownUsage/NoDrawdownUsage.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.subTitle}\n\t\t\t\t\t\t\t{drawdownUsage.noDrawdownUsage.message}\n\t\t\t\t\t\t\n\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage.title" + }, + { + "name": "actions", + "type": "array", + "value": "[\n\t\t\t\t\t{\n\t\t\t\t\t\tchildren: drawdownUsage.noDrawdownUsage.contactUs,\n\t\t\t\t\t\tid: \"contactUs-btn\",\n\t\t\t\t\t\tonClick: () => toggleContactUsModalOpenState(),\n\t\t\t\t\t\tvariant: \"call-to-action\"\n\t\t\t\t\t}\n\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/support/SupportPageHome.tsx", + "props": [ + { + "name": "details", + "type": "jsx", + "value": "\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t{supportPage.freeTrialDescription}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt}\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{supportPage.freeTrialDescriptionExt2}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "supportPage.freeTrialTitle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/Upgrades.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "upgradeMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/PlansSidebar.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "No plan selected" + }, + { + "name": "details", + "type": "string", + "value": "Create or select a listed plan to view its details." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/Run.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "Failed to fetch upgrade run" + }, + { + "name": "details", + "type": "string", + "value": "Run data could not be retrieved. It may have been deleted or does not exist." + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "No scheduled upgrade runs" + }, + { + "name": "details", + "type": "string", + "value": "No upgrade runs returned. Open the create modal to schedule based off an existing Plan." + }, + { + "name": "actions", + "type": "array", + "value": "[{ children: \"Schedule Upgrade Run\", variant: \"outline\", onClick: setCreateOpen }]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.drawdownUsageNotAvailable_subtext1" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.drawdownUsageNotAvailable" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageTable.tsx", + "props": [ + { + "name": "details", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsageSub" + }, + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.noDrawdownUsage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationSidebar.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "integrationStrings.sidebar.noSelection.title" + }, + { + "name": "details", + "type": "expression", + "value": "integrationStrings.sidebar.noSelection.details" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/monitoringDashboard/MonitoringDashboard.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "string", + "value": "You do not have access to view this tab" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no connector deployment for this service!\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "msgImg", + "type": "jsx", + "value": "" + }, + { + "name": "title", + "type": "expression", + "value": "(serviceError as any)?.data?.message ??\n\t\t\t\t\t\t(infrastructureError as any)?.data?.message ??\n\t\t\t\t\t\t\"There is no collector for this service!\"" + } + ] + } + ] + }, + { + "component": "SolaceDatePicker", + "count": 5, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/VersionState/VersionStateDialog.tsx", + "props": [ + { + "name": "value", + "type": "variable", + "value": "endOfLifeDate" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleEndOfLifeDateChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "endOfLifeDateSelect" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => clearSelectedDate()" + }, + { + "name": "onChange", + "type": "variable", + "value": "setSelectedDate" + }, + { + "name": "variant", + "type": "expression", + "value": "SolaceDatePickerVariant.FORMAT_MONTH_YEAR" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "variable", + "value": "selectedDate" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => setSelectedStartDate(null)" + }, + { + "name": "onChange", + "type": "function", + "value": "(date) => setSelectedStartDate(moment(date).startOf(\"day\"))" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedStartDate?.toISOString()" + }, + { + "name": "timezone", + "type": "string", + "value": "UTC" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "onClear", + "type": "function", + "value": "() => setSelectedEndDate(null)" + }, + { + "name": "onChange", + "type": "function", + "value": "(date) => setSelectedEndDate(moment(date))" + }, + { + "name": "disableFuture", + "type": "boolean", + "value": "true" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEndDate?.toISOString()" + }, + { + "name": "timezone", + "type": "string", + "value": "UTC" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.styles.ts", + "props": [] + } + ] + }, + { + "component": "SolaceToggle", + "count": 35, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbar.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"shouldGroupEdges\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}shouldGroupEdges`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShouldGroupEdges?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "shouldGroupEdges" + }, + { + "name": "disabled", + "type": "variable", + "value": "disableActionToChangeGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showWarnings`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullName\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showFullName`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showNewEventVersionIndicator\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}showNewEventVersionIndicator`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowNewEventVersionIndicator?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showNewEventVersionIndicator" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"snapNodeToGrid\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${dataQa ? dataQa + \"-\" : \"\"}snapNodeToGrid`" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setSnapNodeToGrid?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "snapNodeToGrid" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphPredefinedColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphCustomColourAndIcon.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "showWarnings" + }, + { + "name": "name", + "type": "string", + "value": "showWarnings" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Warnings\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleShowWarningsChange(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMultiSelect" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Multi Select\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMultiSelect" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMultiSelect(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraph.stories.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "disableMoveNodes" + }, + { + "name": "label", + "type": "expression", + "value": "\"Disable Move Nodes\"" + }, + { + "name": "isOn", + "type": "variable", + "value": "disableMoveNodes" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setDisableMoveNodes(event.value)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showWarnings\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowWarnings?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showWarnings" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showFullNames\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowFullNames?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showFullNames" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/objectRelationGraph/ObjectRelationshipGraphSettingsMenu.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showSchema\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => setShowSchema?.(event.value)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showSchema" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all_resources" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment?.showAllResources" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(selectedEnvironment.environmentId, value)" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "messages.header.showAllResources" + }, + { + "name": "helperText", + "type": "expression", + "value": "messages.header.helperText" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderShowAllResources" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultParentSchemaConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleHideMatch" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultKafkaTopicConf.tsx", + "props": [ + { + "name": "isOn", + "type": "variable", + "value": "hideSubRelationshipsMatches" + }, + { + "name": "name", + "type": "string", + "value": "hide-match" + }, + { + "name": "label", + "type": "string", + "value": "Hide Matches" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSubjectRelationshipHideMatch" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/SolaceQueueTemplate.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "showPropertyNames" + }, + { + "name": "label", + "type": "expression", + "value": "application.configuration.showPropertyNames" + }, + { + "name": "isOn", + "type": "variable", + "value": "showPropertyNames" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowPropertyNames(!showPropertyNames)" + }, + { + "name": "dataQa", + "type": "string", + "value": "showPropertyNamesToggle" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "\"Show Advanced Properties\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"showAdvancedPropertiesToggle\"" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + }, + { + "name": "disabled", + "type": "expression", + "value": "!restDeliveryPoint?.restConsumerConfiguration" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumers.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"showAdvancedProperties\"" + }, + { + "name": "label", + "type": "expression", + "value": "en.application.configuration.restDeliveryPoint.showAdvancedProperties" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`showAdvancedProperties`" + }, + { + "name": "onChange", + "type": "function", + "value": "() => setShowAdvancedProperties((prevValue) => !prevValue)" + }, + { + "name": "isOn", + "type": "variable", + "value": "showAdvancedProperties" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({\n\t\t\t\t\t\t\t\t\t\t\t\tid: \"id_show_all_environments_help\",\n\t\t\t\t\t\t\t\t\t\t\t\tmessage: \"Enable to manage resources across environments\"\n\t\t\t\t\t\t\t\t\t\t\t})" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/components/atoms/AtomToggle.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "props" + }, + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "dataQa", + "type": "variable", + "value": "name" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorText || helperText" + }, + { + "name": "isOn", + "type": "variable", + "value": "value" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleChange" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/Security.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "delete_protection" + }, + { + "name": "name", + "type": "string", + "value": "delete_protection" + }, + { + "name": "dataQa", + "type": "string", + "value": "delete-protection" + }, + { + "name": "isOn", + "type": "variable", + "value": "isLocked" + }, + { + "name": "disabled", + "type": "expression", + "value": "!canConfigure" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleDeleteProtection" + }, + { + "name": "stateText", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_delete_protection\", message: \"Delete Protection\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "show_all" + }, + { + "name": "isOn", + "type": "expression", + "value": "selectedEnvironment.showAllResources" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleShowAllEnvs" + }, + { + "name": "name", + "type": "string", + "value": "show_all_envs" + }, + { + "name": "label", + "type": "expression", + "value": "t({ id: \"id_show_all_environments\", message: \"Show resources in all environments\" })" + }, + { + "name": "helperText", + "type": "expression", + "value": "t({ id: \"id_show_all_environments_help\", message: \"Enable to manage resources across environments\" })" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountSettings/AccountSettings.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "label", + "type": "expression", + "value": "brandableTextValueConverter(\"PubSub+\", \"string\") + \" \" + en.accountSettings.preAuthText" + }, + { + "name": "name", + "type": "string", + "value": "securitySettingsPreAuth" + }, + { + "name": "onChange", + "type": "function", + "value": "(value) => togglePreAuth(value.value)" + }, + { + "name": "title", + "type": "string", + "value": "Security Settings Pre Auth" + }, + { + "name": "isOn", + "type": "expression", + "value": "!preOrgConfigResponse?.data.useAuthWebUILinks" + }, + { + "name": "disabled", + "type": "expression", + "value": "preAuthDisabled || isLoadingAuthConfig || isFetchingAuthConfig" + }, + { + "name": "dataQa", + "type": "string", + "value": "preAuthText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/Notifications.tsx", + "props": [ + { + "name": "helperText", + "type": "expression", + "value": "en.notifications[showUnreadNotifications ? \"showingUnreadNotifications\" : \"showingAllNotifications\"]" + }, + { + "name": "id", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "dataQa", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "label", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "name", + "type": "string", + "value": "showUnreadNotifications" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setShowUnreadNotifications(e.value)" + }, + { + "name": "title", + "type": "expression", + "value": "en.notifications.showUnreadNotifications" + }, + { + "name": "isOn", + "type": "variable", + "value": "showUnreadNotifications" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/OnboardingConfiguration.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "profileToggle" + }, + { + "name": "isOn", + "type": "expression", + "value": "resource.enabled" + }, + { + "name": "onChange", + "type": "function", + "value": "() => handleResourceToggle(resource.profile)" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${resource.profile}_toggle`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "isOn", + "type": "expression", + "value": "rest.value" + }, + { + "name": "name", + "type": "string", + "value": "datacenterVisibility" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => rest.onChange(event.value)" + }, + { + "name": "label", + "type": "string", + "value": "Visible" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/CreatePrivateRegion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "rest" + }, + { + "name": "name", + "type": "string", + "value": "datacenterAvailability" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => rest.onChange(event.value)" + }, + { + "name": "label", + "type": "string", + "value": "Available" + } + ] + } + ] + }, + { + "component": "SolaceMenuItem", + "count": 1, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/utils/miscUtils.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`graphContextMenu_${menuItem.id ?? index}`" + }, + { + "name": "...", + "type": "spread", + "value": "menuItem" + } + ] + } + ] + }, + { + "component": "SolaceSearchAndFilter", + "count": 13, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SolaceGraph/GraphToolbarV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "searchFieldPlaceholderText || \"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onFocus", + "type": "variable", + "value": "handleOnFocus" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "disabled", + "type": "expression", + "value": "graphEmpty || disableActionToChangeGraph" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchInput" + }, + { + "name": "name", + "type": "string", + "value": "searchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "textboxPlaceholderText ?? \"Search\"" + }, + { + "name": "width", + "type": "variable", + "value": "searchTextBoxWidth" + }, + { + "name": "value", + "type": "variable", + "value": "internalSearchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterMeshName" + }, + { + "name": "id", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "meshNameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "value", + "type": "variable", + "value": "memNameFilter" + }, + { + "name": "width", + "type": "string", + "value": "500px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "name", + "type": "string", + "value": "applicationFilterByName" + }, + { + "name": "value", + "type": "variable", + "value": "filterString" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByName" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "dataQa", + "type": "string", + "value": "applicationFilterByNameField" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/import/AddToExistingVersionsDialog.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "name", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "dataQa", + "type": "string", + "value": "addToApplicationVersionTextField" + }, + { + "name": "label", + "type": "variable", + "value": "selectApplicationVersionLabel" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by application name" + }, + { + "name": "value", + "type": "variable", + "value": "searchedApplicationName" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setSearchedApplicationName(e.value)" + }, + { + "name": "onClearAll", + "type": "function", + "value": "() => setSearchedApplicationName(\"\")" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "width", + "type": "expression", + "value": "\"480px\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/TemplateList.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "filterbyName" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "templateNameFilter" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "name", + "type": "string", + "value": "domainNameFilter" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterChange" + }, + { + "name": "dataQa", + "type": "string", + "value": "filterDomainName" + }, + { + "name": "placeholder", + "type": "string", + "value": "Filter by name" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/DomainGraphSearchV2.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "name", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "dataQa", + "type": "string", + "value": "graphSearchInput" + }, + { + "name": "placeholder", + "type": "expression", + "value": "\"Find on Graph\"" + }, + { + "name": "value", + "type": "variable", + "value": "searchText" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSearchTextChange" + }, + { + "name": "onClearAll", + "type": "variable", + "value": "handleClearSearchText" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "id", + "type": "expression", + "value": "`${id}`" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "variable", + "value": "searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "name", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "id", + "type": "expression", + "value": "\"connectorNameFilter\"" + }, + { + "name": "onChange", + "type": "function", + "value": "(e) => setNameFilter(e.value)" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "en.connectors.searchPlaceholder" + }, + { + "name": "width", + "type": "string", + "value": "500px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/ClustersFilter.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchBox" + }, + { + "name": "name", + "type": "string", + "value": "searchBox" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchBox" + }, + { + "name": "width", + "type": "string", + "value": "400px" + }, + { + "name": "value", + "type": "variable", + "value": "searchTerm" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => handleSearchField(event.value)" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "searchAndFilterID" + }, + { + "name": "name", + "type": "string", + "value": "searchByInfrastructureId" + }, + { + "name": "value", + "type": "variable", + "value": "searchInfrastructureId" + }, + { + "name": "onChange", + "type": "function", + "value": "(event) => {\n\t\t\t\t\t\tsetSearchInfrastructureId(event.value);\n\t\t\t\t\t}" + }, + { + "name": "width", + "type": "string", + "value": "250px" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.SEARCH" + }, + { + "name": "dataQa", + "type": "string", + "value": "searchByInfrastructureId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationOrganizationsTab.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "organizationNameFilter" + }, + { + "name": "placeholder", + "type": "expression", + "value": "integrationStrings.organizations.filters.nameFilter.placeholder" + }, + { + "name": "type", + "type": "expression", + "value": "FIELD_TYPES.FILTER" + }, + { + "name": "value", + "type": "variable", + "value": "nameFilter" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleNameFilterChange" + }, + { + "name": "width", + "type": "string", + "value": "425px" + } + ] + } + ] + }, + { + "component": "SolaceSelectAutocompleteResponsiveTags", + "count": 8, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/AdditionalFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/EventMeshFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.eventMesh}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/CustomAttributeFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 190}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${customAttributeFilterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "containerWidth ? `${containerWidth - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ?? requestorFilterRef?.current?.offsetWidth" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.requestor] ? `${filtersWidth[FilterType.requestor] - 180}px` : null" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${FilterType.requestor}-tags`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/SearchEvents.tsx", + "props": [ + { + "name": "containerWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh]" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "filtersWidth[FilterType.eventMesh] ? `${filtersWidth[FilterType.eventMesh] - 100}px` : null" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"eventMeshSearchSelect-tags\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/DefaultFilterMultiSelect.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "300" + }, + { + "name": "tags", + "type": "variable", + "value": "selectedTags" + }, + { + "name": "tagMaxWidth", + "type": "expression", + "value": "\"200px\"" + }, + { + "name": "overflowIndicatorLabel", + "type": "expression", + "value": "\"Filters\"" + }, + { + "name": "overflowIndicatorLabelSingular", + "type": "expression", + "value": "\"Filter\"" + }, + { + "name": "onDelete", + "type": "variable", + "value": "handleDeleteTag" + }, + { + "name": "dataQa", + "type": "expression", + "value": "`${filterType}Select-tags`" + } + ] + } + ] + }, + { + "component": "SolaceResponsiveItemList", + "count": 7, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/SearchPanel/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t option.value === env.id)}\n\t\t\t\t\t\t\t\t\thasTooltip={true}\n\t\t\t\t\t\t\t\t\tdataQa={env.id}\n\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t};\n\t\t\t\t\t})" + }, + { + "name": "containerWidth", + "type": "variable", + "value": "containerWidth" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/AssociateEnvironment.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "displayedEnvironments.map((env) => {\n\t\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\t\tid: env.id,\n\t\t\t\t\t\t\t\t\tcontent: (\n\t\t\t\t\t\t\t\t\t\t handleDeleteTag(env.id)}\n\t\t\t\t\t\t\t\t\t\t/>\n\t\t\t\t\t\t\t\t\t)\n\t\t\t\t\t\t\t\t};\n\t\t\t\t\t\t\t})" + }, + { + "name": "columnGap", + "type": "number", + "value": "8" + }, + { + "name": "showAll", + "type": "boolean", + "value": "false" + }, + { + "name": "containerWidth", + "type": "expression", + "value": "containerWidth ?? getContainerWidth(autocompleteRef.current?.offsetWidth)" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/RequestSearchAndFilter.tsx", + "props": [ + { + "name": "containerWidth", + "type": "variable", + "value": "filterContainerWidth" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanelV2.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/filters/SearchPanel.tsx", + "props": [ + { + "name": "containerWidth", + "type": "number", + "value": "600" + }, + { + "name": "items", + "type": "variable", + "value": "filterChips" + }, + { + "name": "showAll", + "type": "expression", + "value": "!!showFilterSection" + }, + { + "name": "numOfRowsToShow", + "type": "number", + "value": "1" + }, + { + "name": "onItemsRendered", + "type": "variable", + "value": "handleItemsRendered" + }, + { + "name": "onItemsOverflow", + "type": "variable", + "value": "handleItemsOverflow" + }, + { + "name": "onItemsOverflowIndicatorClick", + "type": "variable", + "value": "handleItemsHiddenIndicatorClick" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"filterChipsItemList\"" + } + ] + } + ] + }, + { + "component": "SolaceEnvironmentChip", + "count": 19, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/EnvironmentChip.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "option" + }, + { + "name": "dataQa", + "type": "variable", + "value": "dataQa" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "maxWidth" + }, + { + "name": "onDelete", + "type": "expression", + "value": "onDelete || null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/components/ReferencedVersions/ReferencedMessagingServiceListItem.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "item.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ViewCollectedData.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/ModeledEventMeshDesignAudit.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentChipOption" + }, + { + "name": "dataQa", + "type": "string", + "value": "headerEnvironmentChip" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "context.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeContextSelector.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "contextOption.environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EnvironmentAccordion.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environmentOption" + }, + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "maxWidth", + "type": "string", + "value": "26px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "environment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "bgColor", + "type": "expression", + "value": "miEnvironment.bgColor" + }, + { + "name": "fgColor", + "type": "expression", + "value": "miEnvironment.fgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "miEnvironment.icon" + }, + { + "name": "label", + "type": "expression", + "value": "miEnvironment.label" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/ServiceDetails.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceCard.tsx", + "props": [ + { + "name": "label", + "type": "string", + "value": "" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/CreateService.tsx", + "props": [ + { + "name": "...", + "type": "spread", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/create/components/FieldEnvironment.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "environment.label" + }, + { + "name": "fgColor", + "type": "expression", + "value": "environment.fgColor" + }, + { + "name": "bgColor", + "type": "expression", + "value": "environment.bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "environment.icon" + }, + { + "name": "dataQa", + "type": "string", + "value": "environment" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "dialogState.name || \"Environment Name\"" + }, + { + "name": "fgColor", + "type": "variable", + "value": "fgColor" + }, + { + "name": "bgColor", + "type": "variable", + "value": "bgColor" + }, + { + "name": "icon", + "type": "expression", + "value": "Icons16[dialogState.icon as SolaceEnvironmentIcons]" + } + ] + } + ] + }, + { + "component": "SolaceDrawer", + "count": 16, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/stories/components/SolaceGraphDragAndDrop.stories.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "DEFAULT_LEFT_SIDE_PANEL_WIDTH_IN_PIXEL" + }, + { + "name": "top", + "type": "expression", + "value": "\"50px\"" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + }, + { + "name": "offset", + "type": "expression", + "value": "\"0px\"" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - 100px)`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgentForm.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_FORM_FOOTER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/leftSidePanel/LeftSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "variable", + "value": "resizable" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/DomainGraphSearchPanel.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initSearchPanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SEARCH_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "expression", + "value": "`${DEFAULT_HEADER_HEIGHT_IN_PIXEL + DEFAULT_GRAPH_TOOLBAR_HEIGHT_IN_PIXEL}px`" + }, + { + "name": "offset", + "type": "expression", + "value": "`${leftOffset}px`" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} - ${DEFAULT_GRAPH_TOOLBAR_HEIGHT})`" + }, + { + "name": "anchor", + "type": "string", + "value": "left" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/manageEventApisSideBar/topicFilters/TopicFilterSidePanel.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "minWidth" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/CreateEventApi.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApiEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProductEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/SchemaNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationNew.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT})`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/ApplicationEdit.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "sidePanelOpen" + }, + { + "name": "width", + "type": "variable", + "value": "initialSidePanelWidth" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "onResizeDone", + "type": "variable", + "value": "handleResizeSidePanel" + }, + { + "name": "minWidth", + "type": "variable", + "value": "SIDE_PANEL_MIN_WIDTH" + }, + { + "name": "maxWidth", + "type": "variable", + "value": "sidePanelMaxWidth" + }, + { + "name": "top", + "type": "variable", + "value": "DEFAULT_HEADER_HEIGHT" + }, + { + "name": "height", + "type": "expression", + "value": "`calc(100vh - ${DEFAULT_HEADER_HEIGHT} )`" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/auditLogs/AuditLogDetails.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "!!rowDetails" + }, + { + "name": "resizable", + "type": "boolean", + "value": "true" + }, + { + "name": "top", + "type": "string", + "value": "10.65%" + }, + { + "name": "width", + "type": "number", + "value": "400" + }, + { + "name": "maxWidth", + "type": "number", + "value": "500" + } + ] + } + ] + }, + { + "component": "SolaceToggleButtonGroup", + "count": 10, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/EMAWalkthrough/InstructionButtonGroup.tsx", + "props": [ + { + "name": "options", + "type": "array", + "value": "[\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Docker\",\n\t\t\t\t\tvalue: EmaInstallationTypes.docker,\n\t\t\t\t\tdataQa: \"ema-installation-type-docker\"\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\tlabel: \"Java\",\n\t\t\t\t\tvalue: EmaInstallationTypes.java,\n\t\t\t\t\tdataQa: \"ema-installation-type-java\"\n\t\t\t\t}\n\t\t\t]" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/sidePanel/customAttributePanel/CustomAttributesView.tsx", + "props": [ + { + "name": "options", + "type": "expression", + "value": "getFilterOptions()" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTab" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeTabHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/EventReferencedList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "FILTER_OPTIONS" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/EventList.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "filterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChangeHandler" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "getFilterOptions" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeTabInApplicationFlow" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleApplicationFlowTabClick" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "options", + "type": "variable", + "value": "viewOptions" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleToggleView" + }, + { + "name": "activeValue", + "type": "variable", + "value": "selectedView" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/userManagement/UserManagementMainPage.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "userManagementToggle" + }, + { + "name": "options", + "type": "variable", + "value": "TAB_OPTIONS" + }, + { + "name": "onChange", + "type": "variable", + "value": "onToggleChangeHandler" + }, + { + "name": "activeValue", + "type": "variable", + "value": "filter" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/Runs.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "filterTriggerType" + }, + { + "name": "activeValue", + "type": "variable", + "value": "activeValue" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleFilterByTriggerType" + }, + { + "name": "options", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"All\",\n\t\t\t\t\t\t\t\t\tvalue: \"all\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"Customer\",\n\t\t\t\t\t\t\t\t\tvalue: \"customer\"\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\tlabel: \"System\",\n\t\t\t\t\t\t\t\t\tvalue: \"system\"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + } + ] + }, + { + "component": "SolaceSidePanelLayout", + "count": 23, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/runtimeAgents/RuntimeAgents.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/PageContent.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedMem" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedMem ? (\n\t\t\t\t\t\t undefined}\n\t\t\t\t\t\t\tuserMap={entityCreateUpdateUsersMap}\n\t\t\t\t\t\t/>\n\t\t\t\t\t) : null" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/AuditResultList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/templates/ConfigurationTemplates.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "394" + }, + { + "name": "sidePanelPosition", + "type": "expression", + "value": "SolacePanelPosition.LEFT" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanelContent()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/enums/Enums.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEnum" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApiProduct" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedSchema" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedApplication" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/eventApi/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEventApi" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/catalog/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedEvent" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/domains/Domains.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedDomain" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/Enumerations.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApis/EventApi.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/EventApiProducts.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/schemas/Schemas.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/requests/Requests.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!highlightedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applications/Applications.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/Events.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRow" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "427" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "entitySidePanel" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/common/BaseTableList.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "expression", + "value": "!isEmpty(selectedRowIds)" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "renderSidePanel()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/Connect.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "showPanel" + }, + { + "name": "sidePanelWidth", + "type": "number", + "value": "480" + }, + { + "name": "sidePanelContent", + "type": "expression", + "value": "selectedLibrary ? (\n\t\t\t\t\t<>\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t{selectedLibrary.displayName}\n\t\t\t\t\t\t\t handleSelectLibrary(null)}>\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tGet Started\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t) : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/GridContainer.tsx", + "props": [ + { + "name": "showSidePanel", + "type": "variable", + "value": "panelOpen" + }, + { + "name": "sidePanelContent", + "type": "variable", + "value": "sidePanelMessage" + }, + { + "name": "sidePanelWidth", + "type": "variable", + "value": "MAX_WIDTH" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/Plans.tsx", + "props": [ + { + "name": "sidePanelWidth", + "type": "number", + "value": "500" + }, + { + "name": "showSidePanel", + "type": "boolean", + "value": "true" + }, + { + "name": "sidePanelContent", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboardSidePanel.tsx", + "props": [ + { + "name": "sidePanelWidth", + "type": "number", + "value": "400" + }, + { + "name": "showSidePanel", + "type": "expression", + "value": "!!selectedRowId" + }, + { + "name": "sidePanelContent", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "component": "SolaceGridList", + "count": 30, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedMessagingServiceList" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getMessagingServiceRow" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "selectedMessagingService?.id" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelectMessagingService" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(10ch,auto) 1fr\"" + }, + { + "name": "dataQa", + "type": "string", + "value": "messagingServiceListOfSelectedMEM" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/SchemaVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderSchemaVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "schemaListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) - 74 : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 52,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/EventVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderEventVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "eventListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, false) : undefined, // minus select all section height\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/entityList/ApplicationVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "listItems" + }, + { + "name": "indicatorVariantIdentifier", + "type": "expression", + "value": "\"variant\"" + }, + { + "name": "emphasizedIdentifier", + "type": "expression", + "value": "\"emphasized\"" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderAppVersionRow" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"minmax(auto, auto) minmax(auto, auto) 16px\"" + }, + { + "name": "dataQa", + "type": "variable", + "value": "appVersionListDataQa" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\t\theight: listHeight ? getVirtualVersionListHeight(listHeight, true, true) : undefined,\n\t\t\t\t\t\t\titemHeight: 74,\n\t\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/graph/searchPanel/EntityVersionList.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "entityVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "mapEntity" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "highlightedEntityVersionId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "processEntityVersionHighlight" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(auto, auto) minmax(auto, auto) 16px" + }, + { + "name": "dataQa", + "type": "expression", + "value": "\"appDomainGraphSearchResultsGrid_\" + entityType" + }, + { + "name": "virtualizedListOption", + "type": "object", + "value": "{\n\t\t\t\t\t\theight: listHeight ? listHeight - SEARCH_LIST_TABS_HEIGHT : undefined,\n\t\t\t\t\t\titemHeight: SEARCH_LIST_ITEM_HEIGHT,\n\t\t\t\t\t\toverscanCount: 20\n\t\t\t\t\t}" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/eventApiProducts/association/IncludedEventApiProducts.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "eventApiProductVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + }, + { + "name": "dataQa", + "type": "string", + "value": "eventApiProductList" + }, + { + "name": "background", + "type": "string", + "value": "white" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/events/schemaDrawer/ManageEventSchemas.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "primitiveSchemaTypeOptions" + }, + { + "name": "onSelection", + "type": "variable", + "value": "onPrimitiveTypeChange" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getPrimitiveTypeRowComponents" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedPrimitiveType" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto" + }, + { + "name": "dataQa", + "type": "string", + "value": "primitiveTypes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsEdit.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sortedRelationshipVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/LinkedApplicationsView.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "filteredAndSortedVersions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "getListRow" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "auto 0fr" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/DeleteEdgeConfirmationDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "affectedTransformations.map((transformation) => ({\n\t\t\t\t\t\t\tsource: findFieldData(transformation.source.solGraphNodeId, ConnectorDirection.Source)?.propertyName,\n\t\t\t\t\t\t\ttarget: findFieldData(transformation.target.solGraphNodeId, ConnectorDirection.Target)?.propertyName\n\t\t\t\t\t\t}))" + }, + { + "name": "headers", + "type": "array", + "value": "[en.connectors.labels.source, en.connectors.labels.target]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item, index) => [\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.source}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t,\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t{item.target}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t]" + }, + { + "name": "gridTemplate", + "type": "expression", + "value": "\"1fr 1fr\"" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/meshes/list/Meshes.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "meshes" + }, + { + "name": "items", + "type": "variable", + "value": "meshes" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "event-meshes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/ClientLibraries.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "libraries" + }, + { + "name": "dataQa", + "type": "string", + "value": "libraries" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "90px 1fr 1fr 120px" + }, + { + "name": "items", + "type": "variable", + "value": "librarySummaries" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedId" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleSelection" + }, + { + "name": "headers", + "type": "array", + "value": "[\n\t\t\t\tt({ id: \"id_technology\", message: \"Technology\" }),\n\t\t\t\tt({ id: \"id_library\", message: \"Library\" }),\n\t\t\t\tview === \"language\" ? t({ id: \"id_protocol\", message: \"Protocol\" }) : t({ id: \"id_language\", message: \"Language\" }),\n\t\t\t\t\"\"\n\t\t\t]" + }, + { + "name": "rowMapping", + "type": "function", + "value": "(item) => [\n\t\t\t\t\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{item.name}\n\t\t\t\t,\n\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t{view === \"language\" ? item.protocol : item.languages}\n\t\t\t\t,\n\t\t\t\t\n\t\t\t\t\t handleSelection(item)}>\n\t\t\t\t\t\tGet Started\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/dialogs/LdapManagementAccessDialog.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`ldap-groups-${id}`" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/HostnamesCard.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "hostnames" + }, + { + "name": "dataQa", + "type": "string", + "value": "hostnames" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "hostnames" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/cards/SyslogForwardingCard.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "syslog-forwarding" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "syslogs" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "clientCertAuths" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "dataQa", + "type": "expression", + "value": "`client-profiles`" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "variable", + "value": "profiles" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "getServiceLimits() as LimitsData[]" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "serviceLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertMsgSpoolLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(true)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "msgSpoolLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "sapAddonLimitsData" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "erpLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/serviceLimits/ServiceLimits.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "convertConnectorLimits()" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "rowMapping", + "type": "expression", + "value": "rowMapping(false)" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorsLimitsList" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/ViewEnvironmentsGrid.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "environments ? environments : []" + }, + { + "name": "headers", + "type": "variable", + "value": "columnHeaders" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "withActionColumnMapping" + }, + { + "name": "selectedItemId", + "type": "expression", + "value": "isSidePanelOpen ? selectedId : 0" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 200px 200px 200px 24px" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentGridList" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "expression", + "value": "gridRowMaxVisible()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/TracingSynchDialog.tsx", + "props": [ + { + "name": "items", + "type": "expression", + "value": "_.concat(outOfSyncServices, syncedServices)" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(350px, 2fr) 120px 24px" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "10" + }, + { + "name": "dataQa", + "type": "string", + "value": "out-of-sync-collectors" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterDatacenters.tsx", + "props": [ + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "items", + "type": "expression", + "value": "datacenterQueries.data" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + }, + { + "name": "dataQa", + "type": "string", + "value": "datacenter-list" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/infra/src/pages/clusters/clusterDetails/ClusterNetwork.tsx", + "props": [ + { + "name": "headers", + "type": "variable", + "value": "subnetHeaders" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "subnetGridTemplate" + }, + { + "name": "items", + "type": "expression", + "value": "cluster.virtualNetwork.subnets" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "renderRow" + }, + { + "name": "dataQa", + "type": "string", + "value": "subnet-list" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/NotificationContacts.tsx", + "props": [ + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "items", + "type": "variable", + "value": "items" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "250px 1fr 100px 50px" + }, + { + "name": "dataQa", + "type": "string", + "value": "platform-notification-contacts-list" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "dcTuningstate" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "items", + "type": "variable", + "value": "wanTuningDaemonSetStatus" + }, + { + "name": "headers", + "type": "array", + "value": "['Service Tier', 'Version', 'Status(D/C/R/U/A)', 'Up-To-Date Services', 'All Services']" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "4" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(100px, 150px) 100px minmax(50px, 150px) minmax(50px, 150px) minmax(120px, 1fr) " + }, + { + "name": "onSelection", + "type": "function", + "value": "(item) => {\n setSelectedItemId(item.serviceTier as ServiceTier)\n setActiveTabFeature(WanTuningFeatures.CHECK_DAEMON_SET_POD)\n dispatch(clearDaemonSetPodStatus())\n }" + }, + { + "name": "selectedItemId", + "type": "variable", + "value": "selectedItemId" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "service-tier-grid-list" + }, + { + "name": "items", + "type": "variable", + "value": "wanTuningPodStatus" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "200px 90px 400px 400px 400px" + }, + { + "name": "headers", + "type": "array", + "value": "[\"Pod Name\", \"Pod Status\", \"Attached Node\", \"Message Broker Pod\", \"Recent Events\"]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/TracingDestinationTable.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "tracingProfile" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "numOfGridListItemDisplayed", + "type": "number", + "value": "10" + }, + { + "name": "dataQa", + "type": "string", + "value": "tracing-destinations-table" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "minmax(5px, 15px) minmax(120px, 300px) minmax(120px, 1fr) minmax(120px, 150px) 150px" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "items", + "type": "variable", + "value": "noItemsFound" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "emptyRowMapping" + }, + { + "name": "dataQa", + "type": "string", + "value": "empty-tracing-destinations-table" + }, + { + "name": "gridTemplate", + "type": "string", + "value": "1fr" + } + ] + } + ] + }, + { + "component": "SolaceSplitPane", + "count": 2, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/runtime/ModeledEventMeshMessagingServices.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "-700" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshEdit.tsx", + "props": [ + { + "name": "minSize", + "type": "number", + "value": "500" + }, + { + "name": "defaultSize", + "type": "number", + "value": "500" + }, + { + "name": "maxSize", + "type": "expression", + "value": "Math.max(500, leftPanelMaxWidth)" + } + ] + } + ] + }, + { + "component": "SolaceEnvironmentSelectChip", + "count": 4, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/architecture/ModeledEventMeshes/components/EnvironmentSelector.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "MEMListEnvironmentSelector" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment?.environmentId" + }, + { + "name": "onChange", + "type": "function", + "value": "({ value }) => handleChangeEnvironmentSelector(value, selectedEnvironment.showAllResources)" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + }, + { + "name": "dataQa", + "type": "string", + "value": "REMHeaderEnvironmentSelector" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/Connectors.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/agents/Agents.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/Services.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "environment" + }, + { + "name": "value", + "type": "expression", + "value": "selectedEnvironment.environmentId" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleSetEnvironment" + }, + { + "name": "options", + "type": "variable", + "value": "environmentOptions" + } + ] + } + ] + }, + { + "component": "SolaceTextDiff", + "count": 2, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "runtimeAttributes" + }, + { + "name": "text2", + "type": "variable", + "value": "designerAttributes" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/CompareSchemaConfigurationDialog.tsx", + "props": [ + { + "name": "text1", + "type": "variable", + "value": "schemaBody" + }, + { + "name": "text2", + "type": "variable", + "value": "secondSchemaBody" + } + ] + } + ] + }, + { + "component": "SolaceTag", + "count": 10, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.match]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.partialMatch]" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.OUTLINED" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.designerOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/topology/mems/audit/sharedAuditStyles.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "AUDIT_RESULT_STATUS[AUDIT_RESULT_VALUES.runtimeOnly]" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.infoBgBlue" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.DARK_GREY" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"ENABLED\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "\"DISABLED\"" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "TaskStatus.COMPLETED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_BG_GREEN" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.SUCCESS_GREEN_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/ServicesMonitoringSettings.tsx", + "props": [ + { + "name": "clickable", + "type": "boolean", + "value": "true" + }, + { + "name": "label", + "type": "expression", + "value": "TaskStatus.FAILED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/DatacenterTuningState.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "`${row.daemonSetStatus.desired}/${row.daemonSetStatus.currentScheduled}/${row.daemonSetStatus.ready}/${row.daemonSetStatus.upToDate}/${row.daemonSetStatus.available}`" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "(allEleInArrayAreSame(Object.values(row.daemonSetStatus))) ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "(allEleInArrayAreSame(Object.values(row.daemonSetStatus)))? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/wanTuningManagement/CheckPodStatus.tsx", + "props": [ + { + "name": "key", + "type": "expression", + "value": "`podStatus-${index}`" + }, + { + "name": "label", + "type": "expression", + "value": "row.podStatus" + }, + { + "name": "variant", + "type": "expression", + "value": "CHIP_VARIANT.FILLED" + }, + { + "name": "fillColor", + "type": "expression", + "value": "row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_BG_GREEN : CHIP_COLORS.ERROR_BG_RED" + }, + { + "name": "labelColor", + "type": "expression", + "value": "row.podStatus === \"Running\" ? CHIP_COLORS.SUCCESS_GREEN_LABEL : CHIP_COLORS.ERROR_RED_LABEL" + } + ] + } + ] + }, + { + "component": "SolaceJsonSchemaForm", + "count": 2, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/restDeliveryPoint/RESTConsumerJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\t\tid: \"restConsumerJsonSchemaForm\",\n\t\t\t\t\tschema: cloneDeep(schema)\n\t\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\t\tisHidden: (fieldType) => {\n\t\t\t\t\t\tswitch (fieldType) {\n\t\t\t\t\t\t\tcase \"submitButton\":\n\t\t\t\t\t\t\tcase \"title\":\n\t\t\t\t\t\t\tcase \"description\":\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\ttagName: \"div\"\n\t\t\t\t}" + }, + { + "name": "readOnly", + "type": "expression", + "value": "!onChange" + }, + { + "name": "disabled", + "type": "expression", + "value": "!enabled" + }, + { + "name": "onChange", + "type": "variable", + "value": "onChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\t\tconst { name, message } = error;\n\t\t\t\t\tlet newMessage;\n\n\t\t\t\t\tif (name === \"required\") {\n\t\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name === \"const\" || name === \"oneOf\") {\n\t\t\t\t\t\tnewMessage = \"\"; // hide errors the user can do nothing about\n\t\t\t\t\t} else if (message) {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t} else if (name) {\n\t\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t\t}\n\n\t\t\t\t\terror.message = newMessage;\n\n\t\t\t\t\treturn error;\n\t\t\t\t}" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => {\n\t\t\t\t\tconst newProps = { ...props };\n\n\t\t\t\t\tnewProps.label = messages[newProps.label] ?? newProps.label;\n\t\t\t\t\tnewProps.title = messages[newProps.title] ?? newProps.title;\n\n\t\t\t\t\tif (newProps.schema?.const !== undefined) {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\tif (!onChange && newProps.id === \"restConsumerJsonSchemaForm__oneof_select\") {\n\t\t\t\t\t\tnewProps.readonly = true;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn newProps;\n\t\t\t\t}" + }, + { + "name": "ajvClass", + "type": "variable", + "value": "Ajv2019" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/configuration/RuntimeConfigurationJsonSchemaForm.tsx", + "props": [ + { + "name": "formData", + "type": "variable", + "value": "formData" + }, + { + "name": "formItem", + "type": "object", + "value": "{\n\t\t\t\tid: \"solaceQueueForm\",\n\t\t\t\tschema: cloneDeep(schema)\n\t\t\t}" + }, + { + "name": "formOptions", + "type": "object", + "value": "{\n\t\t\t\torder: getOrder(schema.properties),\n\t\t\t\tisHidden\n\t\t\t}" + }, + { + "name": "onChange", + "type": "variable", + "value": "handleOnChange" + }, + { + "name": "transformError", + "type": "function", + "value": "(error: any) => {\n\t\t\t\tconst { name, message, property } = error;\n\t\t\t\tlet newMessage;\n\n\t\t\t\tif (name === \"required\") {\n\t\t\t\t\tnewMessage = \"Required. Enter a value\";\n\t\t\t\t} else if (name === \"pattern\") {\n\t\t\t\t\t// display any available placeholder value if it's a pattern error\n\t\t\t\t\tif (property === \".queueName\" && schema.properties.queueName.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.queueName.placeholder})`;\n\t\t\t\t\t} else if (property === \".deadMsgQueue\" && schema.properties.deadMsgQueue.placeholder) {\n\t\t\t\t\t\tnewMessage = `Value ${message} (${schema.properties.deadMsgQueue.placeholder})`;\n\t\t\t\t\t} else {\n\t\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t\t}\n\t\t\t\t} else if (message) {\n\t\t\t\t\tnewMessage = `Value ${message}`;\n\t\t\t\t} else if (name) {\n\t\t\t\t\t// i.e. no detail message\n\t\t\t\t\tnewMessage = \"Value is invalid\";\n\t\t\t\t}\n\n\t\t\t\terror.message = newMessage;\n\n\t\t\t\treturn error;\n\t\t\t}" + }, + { + "name": "transformTitle", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + }, + { + "name": "transformWidget", + "type": "function", + "value": "(props) => transformProps(props, showPropertyNames)" + } + ] + } + ] + }, + { + "component": "SolaceAttributeValuePairForm", + "count": 5, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionForm.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "avpKeyValidationCallback", + "type": "variable", + "value": "validateEnumKeys" + }, + { + "name": "avpValueValidationCallback", + "type": "variable", + "value": "validateEnumValues" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Enumeration value is required" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => {\n\t\t\t\t\t\t\t\t\t\tonChange(e);\n\t\t\t\t\t\t\t\t\t}" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error ? getErrorMessage(error) : null" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumVersionValuesFormValues?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50,\n\t\t\t\t\t\t\t\t\t\t\t\t\tinitialTopMostItemIndex: VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/enumerations/EnumerationVersionDetails.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "name", + "type": "expression", + "value": "\"enumerationVersion[values]\"" + }, + { + "name": "avpList", + "type": "expression", + "value": "enumerationVersion.values" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "\"Value\"" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "\"Description\"" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "emptyFieldDisplayValue", + "type": "string", + "value": "-" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "true" + }, + { + "name": "avpListMaxHeight", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD ? `${VIRTUALIZED_LIST_HEIGHT}px` : undefined" + }, + { + "name": "virtualizedAvpListOption", + "type": "expression", + "value": "enumerationVersion?.values?.length <= VIRTUALIZED_LIST_THRESHOLD\n\t\t\t\t\t\t\t\t\t\t\t? undefined\n\t\t\t\t\t\t\t\t\t\t\t: {\n\t\t\t\t\t\t\t\t\t\t\t\t\theight: VIRTUALIZED_LIST_HEIGHT,\n\t\t\t\t\t\t\t\t\t\t\t\t\tincreaseViewportBy: 50\n\t\t\t\t\t\t\t\t\t\t\t }" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/TopicHeaderMapping.tsx", + "props": [ + { + "name": "name", + "type": "string", + "value": "targetHeaderMapping" + }, + { + "name": "avpList", + "type": "variable", + "value": "values" + }, + { + "name": "labelForValues", + "type": "expression", + "value": "() as unknown as string" + }, + { + "name": "labelForKeys", + "type": "expression", + "value": "en.connectors.targetHeaderMapping.targetHeader" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(avpList) => setValues([...avpList])" + }, + { + "name": "disableReorder", + "type": "boolean", + "value": "true" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "false" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key" + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value" + }, + { + "name": "enableRequiredKeyFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "enableRequiredValueFieldIndicator", + "type": "boolean", + "value": "true" + }, + { + "name": "readOnly", + "type": "boolean", + "value": "false" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Required Field!" + }, + { + "name": "avpKeyValidationCallback", + "type": "function", + "value": "(currentInput, values) => keyValidator(currentInput, values)" + }, + { + "name": "avpValueValidationCallback", + "type": "function", + "value": "(currentInput, values) => valueValidator(currentInput, values)" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => onChange(e)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!_.isEmpty(error)" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "name" + }, + { + "name": "name", + "type": "variable", + "value": "name" + }, + { + "name": "avpList", + "type": "expression", + "value": "value || []" + }, + { + "name": "labelForKeys", + "type": "string", + "value": "Key" + }, + { + "name": "labelForValues", + "type": "string", + "value": "Value" + }, + { + "name": "keyRequired", + "type": "boolean", + "value": "true" + }, + { + "name": "keyIsRequiredMessage", + "type": "string", + "value": "Key should exist with the value" + }, + { + "name": "onAVPListUpdate", + "type": "function", + "value": "(e) => onChange(e)" + }, + { + "name": "hasErrors", + "type": "expression", + "value": "!!error" + }, + { + "name": "helperText", + "type": "expression", + "value": "error?.message" + }, + { + "name": "disableReorder", + "type": "boolean", + "value": "true" + } + ] + } + ] + }, + { + "component": "SolaceDonutChart", + "count": 1, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/applicationDetails/useEventAccessRequests.tsx", + "props": [ + { + "name": "data", + "type": "expression", + "value": "getPieChartData()" + }, + { + "name": "showTooltip", + "type": "boolean", + "value": "true" + }, + { + "name": "icon", + "type": "jsx", + "value": "" + } + ] + } + ] + }, + { + "component": "SolaceStepper", + "count": 3, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/ep/src/pages/designer/aiWizard/AIWizard.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "variable", + "value": "handleSetActiveStepRequest" + }, + { + "name": "onClose", + "type": "function", + "value": "() => history.push(\"/ep/designer\")" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "handleSubmit" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "messages.aiWizardButton.submit" + }, + { + "name": "disableSubmit", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/StepperWrapper.tsx", + "props": [ + { + "name": "steps", + "type": "expression", + "value": "renderSteps()" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "variable", + "value": "onClose" + }, + { + "name": "onSubmit", + "type": "variable", + "value": "onSubmit" + }, + { + "name": "onSecondarySubmit", + "type": "variable", + "value": "onSecondarySubmit" + }, + { + "name": "submitLabel", + "type": "variable", + "value": "submitLabel" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? secondarySubmitLabel : undefined" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CreateConnectorV2.tsx", + "props": [ + { + "name": "steps", + "type": "variable", + "value": "steps" + }, + { + "name": "activeStep", + "type": "variable", + "value": "activeStep" + }, + { + "name": "setActiveStep", + "type": "function", + "value": "(step) => setActiveStep(step)" + }, + { + "name": "onClose", + "type": "function", + "value": "() => discardChangesAndClose()" + }, + { + "name": "onSubmit", + "type": "function", + "value": "() => onSubmit(true)" + }, + { + "name": "secondarySubmitLabel", + "type": "expression", + "value": "activeStep === steps.length - 1 ? en.connectors.buttons.create : undefined" + }, + { + "name": "onSecondarySubmit", + "type": "function", + "value": "() => onSubmit(false)" + }, + { + "name": "submitLabel", + "type": "expression", + "value": "en.connectors.buttons.createDeploy" + }, + { + "name": "stepContentOverflow", + "type": "expression", + "value": "showMiTransformation && activeStep === 2 ? StepContentOverflow.Hidden : StepContentOverflow.Auto" + } + ] + } + ] + }, + { + "component": "SolaceFileUploader", + "count": 3, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/PayloadSection.tsx", + "props": [ + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "accept", + "type": "object", + "value": "{\n\t\t\t\t\t\t\t\t\"application/json\": [\".json\"]\n\t\t\t\t\t\t\t}" + }, + { + "name": "onFileChange", + "type": "function", + "value": "(files) => {\n\t\t\t\t\t\t\t\tsetUploadDialogErrorText(\"\");\n\t\t\t\t\t\t\t\tsetFileImported(files);\n\t\t\t\t\t\t\t}" + }, + { + "name": "errorText", + "type": "variable", + "value": "uploadDialogErrorText" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/formUtils/ConnectorFormUtils.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "props.id" + }, + { + "name": "label", + "type": "expression", + "value": "props.label" + }, + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "maxFiles", + "type": "number", + "value": "1" + }, + { + "name": "onFileChange", + "type": "function", + "value": "async (files) => props.onChange(await fileUpload(files))" + }, + { + "name": "readOnly", + "type": "expression", + "value": "props.readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "props.value ? [\"\"] : []" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/authentication/ClientCertAuthenticationDetails.tsx", + "props": [ + { + "name": "dataQa", + "type": "string", + "value": "sslKeyStoreFileUploader" + }, + { + "name": "onFileChange", + "type": "variable", + "value": "handleFileChange" + }, + { + "name": "readOnly", + "type": "variable", + "value": "readOnly" + }, + { + "name": "fileNames", + "type": "expression", + "value": "clientCertValues.sslKeyStore ? [clientCertValues.sslKeyStore] : []" + }, + { + "name": "errorText", + "type": "expression", + "value": "solaceValidationErrors.sslKeyStore" + } + ] + } + ] + }, + { + "component": "SolaceFeatureTag", + "count": 3, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/transformations/Mapping.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorUtils.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "beta" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/dialogs/AiMappingConfirmationDialog.tsx", + "props": [ + { + "name": "text", + "type": "string", + "value": "Experimental" + } + ] + } + ] + }, + { + "component": "SolaceEmptyStateBanner", + "count": 1, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorsEmptyState.tsx", + "props": [ + { + "name": "bannerImage", + "type": "jsx", + "value": "" + }, + { + "name": "subtitle", + "type": "expression", + "value": "en.connectors.labels.emptyState.subtitle" + }, + { + "name": "title", + "type": "expression", + "value": "en.connectors.labels.emptyState.title" + }, + { + "name": "description", + "type": "expression", + "value": "en.connectors.labels.emptyState.description" + }, + { + "name": "primaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.checkoutAvailableConnectors,\n\t\t\t\tonClick: onPrimaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-primary-button\"\n\t\t\t}" + }, + { + "name": "secondaryButton", + "type": "object", + "value": "{\n\t\t\t\tlabel: en.connectors.buttons.exploreOnMyOwn,\n\t\t\t\tonClick: onSecondaryButtonClick,\n\t\t\t\tdataQa: \"connectors-empty-state-secondary-button\"\n\t\t\t}" + } + ] + } + ] + }, + { + "component": "SolacePopover", + "count": 6, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/topicHeader/HeaderExpression.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "full" + }, + { + "name": "title", + "type": "jsx", + "value": "" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSample.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorCards/ConnectorCards.tsx", + "props": [ + { + "name": "title", + "type": "expression", + "value": "handleHover(connectorType)" + }, + { + "name": "placement", + "type": "string", + "value": "bottom" + }, + { + "name": "id", + "type": "expression", + "value": "`connector-card-popover-${connectorType.id}`" + }, + { + "name": "maxWidth", + "type": "string", + "value": "medium" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/connectorsListView/ConnectorTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/ConnectorSidePanel.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/agents/agentsListView/AgentTable.tsx", + "props": [ + { + "name": "maxWidth", + "type": "string", + "value": "medium" + }, + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "placement", + "type": "string", + "value": "bottom-end" + } + ] + } + ] + }, + { + "component": "SolaceBreadcrumb", + "count": 16, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/IntegrationEnvironmentWrapper.tsx", + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/ViewConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: \"Micro-Integrations\", link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: `/${id}`,\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/CloneConnector.tsx", + "props": [ + { + "name": "paths", + "type": "expression", + "value": "breadcrumbsPaths2()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/pages/connectors/EditConnectorV2.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: en.connectors.connectorFlows, link: CONNECTOR },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\ttitle: connectorDetails?.name ?? \"\",\n\t\t\t\t\t\t\t\t\tlink: \"editV2\",\n\t\t\t\t\t\t\t\t\tcurrent: true\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/ServiceAuthentications.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_service_authentications\", message: \"Service Authentications\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityCertificateAuthorities.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_cert_auths\", message: \"Certificate Authorities\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/details/components/manage/panels/SecurityClientProfiles.tsx", + "props": [ + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_auth_security\", message: \"Authentication and Security\" }), link: linkAuthSecurity },\n\t\t\t\t\t\t\t\t{ title: t({ id: \"id_client_profiles\", message: \"Client Profiles\" }), link: \"\", current: true }\n\t\t\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/GroupManagement/GroupManagement.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "groupManagementBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/account-details/user-groups\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.userManagement}`\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: `${userGroupManagement.groupManagement}`\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notifications/NotificationDetails.tsx", + "props": [ + { + "name": "maxItems", + "type": "number", + "value": "2" + }, + { + "name": "dataQa", + "type": "string", + "value": "NotificationLinksBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(route) => history.push(route)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/notifications\",\n\t\t\t\t\t\t\ttitle: en.notifications.notifications\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: notificationTitle\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/CustomerDetails.tsx", + "props": [ + { + "name": "onRouteClick", + "type": "variable", + "value": "onBreadcumbClick" + }, + { + "name": "paths", + "type": "variable", + "value": "customerDetailsPath" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/AggregationDetails.tsx", + "props": [ + { + "name": "onRouteClick", + "type": "variable", + "value": "onBreadcumbClick" + }, + { + "name": "paths", + "type": "variable", + "value": "customerDetailsPath" + }, + { + "name": "maxItems", + "type": "number", + "value": "2" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/environments/Environments.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "environmentsBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "3" + }, + { + "name": "dataQa", + "type": "string", + "value": "environmentsBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Environments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/integrationDashboard/IntegrationDashboard.tsx", + "props": [ + { + "name": "paths", + "type": "variable", + "value": "breadcrumbs" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "connectorBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "3" + }, + { + "name": "dataQa", + "type": "string", + "value": "connectorBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Connector Deployments\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "4" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + service?.orgId,\n\t\t\t\t\t\t\ttitle: service?.orgId as string\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: `/organizations/${service?.orgId}/distributed-tracing`,\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing Collector Details\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "maxItems", + "type": "number", + "value": "3" + }, + { + "name": "dataQa", + "type": "string", + "value": "distributedTracingBreadcrumb" + }, + { + "name": "onRouteClick", + "type": "function", + "value": "(link) => history.push(link)" + }, + { + "name": "paths", + "type": "array", + "value": "[\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations\",\n\t\t\t\t\t\t\ttitle: \"Organizations\"\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: false,\n\t\t\t\t\t\t\tlink: \"/organizations/\" + orgId,\n\t\t\t\t\t\t\ttitle: orgId\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tcurrent: true,\n\t\t\t\t\t\t\tlink: \"\",\n\t\t\t\t\t\t\ttitle: \"Distributed Tracing\"\n\t\t\t\t\t\t}\n\t\t\t\t\t]" + } + ] + } + ] + }, + { + "component": "SolaceBackDrop", + "count": 17, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/ConnectorMetrics.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "connectorDetailsLoading || connectorMetricsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/connectors/summary/CreateSummaryStepView.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/intg/src/components/SuspenseLoader.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/notificationSettings/NotificationSettings.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "saveInProgress" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/accountDetailsShell/AccountDetailsShell.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/insightsSettings/InsightsSettings.tsx", + "props": [ + { + "name": "open", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/Tokens.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "isTokensListLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/components/TokenForm.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "isPageLoading || createTokenIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/tokenManagement/TokenDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "tokenIsLoading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/insights/components/OrganizationMonitoringSettings.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loadingOrgDetails" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ManageServiceTypes.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loadingInfrastructures" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/SidekickDeploymentDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/connector/Connector.tsx", + "props": [ + { + "name": "open", + "type": "expression", + "value": "isLoading && isLoadingMicroIntegrations && isLoadingAgents" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/PrivateRegions.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "datacenterLoading" + }, + { + "name": "data-qa", + "type": "string", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/CollectorDetails.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/DistributedTracing.tsx", + "props": [ + { + "name": "open", + "type": "variable", + "value": "loading" + } + ] + } + ] + }, + { + "component": "SolaceGridListMultiSelect", + "count": 1, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/mc/src/pages/services/list/components/ServiceListView.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "services" + }, + { + "name": "items", + "type": "expression", + "value": "services ?? []" + }, + { + "name": "headers", + "type": "variable", + "value": "headers" + }, + { + "name": "actions", + "type": "variable", + "value": "actions" + }, + { + "name": "rowMapping", + "type": "variable", + "value": "rowMapping" + }, + { + "name": "gridTemplate", + "type": "variable", + "value": "gridTemplate" + }, + { + "name": "dataQa", + "type": "string", + "value": "services" + }, + { + "name": "selectedRowIds", + "type": "variable", + "value": "selectedIds" + }, + { + "name": "onSelection", + "type": "variable", + "value": "handleRowSelection" + } + ] + } + ] + }, + { + "component": "SolaceStackLabel", + "count": 10, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/environments/components/EnvironmentsDialog.tsx", + "props": [ + { + "name": "id", + "type": "expression", + "value": "`environment-type-label`" + }, + { + "name": "htmlForId", + "type": "expression", + "value": "`isProduction`" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ui/blob/develop/micro-frontends/saas/src/pages/distributedTracing/components/formComponents.tsx", + "props": [ + { + "name": "required", + "type": "expression", + "value": "!!required" + }, + { + "name": "id", + "type": "expression", + "value": "id ?? name.toLowerCase()" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/components/FormLabel.util.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/CreateServiceType.tsx", + "props": [ + { + "name": "required", + "type": "variable", + "value": "required" + }, + { + "name": "bold", + "type": "variable", + "value": "bold" + }, + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/serviceTypes/ReleaseServicePackage.tsx", + "props": [ + { + "name": "id", + "type": "string", + "value": "metadata" + }, + { + "name": "bold", + "type": "boolean", + "value": "true" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/sidekickDeployments/components/components.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "currentDatacenterIdField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/privateRegions/components/CloneDialog.tsx", + "props": [ + { + "name": "bold", + "type": "boolean", + "value": "true" + }, + { + "name": "required", + "type": "boolean", + "value": "true" + }, + { + "name": "id", + "type": "string", + "value": "sourceDatacenterIdField" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/distributedTracing/collectorDetails/components/components.tsx", + "props": [ + { + "name": "id", + "type": "variable", + "value": "id" + } + ] + } + ] + }, + { + "component": "SolaceLearningBanner", + "count": 7, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/customers/components/CustomerSummaryCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.common.white" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/QueryBuilder.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/plans/components/plansForm/PlansForm.tsx", + "props": [] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/run/components/RunStatusBar.tsx", + "props": [ + { + "name": "title", + "type": "jsx", + "value": "" + }, + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.background.paper" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/automaticUpgrades/runs/components/runsForm/RunsForm.tsx", + "props": [ + { + "name": "title", + "type": "string", + "value": "Plan Description" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/DrawdownUsage.tsx", + "props": [ + { + "name": "showCloseButton", + "type": "boolean", + "value": "true" + }, + { + "name": "title", + "type": "expression", + "value": "drawdownUsage.messages.title" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownUsageFormulaCard" + }, + { + "name": "backgroundColor", + "type": "string", + "value": "#E6F2FF" + }, + { + "name": "onClose", + "type": "variable", + "value": "handleCloseDisplayMessage" + } + ] + }, + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/drawdownUsage/components/DrawdownUsageCostCard/DrawdownUsageCostCard.tsx", + "props": [ + { + "name": "backgroundColor", + "type": "expression", + "value": "theme.palette.primary.contrastText" + }, + { + "name": "dataQa", + "type": "string", + "value": "drawdownCard" + } + ] + } + ] + }, + { + "component": "SolaceChipTextArea", + "count": 1, + "instances": [ + { + "filePath": "https://github.com/SolaceDev/maas-ops-ui/blob/develop/micro-frontends/maas-ops-react/src/pages/organizationDetails/components/ManageNotificationContactDialog.tsx", + "props": [ + { + "name": "label", + "type": "expression", + "value": "organizationDetails.manageNotificationContactDialog.label" + }, + { + "name": "id", + "type": "string", + "value": "demoChipTextAreaId" + }, + { + "name": "name", + "type": "string", + "value": "demoChipTextArea" + }, + { + "name": "value", + "type": "variable", + "value": "dialogEmails" + }, + { + "name": "validateChip", + "type": "variable", + "value": "emailValidationFunction" + }, + { + "name": "onChange", + "type": "function", + "value": "(e: { allValues: string; chips: ChipData[] }) => {\n\t\t\t\t\thandleEmailsChange(e.allValues, e.chips);\n\t\t\t\t}" + }, + { + "name": "hasErrors", + "type": "variable", + "value": "hasErrors" + }, + { + "name": "helperText", + "type": "expression", + "value": "errorMessage || (updateError ? organizationDetails.manageNotificationContactDialog.errors.updateError : \"\")" + } + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/tools/mrc-usage-report/src/aggregator/dataAggregator.ts b/tools/mrc-usage-report/src/aggregator/dataAggregator.ts new file mode 100644 index 000000000..b4840463d --- /dev/null +++ b/tools/mrc-usage-report/src/aggregator/dataAggregator.ts @@ -0,0 +1,193 @@ +/* eslint-disable @typescript-eslint/no-explicit-any */ +/* eslint-disable sonarjs/cognitive-complexity */ +import { ComponentUsage, ComponentStats, ReportData, AnalysisConfig, ComponentInstance } from "../types"; + +/** + * Aggregates component usage data into statistics + */ +export class DataAggregator { + /** + * Aggregates component usage data into statistics + * @param usages Array of component usages + * @param config Analysis configuration + * @param allComponents All available MRC components + * @param mrcVersions MRC version information by MFE + * @returns Report data + */ + aggregate( + usages: any[], + config: AnalysisConfig, + allComponents: { name: string; path: string }[], + mrcVersions: Record + ): ReportData { + // Group usages by component name + const usagesByComponent = new Map(); + + for (const usage of usages) { + const { componentName } = usage; + if (!usagesByComponent.has(componentName)) { + usagesByComponent.set(componentName, []); + } + usagesByComponent.get(componentName)!.push(usage); + } + + // Generate component stats + const componentStats: ComponentStats[] = []; + const aggregatedUsages: ComponentUsage[] = []; + + for (const [componentName, componentUsages] of usagesByComponent.entries()) { + const instances: ComponentInstance[] = componentUsages.map((usage) => ({ + filePath: usage.filePath, + line: usage.line, + props: usage.props + })); + + aggregatedUsages.push({ + component: componentName, + count: instances.length, + instances + }); + + // Count usages by MFE + const usagesByMfe: Record = {}; + for (const usage of componentUsages) { + usagesByMfe[usage.mfe] = (usagesByMfe[usage.mfe] || 0) + 1; + } + + // Count prop usage + const propCounts = new Map(); + for (const usage of componentUsages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + + // Get most common props + const commonProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // Get files where the component is used + const files = Array.from(new Set(componentUsages.map((usage) => usage.filePath))); + + // Count customization stats + let styledComponentCount = 0; + let customStylesCount = 0; + const overriddenPropertiesCounts: Record = {}; + + for (const usage of componentUsages) { + if (usage.customization?.styledComponent) { + styledComponentCount++; + } + if (usage.customization?.customStyles) { + customStylesCount++; + } + if (usage.customization?.overriddenProperties) { + for (const prop of usage.customization.overriddenProperties) { + overriddenPropertiesCounts[prop] = (overriddenPropertiesCounts[prop] || 0) + 1; + } + } + } + + // Add component stats + componentStats.push({ + componentName, + totalUsages: componentUsages.length, + usagesByMfe, + commonProps, + files, + customization: { + styledComponentCount, + customStylesCount, + overriddenPropertiesCounts + }, + instances + }); + } + + // Sort component stats by total usages + componentStats.sort((a, b) => b.totalUsages - a.totalUsages); + + // Generate overall stats + const totalUsages = usages.length; + + // Most used components + const mostUsedComponents = componentStats.slice(0, 10).map((stats) => ({ + name: stats.componentName, + count: stats.totalUsages + })); + + // Most used props + const propCounts = new Map(); + for (const usage of usages) { + for (const prop of usage.props) { + propCounts.set(prop.name, (propCounts.get(prop.name) || 0) + 1); + } + } + + const mostUsedProps = Array.from(propCounts.entries()) + .map(([name, count]) => ({ name, count })) + .sort((a, b) => b.count - a.count) + .slice(0, 10); + + // MFE usage counts + const mfeUsages: Record = {}; + for (const usage of usages) { + mfeUsages[usage.mfe] = (mfeUsages[usage.mfe] || 0) + 1; + } + + // Find unused components + const usedComponentNames = new Set(componentStats.map((stat) => stat.componentName)); + const unusedComponents = allComponents.filter((comp) => !usedComponentNames.has(comp.name)); + + // Find unused components by MFE + const unusedComponentsByMfe: Record = {}; + + // Initialize with all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe] = []; + } + + // For each component, check which MFEs don't use it + for (const component of allComponents) { + const stat = componentStats.find((s) => s.componentName === component.name); + + if (!stat) { + // If component is not used at all, add to all MFEs + for (const mfe of config.mfes) { + unusedComponentsByMfe[mfe].push(component.name); + } + } else { + // If component is used in some MFEs but not others + for (const mfe of config.mfes) { + if (!stat.usagesByMfe[mfe]) { + unusedComponentsByMfe[mfe].push(component.name); + } + } + } + } + + // Generate report data + const reportData: ReportData = { + generatedAt: new Date().toISOString(), + config, + mrcVersions, + componentStats, + unusedComponents, + unusedComponentsByMfe, + overallStats: { + totalUsages, + mostUsedComponents, + mostUsedProps, + mfeUsages, + totalUnusedComponents: unusedComponents.length + }, + rawData: { + componentUsages: aggregatedUsages + } + }; + + return reportData; + } +} diff --git a/tools/mrc-usage-report/src/index.ts b/tools/mrc-usage-report/src/index.ts new file mode 100644 index 000000000..54c1d60c6 --- /dev/null +++ b/tools/mrc-usage-report/src/index.ts @@ -0,0 +1,332 @@ +#!/usr/bin/env node + +import { Command } from "commander"; +import path from "path"; +import yaml from "js-yaml"; +import fs from "fs"; +import { FileScanner } from "./scanner/fileScanner"; +import { ComponentParser } from "./parser/componentParser"; +import { DataAggregator } from "./aggregator/dataAggregator"; +import { HtmlReporter } from "./reporter/htmlReporter"; +import { AnalysisConfig, MfeInfo, MrcSourceType } from "./types"; + +// Define the program +const program = new Command(); + +program + .name("mrc-usage-report") + .description("Generate a report on MRC component usage across MFEs") + .version("1.0.0") + .option("-o, --output ", "Output directory for the report", "./reports") + .option("-f, --format ", "Output format (html, json, yaml, csv)", "html") + .option("-m, --mfes ", "Comma-separated list of MFEs to analyze") + .option("--all", "Scan all MFEs across maas-ui, maas-ops-ui, and broker-manager") + .option("--mrc-path ", "Path to the maas-react-components repository", path.resolve(process.cwd(), "../..")) + .option("--maas-ui-path ", "Path to the maas-ui repository", "../../maas-ui") + .option("--maas-ops-ui-path ", "Path to the maas-ops-ui repository", "../../maas-ops-ui") + .option("--broker-manager-path ", "Path to the broker-manager repository", "../../broker-manager") + .option("--base-path ", "Base path for the project", process.cwd()) + .option("-s, --source ", "Source type for MRC components (local or github)", "local") + .option("-g, --github", "Use GitHub as the source for MRC components (shorthand for -s github)") + .option( + "--github-url ", + "GitHub repository URL for MRC components", + "https://github.com/SolaceDev/maas-react-components" + ) + .option("--github-branch ", "Branch name for GitHub repository", "main") + .parse(process.argv); + +const options = program.opts(); + +// If -g flag is used, set source type to github +if (options.github) { + options.source = "github"; +} + +// Main function +async function main() { + try { + // console.log(chalk.blue("MRC Component Usage Report Generator")); + // console.log(chalk.gray("----------------------------------------")); + + // Validate options + if (!options.mfes && !options.all) { + // console.error(chalk.red("Error: Either --mfes or --all must be specified.")); + program.help(); + process.exit(1); + } + + if (options.mfes && options.all) { + // console.error(chalk.red("Error: --mfes and --all cannot be used together.")); + program.help(); + process.exit(1); + } + + // Parse options + const basePath = path.resolve(options.basePath); + const mrcPath = path.resolve(options.mrcPath); + const outputDir = path.resolve(options.output); + const outputFormat = options.format as "html" | "json" | "yaml" | "csv"; + const mrcSourceType = options.source as MrcSourceType; + const mrcGithubUrl = options.githubUrl; + const mrcGithubBranch = options.githubBranch; + + // Discover MFEs + const mfeInfos = await discoverMfes( + options.maasUiPath, + options.maasOpsUiPath, + options.brokerManagerPath, + options.mfes, + options.all + ); + const mfes = mfeInfos.map((info) => info.name); + + // Create config + const config: AnalysisConfig = { + mfes, + mrcPath, + outputDir, + outputFormat, + mrcSourceType, + mrcGithubUrl, + mrcGithubBranch, + mfeInfos + }; + + // console.log(chalk.yellow("Configuration:")); + // console.log(` Base Path: ${basePath}`); + // console.log(` MRC Path: ${mrcPath}`); + // console.log(` MFEs: ${mfes.join(", ")}`); + // console.log(` Output Directory: ${outputDir}`); + // console.log(` Output Format: ${outputFormat}`); + // console.log(` MRC Source Type: ${mrcSourceType}`); + // if (mrcSourceType === "github") { + // console.log(` MRC GitHub URL: ${mrcGithubUrl}`); + // console.log(` MRC GitHub Branch: ${mrcGithubBranch}`); + // } + // console.log(""); + + // Step 1: Scan for files + // console.log(chalk.yellow("Step 1: Scanning for files...")); + const fileScanner = new FileScanner(basePath, mfeInfos, mrcSourceType, mrcGithubUrl, mrcGithubBranch); + const files = await fileScanner.scanForFiles(); + // console.log(`Found ${files.length} files to analyze`); + + // Step 2: Scan for MRC components + // console.log(chalk.yellow("Step 2: Scanning for MRC components...")); + const componentFiles = await fileScanner.scanForMrcComponents(mrcPath); + // console.log(`Found ${componentFiles.length} MRC component files`); + + // Get component information + const allComponents = await fileScanner.getMrcComponentInfo(componentFiles, mrcPath); + + // Step 3: Parse files for component usage + // console.log(chalk.yellow("Step 3: Parsing files for component usage...")); + const componentParser = new ComponentParser(mrcPath, mrcSourceType); + await componentParser.initialize(allComponents); + + const allUsages = []; + + for (let i = 0; i < files.length; i++) { + const file = files[i]; + const fileMfeInfo = mfeInfos.find((info) => file.startsWith(info.path)); + if (!fileMfeInfo) { + // console.warn(`Could not determine MFE for file: ${file}`); + continue; + } + + try { + const usages = await componentParser.parseFile(file, fileMfeInfo.name); + allUsages.push(...usages); + + // Log progress every 100 files + if ((i + 1) % 100 === 0 || i === files.length - 1) { + // console.log(` Processed ${i + 1}/${files.length} files, found ${totalUsages} component usages so far`); + } + } catch (error) { + // console.error(`Error parsing file ${file}:`, error); + } + } + + // console.log(`Found ${totalUsages} total component usages`); + + // Step 4: Detect MRC versions for each MFE + // console.log(chalk.yellow("Step 4: Detecting MRC versions...")); + const mrcVersions: Record = {}; + + for (const mfeInfo of mfeInfos) { + try { + const packageJsonPath = path.join(mfeInfo.path, "package.json"); + + if (fs.existsSync(packageJsonPath)) { + const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, "utf8")); + + // Check dependencies and devDependencies + const dependencies = packageJson.dependencies || {}; + const devDependencies = packageJson.devDependencies || {}; + + // Look for MRC package + const mrcPackageName = "@SolaceDev/maas-react-components"; + + if (dependencies[mrcPackageName]) { + mrcVersions[mfeInfo.name] = dependencies[mrcPackageName]; + // console.log(` ${mfeInfo.name}: MRC version ${dependencies[mrcPackageName]}`); + } else if (devDependencies[mrcPackageName]) { + mrcVersions[mfeInfo.name] = devDependencies[mrcPackageName]; + // console.log(` ${mfeInfo.name}: MRC version ${devDependencies[mrcPackageName]}`); + } else { + mrcVersions[mfeInfo.name] = "not found"; + // console.log(` ${mfeInfo.name}: MRC version not found`); + } + } else { + mrcVersions[mfeInfo.name] = "package.json not found"; + // console.log(` ${mfeInfo.name}: package.json not found`); + } + } catch (error) { + mrcVersions[mfeInfo.name] = "error"; + // console.error(` Error getting MRC version for ${mfeInfo.name}:`, error); + } + } + + // Step 5: Aggregate data + // console.log(chalk.yellow("Step 5: Aggregating data...")); + const dataAggregator = new DataAggregator(); + const reportData = dataAggregator.aggregate(allUsages, config, allComponents, mrcVersions); + // console.log(`Generated report data with ${reportData.componentStats.length} component statistics`); + // console.log(`Found ${reportData.unusedComponents.length} unused components`); + + // Step 5: Generate report + // console.log(chalk.yellow("Step 5: Generating report...")); + const reportName = options.all ? "mrc-usage-report-all" : `mrc-usage-report-${mfes.join("-")}`; + + let outputFormats: string[]; + if (Array.isArray(options.format)) { + outputFormats = options.format; + } else if (typeof options.format === "string") { + // Split by comma and trim whitespace from each part + outputFormats = options.format + .split(",") + .map((format) => format.trim()) + .filter(Boolean); + } else { + // Handle cases where format might be undefined or null, default to ['html'] + outputFormats = ["html"]; + } + + for (const format of outputFormats) { + const currentOutputPath = path.join(outputDir, `${reportName}.${format}`); + + if (format === "html") { + const htmlReporter = new HtmlReporter(); + await htmlReporter.generateReport(reportData, currentOutputPath); + // console.log(`HTML report generated at ${currentOutputPath}`); + } else if (format === "json") { + // Create a deep copy for transformation to avoid affecting other reporters + const transformedReportData = JSON.parse(JSON.stringify(reportData)); + + // The filePath is already transformed, so no need to do it again here. + + const jsonOutput = JSON.stringify(transformedReportData, null, 2); + fs.writeFileSync(currentOutputPath, jsonOutput); + // console.log(`JSON report generated at ${currentOutputPath}`); + } else if (format === "yaml") { + const yamlOutput = yaml.dump(reportData, { indent: 2 }); + fs.writeFileSync(currentOutputPath, yamlOutput); + // console.log(`YAML report generated at ${currentOutputPath}`); + } else if (format === "csv") { + // console.error("CSV format not yet implemented"); + // Optionally, you could decide to exit or continue if other formats are requested + } else { + // console.error(`Unsupported format: ${format}`); + } + } + + // console.log(chalk.green("Report generation completed successfully!")); + } catch (error) { + // console.error(chalk.red("Error generating report:"), error); + process.exit(1); + } +} + +async function discoverMfes( + maasUiPath: string, + maasOpsUiPath: string, + brokerManagerPath: string, + mfesOption: string, + allOption: boolean +): Promise { + const mfeInfos: MfeInfo[] = []; + + if (allOption) { + // Discover all MFEs in maas-ui + const excludedMfes = ["api-products", "msc"]; + const maasUiMfePath = path.join(maasUiPath, "micro-frontends"); + const maasUiMfes = fs + .readdirSync(maasUiMfePath) + .filter((file) => fs.statSync(path.join(maasUiMfePath, file)).isDirectory()) + .filter((mfe) => fs.existsSync(path.join(maasUiMfePath, mfe, "package.json"))) + .filter((mfe) => !excludedMfes.includes(mfe)); + for (const mfe of maasUiMfes) { + mfeInfos.push({ + name: mfe, + path: path.join(maasUiMfePath, mfe), + repository: "maas-ui" + }); + } + + // Discover all MFEs in maas-ops-ui + const maasOpsUiMfePath = path.join(maasOpsUiPath, "micro-frontends"); + const maasOpsUiMfes = fs + .readdirSync(maasOpsUiMfePath) + .filter((file) => fs.statSync(path.join(maasOpsUiMfePath, file)).isDirectory()) + .filter((mfe) => fs.existsSync(path.join(maasOpsUiMfePath, mfe, "package.json"))); + for (const mfe of maasOpsUiMfes) { + mfeInfos.push({ + name: mfe, + path: path.join(maasOpsUiMfePath, mfe), + repository: "maas-ops-ui" + }); + } + + // Add broker-manager + mfeInfos.push({ + name: "broker-manager", + path: brokerManagerPath, + repository: "broker-manager" + }); + } else { + const mfes = mfesOption.split(",").filter(Boolean); + for (const mfe of mfes) { + if (mfe === "broker-manager") { + mfeInfos.push({ + name: "broker-manager", + path: brokerManagerPath, + repository: "broker-manager" + }); + } else { + // Assume MFEs are in maas-ui, but check maas-ops-ui if not found + let mfePath = path.join(maasUiPath, "micro-frontends", mfe); + let repository = "maas-ui"; + if (!fs.existsSync(mfePath)) { + mfePath = path.join(maasOpsUiPath, "micro-frontends", mfe); + repository = "maas-ops-ui"; + } + + if (fs.existsSync(mfePath)) { + mfeInfos.push({ + name: mfe, + path: mfePath, + repository + }); + } else { + // console.warn(`MFE not found in maas-ui or maas-ops-ui: ${mfe}`); + } + } + } + } + + return mfeInfos; +} + +// Run the main function +main(); diff --git a/tools/mrc-usage-report/src/parser/componentParser.ts b/tools/mrc-usage-report/src/parser/componentParser.ts new file mode 100644 index 000000000..642100731 --- /dev/null +++ b/tools/mrc-usage-report/src/parser/componentParser.ts @@ -0,0 +1,247 @@ +/* eslint-disable no-console */ +/* eslint-disable sonarjs/cognitive-complexity */ +import * as parser from "@babel/parser"; +import traverse from "@babel/traverse"; +import * as t from "@babel/types"; +import fs from "fs"; +import path from "path"; +import { ComponentProp } from "../types"; +import { MrcSourceType } from "../types"; +import { transformFilePath } from "../utils"; + +// Represents a single found instance of a component +export interface FoundComponentInstance { + componentName: string; + filePath: string; + mfe: string; + lineNumber: number; + props: ComponentProp[]; +} + +/** + * Parses files for MRC component usage + */ +export class ComponentParser { + private mrcComponentNames: Set; + private mrcFileNames: Set; + private mrcPath: string; + private mrcSourceType: MrcSourceType; + private exportNameToFileName: Map; + private fileNameToExportName: Map; + + constructor(mrcPath: string, mrcSourceType: MrcSourceType = "local") { + this.mrcPath = mrcPath; + this.mrcSourceType = mrcSourceType; + this.mrcComponentNames = new Set(); + this.mrcFileNames = new Set(); + this.exportNameToFileName = new Map(); + this.fileNameToExportName = new Map(); + } + + /** + * Initializes the parser by loading all MRC component names + * @param componentInfo Array of MRC component information with exported names + */ + async initialize(componentInfo: { name: string; path: string }[]): Promise { + for (const component of componentInfo) { + // Get both the exported name and the file name + const exportedName = component.name; + const fileName = path.basename(component.path); + const fileNameWithoutExt = path.parse(fileName).name; + + // Add both to our sets + this.mrcComponentNames.add(exportedName); + this.mrcFileNames.add(fileNameWithoutExt); + + // Create mappings between them + this.exportNameToFileName.set(exportedName, fileNameWithoutExt); + this.fileNameToExportName.set(fileNameWithoutExt, exportedName); + } + + console.log(`Loaded ${this.mrcComponentNames.size} MRC component names and ${this.mrcFileNames.size} file names`); + + // Log some examples of the mappings for debugging + let count = 0; + for (const [exportName, fileName] of this.exportNameToFileName.entries()) { + if (exportName !== fileName) { + console.log(`Export mapping: ${exportName} -> ${fileName}`); + count++; + if (count >= 5) break; // Just log a few examples + } + } + } + + /** + * Parses a file for MRC component usage + * @param filePath Path to the file to parse + * @param mfe The MFE the file belongs to + * @returns Array of component usages found in the file + */ + async parseFile(filePath: string, mfe: string): Promise { + try { + const content = fs.readFileSync(filePath, "utf-8"); + const usages: FoundComponentInstance[] = []; + + // Parse the file + const isJsx = filePath.endsWith(".tsx") || filePath.endsWith(".jsx"); + const ast = parser.parse(content, { + sourceType: "module", + plugins: ["typescript", "decorators-legacy", ...(isJsx ? ["jsx" as const] : [])] + }); + + // Track imported MRC components + const importedComponents = new Map(); + // Track imported components that are considered used just by being imported + const importedComponentUsages = new Map(); + + // Traverse the AST + traverse(ast, { + // Find imports from @SolaceDev/maas-react-components + ImportDeclaration: (path) => { + const source = path.node.source.value; + if (source === "@SolaceDev/maas-react-components") { + // Get the line number of the import declaration + const lineNumber = path.node.loc?.start.line || 0; + + path.node.specifiers.forEach((specifier) => { + if (t.isImportSpecifier(specifier) && t.isIdentifier(specifier.imported)) { + const importedName = specifier.imported.name; + const localName = specifier.local.name; + + // Check if this is an MRC component by exported name or file name + let componentName = importedName; + let isComponent = false; + + // First check if it's a direct match with an exported name + if (this.mrcComponentNames.has(importedName)) { + isComponent = true; + } + // Then check if it matches a file name and get the corresponding export name + else if (this.mrcFileNames.has(importedName) && this.fileNameToExportName.has(importedName)) { + componentName = this.fileNameToExportName.get(importedName)!; + isComponent = true; + console.log(`Found component by file name: ${importedName} -> ${componentName}`); + } + + if (isComponent) { + importedComponents.set(localName, componentName); + + // Consider the component as used just by being imported + // This handles cases where components are imported but not used as JSX elements + importedComponentUsages.set(componentName, { + componentName, + filePath: transformFilePath(filePath).url, + mfe, + lineNumber, + props: [] + }); + } + } + }); + } + }, + + // Find JSX elements that use MRC components + JSXOpeningElement: (path) => { + const elementName = path.node.name; + let componentName: string | null = null; + + // Handle different types of JSX element names + if (t.isJSXIdentifier(elementName)) { + const localName = elementName.name; + componentName = importedComponents.get(localName) || null; + } + + // If this is an MRC component, extract usage information + if (componentName) { + const props: ComponentProp[] = []; + + // Extract props + path.node.attributes.forEach((attr) => { + if (t.isJSXAttribute(attr) && t.isJSXIdentifier(attr.name)) { + const propName = attr.name.name; + let propType = "unknown"; + let propValue = ""; // value is always a string now + + if (attr.value) { + if (t.isStringLiteral(attr.value)) { + propType = "string"; + propValue = attr.value.value; + } else if (t.isJSXExpressionContainer(attr.value) && !t.isJSXEmptyExpression(attr.value.expression)) { + const expression = attr.value.expression; + if (t.isNumericLiteral(expression)) { + propType = "number"; + propValue = String(expression.value); + } else if (t.isBooleanLiteral(expression)) { + propType = "boolean"; + propValue = String(expression.value); + } else if (t.isNullLiteral(expression)) { + propType = "null"; + propValue = "null"; + } else if (t.isIdentifier(expression)) { + propType = "variable"; + propValue = expression.name; + } else { + if (t.isObjectExpression(expression)) { + propType = "object"; + } else if (t.isArrayExpression(expression)) { + propType = "array"; + } else if (t.isArrowFunctionExpression(expression) || t.isFunctionExpression(expression)) { + propType = "function"; + } else if (t.isJSXElement(expression) || t.isJSXFragment(expression)) { + propType = "jsx"; + } else { + propType = "expression"; + } + propValue = content.substring(expression.start!, expression.end!); + } + } + } else { + // Boolean prop without value + propType = "boolean"; + propValue = "true"; + } + + props.push({ + name: propName, + type: propType, + value: propValue + }); + } else if (t.isJSXSpreadAttribute(attr)) { + const argument = attr.argument; + props.push({ + name: "...", + type: "spread", + value: content.substring(argument.start!, argument.end!) + }); + } + }); + + // Get line number + const lineNumber = path.node.loc?.start.line || 0; + + // Add the usage + usages.push({ + componentName, + filePath: transformFilePath(filePath).url, + mfe, + lineNumber, + props + }); + + // Remove from importedComponentUsages since we've found an actual JSX usage + importedComponentUsages.delete(componentName); + } + } + }); + + // Add all imported components that weren't used as JSX elements + usages.push(...importedComponentUsages.values()); + + return usages; + } catch (error) { + console.error(`Error parsing file ${filePath}:`, error); + return []; + } + } +} diff --git a/tools/mrc-usage-report/src/reporter/htmlReporter.ts b/tools/mrc-usage-report/src/reporter/htmlReporter.ts new file mode 100644 index 000000000..7a01edafd --- /dev/null +++ b/tools/mrc-usage-report/src/reporter/htmlReporter.ts @@ -0,0 +1,660 @@ +import fs from "fs"; +import path from "path"; +import { ReportData } from "../types"; +import { transformFilePath } from "../utils"; + +/** + * Generates an HTML report from the component usage data + */ +export class HtmlReporter { + /** + * Generates an HTML report from the component usage data + * @param reportData The report data + * @param outputPath The path to write the report to + */ + async generateReport(reportData: ReportData, outputPath: string): Promise { + const html = this.generateHtml(reportData); + + // Create the output directory if it doesn't exist + const outputDir = path.dirname(outputPath); + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + // Write the HTML to the output file + fs.writeFileSync(outputPath, html); + + // console.log(`HTML report generated at ${outputPath}`); + } + + /** + * Generates the HTML for the report + * @param reportData The report data + * @returns The HTML string + */ + private generateHtml(reportData: ReportData): string { + const { componentStats, overallStats, generatedAt, config } = reportData; + + // Format date + const formattedDate = new Date(generatedAt).toLocaleString(); + + // Generate HTML + return ` + + + + + + MRC Component Usage Report + + + + +
+
+

MRC Component Usage Report

+

Generated on ${formattedDate}

+ +
+ +
+
+

Total Component Usages

+

${overallStats.totalUsages}

+
+
+

MFEs Analyzed

+

${config.mfes.length}

+

${config.mfes.join(", ")}

+
+
+

Unique Components Used

+

${componentStats.length}

+
+
+

Unused Components

+

${reportData.unusedComponents.length}

+

Components not used in any MFE

+
+
+ +

Overview

+ +
+
Components
+
MFEs
+
Unused Components
+
+ +
+

Most Used Components

+
+ +
+ + + + + + +
+ +

Component Details

+ ${componentStats + .map( + (stats) => ` +
+
+
+ ${stats.componentName} + ${stats.totalUsages} usages +
+ +
+
+

Usage by MFE

+ + + + + + + + + + ${Object.entries(stats.usagesByMfe) + .map( + ([mfe, count]) => ` + + + + + + ` + ) + .join("")} + +
MFERepositoryUsages
${mfe}${reportData.config.mfeInfos.find((info) => info.name === mfe)?.repository || "N/A"}${count}
+ +

Common Props

+ + + + + + + + + ${stats.commonProps + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameOccurrences
${prop.name}${prop.count}
+ +

Customization

+

+ Styled Components: ${stats.customization.styledComponentCount}
+ Custom Styles: ${stats.customization.customStylesCount} +

+ + ${ + Object.keys(stats.customization.overriddenPropertiesCounts).length > 0 + ? ` +
Overridden Properties
+ + + + + + + + + ${Object.entries(stats.customization.overriddenPropertiesCounts) + .map( + ([prop, count]) => ` + + + + + ` + ) + .join("")} + +
PropertyOccurrences
${prop}${count}
+ ` + : "" + } + +

Component Usage Instances (${stats.instances.length})

+ ${stats.instances + .map((instance) => { + return ` +
+

+ URL: ${instance.filePath} +

+ + + + + + + + + ${instance.props + .map( + (prop) => ` + + + + + ` + ) + .join("")} + +
Prop NameValue
${prop.name}
${prop.value}
+
+ `; + }) + .join("")} +
+
+ ` + ) + .join("")} +
+ +
+

Component Usage by MFE

+
+ + + + + + + + + + + + ${Object.entries(overallStats.mfeUsages) + .map( + ([mfe, count]) => ` + + + + + + + ` + ) + .join("")} + +
MFERepositoryComponent UsagesMRC Version
${mfe}${reportData.config.mfeInfos.find((info) => info.name === mfe)?.repository || "N/A"}${count}${reportData.mrcVersions[mfe] || "N/A"}
+
+ + +
+

Unused Components (${reportData.unusedComponents.length})

+

These components are not used in any of the analyzed MFEs. Consider reviewing them for potential removal or promotion.

+ + + + + + + + + + ${reportData.unusedComponents + .map( + (comp) => ` + + + + + ` + ) + .join("")} + +
Component NamePath
${comp.name}${ + transformFilePath(comp.path).url + }
+ +
+ + +
+ + + + + `; + } +} diff --git a/tools/mrc-usage-report/src/scanner/fileScanner.ts b/tools/mrc-usage-report/src/scanner/fileScanner.ts new file mode 100644 index 000000000..15ca5e076 --- /dev/null +++ b/tools/mrc-usage-report/src/scanner/fileScanner.ts @@ -0,0 +1,479 @@ +import path from "path"; +import fs from "fs"; +import { promisify } from "util"; +import { exec } from "child_process"; +import axios from "axios"; +import { MfeInfo, MrcSourceType } from "../types"; + +const execPromise = promisify(exec); + +// Regular expression to match export statements like: +// export { default as ComponentName } from "./path/to/Component"; +const EXPORT_REGEX = /export\s*{\s*default\s+as\s+([A-Za-z0-9_]+)\s*}\s*from\s*["'](.+)["'];?/g; + +/** + * Scans for files in the specified MFEs + */ +export class FileScanner { + private basePath: string; + private mfeInfos: MfeInfo[]; + private mrcSourceType: MrcSourceType; + private mrcGithubUrl?: string; + private mrcGithubBranch: string; + private tempDir?: string; + + constructor( + basePath: string, + mfeInfos: MfeInfo[], + mrcSourceType: MrcSourceType = "local", + mrcGithubUrl?: string, + mrcGithubBranch: string = "main" + ) { + this.basePath = basePath; + this.mfeInfos = mfeInfos; + this.mrcSourceType = mrcSourceType; + this.mrcGithubUrl = mrcGithubUrl; + this.mrcGithubBranch = mrcGithubBranch; + } + + /** + * Scans for all TypeScript and JavaScript files in the specified MFEs + * @returns Array of file paths + */ + async scanForFiles(): Promise { + const allFiles: string[] = []; + + for (const mfeInfo of this.mfeInfos) { + const mfePath = mfeInfo.path; + const srcPath = path.join(mfePath, "src"); + + // Check if the MFE directory exists + if (!fs.existsSync(srcPath)) { + console.warn(`MFE directory not found: ${mfePath}`); + continue; + } + + try { + // Use find command to locate all TypeScript and JavaScript files + const { stdout } = await execPromise( + `find ${srcPath} -type f \\( -name "*.ts" -o -name "*.tsx" -o -name "*.js" -o -name "*.jsx" \\) -not -path "*/node_modules/*" -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + const files = stdout.trim().split("\n").filter(Boolean); + allFiles.push(...files); + } catch (error) { + console.error(`Error scanning files in ${mfePath}:`, error); + } + } + + return allFiles; + } + + /** + * Extracts owner and repo from GitHub URL + * @param githubUrl GitHub repository URL + * @returns Object containing owner and repo + */ + private parseGithubUrl(githubUrl: string): { owner: string; repo: string } { + // Handle URLs like https://github.com/owner/repo + const urlMatch = githubUrl.match(/github\.com\/([^\/]+)\/([^\/]+)/); + if (urlMatch) { + return { + owner: urlMatch[1], + repo: urlMatch[2].replace(/\.git$/, "") // Remove .git if present + }; + } + throw new Error(`Invalid GitHub URL: ${githubUrl}`); + } + + /** + * Gets the GitHub authentication token from environment variable + * @returns GitHub authentication token or undefined if not available + */ + private getGithubToken(): string | undefined { + return process.env.GITHUB_TOKEN; + } + + /** + * Fetches a file from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path File path within the repository + * @param branch Branch name (default: main) + * @returns File content as string + */ + private async fetchFileFromGithub(owner: string, repo: string, path: string, branch?: string): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://raw.githubusercontent.com/${owner}/${repo}/${branch}/${path}`; + console.log(`Fetching file from GitHub: ${url}`); + + const headers: Record = {}; + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + return response.data; + } catch (error) { + console.error(`Error fetching file from GitHub:`, error); + throw new Error(`Failed to fetch file from GitHub: ${path}`); + } + } + + /** + * Fetches directory contents from GitHub API + * @param owner Repository owner + * @param repo Repository name + * @param path Directory path within the repository + * @param branch Branch name (default: main) + * @returns Array of file paths + */ + private async fetchDirectoryFromGithub( + owner: string, + repo: string, + path: string, + branch?: string + ): Promise { + branch = branch || this.mrcGithubBranch; + try { + const url = `https://api.github.com/repos/${owner}/${repo}/contents/${path}?ref=${branch}`; + console.log(`Fetching directory from GitHub API: ${url}`); + + const headers: Record = { + Accept: "application/vnd.github.v3+json" + }; + + const token = this.getGithubToken(); + if (token) { + headers.Authorization = `token ${token}`; + } + + const response = await axios.get(url, { headers }); + + // Process the response to extract file paths + const files: string[] = []; + const processItems = async (items: any[]) => { + for (const item of items) { + if (item.type === "file") { + files.push(item.path); + } else if (item.type === "dir") { + // Recursively fetch subdirectory contents + const subdirUrl = `https://api.github.com/repos/${owner}/${repo}/contents/${item.path}?ref=${branch}`; + const subdirResponse = await axios.get(subdirUrl, { headers }); + await processItems(subdirResponse.data); + } + } + }; + + await processItems(response.data); + return files; + } catch (error) { + console.error(`Error fetching directory from GitHub:`, error); + throw new Error(`Failed to fetch directory from GitHub: ${path}`); + } + } + + /** + * Prepares the MRC path based on the source type + * @param mrcPath Path to the MRC repository (used for local source type) + * @returns The path to the MRC repository or null if using GitHub API + */ + async prepareMrcPath(mrcPath: string): Promise { + // If source type is local, use the provided path + if (this.mrcSourceType === "local") { + return mrcPath; + } + + // If source type is github, we'll use the GitHub API directly + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + console.log(`Using GitHub API for ${this.mrcGithubUrl}`); + return null; // Return null to indicate we're using GitHub API + } + + throw new Error("Invalid MRC source configuration"); + } + + /** + * Scans for all MRC components in the MRC repository + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component paths + */ + async scanForMrcComponents(mrcPath: string): Promise { + // If using GitHub API, we don't need the local path + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Scanning for MRC components in GitHub repository: ${owner}/${repo}`); + + // Fetch all files in the components directory + const files = await this.fetchDirectoryFromGithub(owner, repo, "src/components"); + + // Filter out unwanted components + const filteredFiles = files.filter((file) => { + // Only include TypeScript/TSX files + if (!file.endsWith(".ts") && !file.endsWith(".tsx")) return false; + // Exclude test and definition files + if (file.endsWith(".d.ts") || file.includes(".test.") || file.includes(".spec.")) return false; + + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + + // Check if the file is in the table/components subdirectory + const isInTableComponents = file.includes("/table/components/"); + + // Exclude components with "Props", "Utils", "utils", "Icon" in the name, + // React hooks (starting with "use"), and files in table/components subdirectory + const shouldExclude = + componentName.includes("Props") || + componentName.includes("Utils") || + componentName.toLowerCase().includes("utils") || + componentName.includes("Icon") || + componentName.startsWith("use") || + isInTableComponents; + + return !shouldExclude; + }); + + console.log(`Found ${filteredFiles.length} component files in GitHub repository`); + return filteredFiles; + } catch (error) { + console.error(`Error scanning MRC components from GitHub:`, error); + return []; + } + } + + // If using local path + // Prepare the MRC path based on the source type + const actualMrcPath = await this.prepareMrcPath(mrcPath); + + if (actualMrcPath) { + const componentsPath = path.join(actualMrcPath, "src", "components"); + + // Check if the components directory exists + if (!fs.existsSync(componentsPath)) { + throw new Error(`MRC components directory not found: ${componentsPath}`); + } + + try { + // Use find command to locate all component files + const { stdout } = await execPromise( + `find ${componentsPath} -type f \\( -name "*.ts" -o -name "*.tsx" \\) -not -name "*.d.ts" -not -name "*.test.*" -not -name "*.spec.*"` + ); + + // Filter out unwanted components + const allFiles = stdout.trim().split("\n").filter(Boolean); + const filteredFiles = allFiles.filter((file) => { + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + + // Check if the file is in the table/components subdirectory + const isInTableComponents = file.includes("/table/components/"); + + // Exclude components with "Props", "Utils", "utils", "Icon" in the name, + // React hooks (starting with "use"), and files in table/components subdirectory + const shouldExclude = + componentName.includes("Props") || + componentName.includes("Utils") || + componentName.toLowerCase().includes("utils") || + componentName.includes("Icon") || + componentName.startsWith("use") || + isInTableComponents; + + return !shouldExclude; + }); + + console.log( + `Filtered out ${ + allFiles.length - filteredFiles.length + } components (Props, Utils/utils, Icon, hooks, table/components)` + ); + + return filteredFiles; + } catch (error) { + console.error(`Error scanning MRC components:`, error); + return []; + } + } + + throw new Error("Invalid MRC source configuration"); + } + + /** + * Gets information about MRC components + * @param componentFiles Array of component file paths + * @param mrcPath Path to the MRC repository + * @returns Array of MRC component information + */ + async getMrcComponentInfo(componentFiles: string[], mrcPath: string): Promise<{ name: string; path: string }[]> { + // Get export mappings from index.tsx + const exportMappings = await this.getExportMappings(mrcPath); + + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + // For GitHub, we need to match based on the relative path within the repository + return componentFiles.map((file) => { + // Try to find the export name for this file + for (const [exportName, relativePath] of exportMappings) { + // The file path from GitHub API will be something like "src/components/Button/Button.tsx" + // The relativePath from index.tsx will be something like "./components/Button/Button" + // We need to normalize them for comparison + const normalizedFilePath = file.replace(/\.tsx?$/, ""); // Remove extension + const normalizedRelativePath = relativePath.replace(/^\.\//, ""); // Remove leading ./ + + if (normalizedFilePath.endsWith(normalizedRelativePath)) { + return { + name: exportName, + path: file + }; + } + } + + // Fallback to using the file name if no export mapping is found + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + return { + name: componentName, + path: file + }; + }); + } else { + // For local path, use the original approach + // Create a mapping from file path to exported component name + const filePathToExportName = new Map(); + + for (const [exportName, relativePath] of exportMappings) { + // Convert relative path to absolute path + const absolutePath = path.resolve(path.join(mrcPath, "src"), relativePath); + filePathToExportName.set(absolutePath, exportName); + } + + return componentFiles.map((file) => { + // Check if we have an export mapping for this file + const resolvedPath = path.resolve(file); + + // Try to find the export name for this file + for (const [filePath, exportName] of filePathToExportName.entries()) { + // Need to handle both with and without file extension + const filePathWithoutExt = filePath.replace(/\.[^/.]+$/, ""); + const resolvedPathWithoutExt = resolvedPath.replace(/\.[^/.]+$/, ""); + + if (resolvedPath === filePath || resolvedPathWithoutExt === filePathWithoutExt) { + return { + name: exportName, + path: file + }; + } + } + + // Fallback to using the file name if no export mapping is found + const fileName = path.basename(file); + const componentName = path.parse(fileName).name; + return { + name: componentName, + path: file + }; + }); + } + } + + /** + * Extracts export mappings from the MRC index.tsx file + * @param mrcPath Path to the MRC repository + * @returns Map of export name to relative file path + */ + private async getExportMappings(mrcPath: string): Promise> { + const mappings = new Map(); + let content: string; + + // If using GitHub API + if (this.mrcSourceType === "github" && this.mrcGithubUrl) { + try { + const { owner, repo } = this.parseGithubUrl(this.mrcGithubUrl); + console.log(`Fetching index.tsx from GitHub repository: ${owner}/${repo}`); + content = await this.fetchFileFromGithub(owner, repo, "src/index.tsx"); + console.log(`Successfully fetched index.tsx from GitHub`); + console.log(`First 500 characters of content: ${content.substring(0, 500)}...`); + } catch (error) { + console.error(`Error fetching index.tsx from GitHub:`, error); + return mappings; + } + } else { + // If using local path + const indexPath = path.join(mrcPath, "src", "index.tsx"); + if (!fs.existsSync(indexPath)) { + console.warn(`MRC index.tsx not found at ${indexPath}`); + return mappings; + } + + try { + content = fs.readFileSync(indexPath, "utf-8"); + console.log(`Reading MRC index.tsx from ${indexPath}`); + console.log(`First 500 characters of content: ${content.substring(0, 500)}...`); + } catch (error) { + console.error(`Error reading index.tsx:`, error); + return mappings; + } + } + + try { + let match; + let matchCount = 0; + let excludedCount = 0; + + while ((match = EXPORT_REGEX.exec(content)) !== null) { + const exportName = match[1]; + const relativePath = match[2]; + + // Check if the relative path is in the table/components subdirectory + const isInTableComponents = relativePath.includes("/table/components/"); + + // Exclude components with "Props", "Utils", "utils", "Icon" in the name, + // React hooks (starting with "use"), and components from table/components subdirectory + const shouldExclude = + exportName.includes("Props") || + exportName.includes("Utils") || + exportName.toLowerCase().includes("utils") || + exportName.includes("Icon") || + exportName.startsWith("use") || + isInTableComponents; + + if (shouldExclude) { + excludedCount++; + continue; + } + + mappings.set(exportName, relativePath); + matchCount++; + + // Log the first few matches for debugging + if (matchCount <= 5) { + console.log(`Export mapping found: ${exportName} from ${relativePath}`); + } + } + + console.log( + `Found ${mappings.size} export mappings in index.tsx (excluded ${excludedCount} Props/Utils/Icon/hooks)` + ); + + // Log a few examples of mappings where the export name differs from the file name + let diffCount = 0; + for (const [exportName, relativePath] of mappings.entries()) { + const fileName = path.basename(relativePath); + const fileNameWithoutExt = path.parse(fileName).name; + + if (exportName !== fileNameWithoutExt) { + console.log(`Different naming: Export ${exportName} -> File ${fileNameWithoutExt}`); + diffCount++; + if (diffCount >= 5) break; + } + } + + return mappings; + } catch (error) { + console.error(`Error parsing MRC index.tsx:`, error); + return mappings; + } + } +} diff --git a/tools/mrc-usage-report/src/types.ts b/tools/mrc-usage-report/src/types.ts new file mode 100644 index 000000000..c1daa54fc --- /dev/null +++ b/tools/mrc-usage-report/src/types.ts @@ -0,0 +1,131 @@ +/** + * Types for MRC Usage Report + */ + +// Source type for MRC components +export type MrcSourceType = "local" | "github"; + +// Configuration for the analysis +export interface AnalysisConfig { + // MFEs to analyze (excluding api-products as requested) + mfes: string[]; + // Path to the MRC repository + mrcPath: string; + // Output directory for the report + outputDir: string; + // Output format (html, json, yaml, csv, etc.) + outputFormat: "html" | "json" | "yaml" | "csv"; + // Source type for MRC components + mrcSourceType: MrcSourceType; + // GitHub repository URL for MRC components + mrcGithubUrl?: string; + // GitHub branch name for MRC components + mrcGithubBranch?: string; + mfeInfos: MfeInfo[]; +} + +export interface MfeInfo { + name: string; + path: string; + repository: string; +} + +// Represents a component from the MRC library +export interface MrcComponent { + name: string; + path: string; + // Additional metadata about the component + metadata?: { + description?: string; + category?: string; + }; +} + +// Represents a prop passed to a component +export interface ComponentProp { + name: string; + value: string; // The value of the prop + type?: string; // This can remain as is +} + +// Represents a single instance of a component being used +export interface ComponentInstance { + filePath: string; + line: number; + props: ComponentProp[]; +} + +// Represents the aggregated usage data for a component +export interface ComponentUsage { + component: string; + count: number; + instances: ComponentInstance[]; +} + +// Aggregated data for a component +export interface ComponentStats { + componentName: string; + // Total number of usages across all MFEs + totalUsages: number; + // Usages by MFE + usagesByMfe: Record; + // Most common props + commonProps: { + name: string; + count: number; + }[]; + // Files where the component is used + files: string[]; + // Customization stats + customization: { + styledComponentCount: number; + customStylesCount: number; + overriddenPropertiesCounts: Record; + }; + // All instances of the component + instances: ComponentInstance[]; +} + +// The final report data +export interface ReportData { + // When the report was generated + generatedAt: string; + // Configuration used for the analysis + config: AnalysisConfig; + // MRC version information by MFE + mrcVersions: Record; + // Stats for each component + componentStats: ComponentStats[]; + // List of unused components + unusedComponents: { + // Component name + name: string; + // Component path + path: string; + }[]; + // Unused components by MFE + unusedComponentsByMfe: Record; + // Overall stats + overallStats: { + // Total number of component usages + totalUsages: number; + // Most used components + mostUsedComponents: { + name: string; + count: number; + }[]; + // Most used props + mostUsedProps: { + name: string; + count: number; + }[]; + // MFEs with the most component usages + mfeUsages: Record; + // Total number of unused components + totalUnusedComponents: number; + }; + // Raw data for debugging or further analysis + rawData?: { + componentUsages: ComponentUsage[]; + }; +} diff --git a/tools/mrc-usage-report/src/utils.ts b/tools/mrc-usage-report/src/utils.ts new file mode 100644 index 000000000..f861bde80 --- /dev/null +++ b/tools/mrc-usage-report/src/utils.ts @@ -0,0 +1,46 @@ +/** + * Transforms a local file path to a GitHub URL. + * @param filePath - The local file path. + * @returns An object with the original path and the transformed GitHub URL. + */ +export const transformFilePath = (filePath: string): { url: string } => { + const baseUrl = "https://github.com/SolaceDev/"; + let repo = ""; + let branch = ""; + let relativePath = ""; + + // If it's already a GitHub URL, just return it. + if (filePath.startsWith("https://github.com/")) { + return { url: filePath }; + } + + const parts = filePath.replace(/\\/g, "/").split("/"); + + const maasUiIndex = parts.indexOf("maas-ui"); + const maasOpsUiIndex = parts.indexOf("maas-ops-ui"); + const brokerManagerIndex = parts.indexOf("broker-manager"); + + if (maasUiIndex !== -1) { + repo = "maas-ui"; + branch = "develop"; + // we need to get the path relative to the repo root + relativePath = parts.slice(maasUiIndex + 1).join("/"); + } else if (maasOpsUiIndex !== -1) { + repo = "maas-ops-ui"; + branch = "develop"; + relativePath = parts.slice(maasOpsUiIndex + 1).join("/"); + } else if (brokerManagerIndex !== -1) { + repo = "broker-manager"; + branch = "main"; + relativePath = parts.slice(brokerManagerIndex + 1).join("/"); + } else { + // Log a warning and return the original path + // console.warn(`[transformFilePath] Could not determine repository for path: ${filePath}. Returning original path.`); + return { url: filePath }; + } + + const url = `${baseUrl}${repo}/blob/${branch}/${relativePath}`; + return { + url: url + }; +}; diff --git a/tools/mrc-usage-report/tsconfig.json b/tools/mrc-usage-report/tsconfig.json new file mode 100644 index 000000000..6fdf8480b --- /dev/null +++ b/tools/mrc-usage-report/tsconfig.json @@ -0,0 +1,15 @@ +{ + "compilerOptions": { + "target": "ES2020", + "module": "commonjs", + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "**/*.spec.ts"] +}